google-apis-dns_v1beta2 0.47.0 → 0.49.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 823e1755525a03cacc6b8595d2754b452c48305601c879ded6ce1969100c57fa
|
4
|
+
data.tar.gz: 70a81e449b613821d5efc498ffae50f899357e9b84e7aeef9f8676a7483fcaa8
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 5e37222a5a75e0676b71e551ac221b964f9910641bb3bff9e38d95e4aee23645046657a860db8c0a412b42311e4e1e2d78ef5bdfe288d4ea16001f33c0367a98
|
7
|
+
data.tar.gz: 56b4990b6b1cc0889f8f430957f6464b3e854ba9f67660b8e40b06e03ee7cce7cda8c8c4caa4725ce3107959af64460d44eb72f858385b4abace4846c27d3199
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,15 @@
|
|
1
1
|
# Release history for google-apis-dns_v1beta2
|
2
2
|
|
3
|
+
### v0.49.0 (2025-01-12)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20250102
|
6
|
+
* Regenerated using generator version 0.16.0
|
7
|
+
|
8
|
+
### v0.48.0 (2024-12-02)
|
9
|
+
|
10
|
+
* Regenerated from discovery document revision 20240719
|
11
|
+
* Regenerated using generator version 0.15.1
|
12
|
+
|
3
13
|
### v0.47.0 (2024-06-16)
|
4
14
|
|
5
15
|
* Regenerated from discovery document revision 20240531
|
@@ -1579,6 +1579,11 @@ module Google
|
|
1579
1579
|
# @return [String]
|
1580
1580
|
attr_accessor :description
|
1581
1581
|
|
1582
|
+
# DNS64 policies
|
1583
|
+
# Corresponds to the JSON property `dns64Config`
|
1584
|
+
# @return [Google::Apis::DnsV1beta2::PolicyDns64Config]
|
1585
|
+
attr_accessor :dns64_config
|
1586
|
+
|
1582
1587
|
# Allows networks bound to this policy to receive DNS queries sent by VMs or
|
1583
1588
|
# applications over VPN connections. When enabled, a virtual IP address is
|
1584
1589
|
# allocated from each of the subnetworks that are bound to this policy.
|
@@ -1622,6 +1627,7 @@ module Google
|
|
1622
1627
|
def update!(**args)
|
1623
1628
|
@alternative_name_server_config = args[:alternative_name_server_config] if args.key?(:alternative_name_server_config)
|
1624
1629
|
@description = args[:description] if args.key?(:description)
|
1630
|
+
@dns64_config = args[:dns64_config] if args.key?(:dns64_config)
|
1625
1631
|
@enable_inbound_forwarding = args[:enable_inbound_forwarding] if args.key?(:enable_inbound_forwarding)
|
1626
1632
|
@enable_logging = args[:enable_logging] if args.key?(:enable_logging)
|
1627
1633
|
@id = args[:id] if args.key?(:id)
|
@@ -1700,6 +1706,57 @@ module Google
|
|
1700
1706
|
end
|
1701
1707
|
end
|
1702
1708
|
|
1709
|
+
# DNS64 policies
|
1710
|
+
class PolicyDns64Config
|
1711
|
+
include Google::Apis::Core::Hashable
|
1712
|
+
|
1713
|
+
#
|
1714
|
+
# Corresponds to the JSON property `kind`
|
1715
|
+
# @return [String]
|
1716
|
+
attr_accessor :kind
|
1717
|
+
|
1718
|
+
# The scope to which DNS64 config will be applied to.
|
1719
|
+
# Corresponds to the JSON property `scope`
|
1720
|
+
# @return [Google::Apis::DnsV1beta2::PolicyDns64ConfigScope]
|
1721
|
+
attr_accessor :scope
|
1722
|
+
|
1723
|
+
def initialize(**args)
|
1724
|
+
update!(**args)
|
1725
|
+
end
|
1726
|
+
|
1727
|
+
# Update properties of this object
|
1728
|
+
def update!(**args)
|
1729
|
+
@kind = args[:kind] if args.key?(:kind)
|
1730
|
+
@scope = args[:scope] if args.key?(:scope)
|
1731
|
+
end
|
1732
|
+
end
|
1733
|
+
|
1734
|
+
#
|
1735
|
+
class PolicyDns64ConfigScope
|
1736
|
+
include Google::Apis::Core::Hashable
|
1737
|
+
|
1738
|
+
# Controls whether DNS64 is enabled globally at the network level.
|
1739
|
+
# Corresponds to the JSON property `allQueries`
|
1740
|
+
# @return [Boolean]
|
1741
|
+
attr_accessor :all_queries
|
1742
|
+
alias_method :all_queries?, :all_queries
|
1743
|
+
|
1744
|
+
#
|
1745
|
+
# Corresponds to the JSON property `kind`
|
1746
|
+
# @return [String]
|
1747
|
+
attr_accessor :kind
|
1748
|
+
|
1749
|
+
def initialize(**args)
|
1750
|
+
update!(**args)
|
1751
|
+
end
|
1752
|
+
|
1753
|
+
# Update properties of this object
|
1754
|
+
def update!(**args)
|
1755
|
+
@all_queries = args[:all_queries] if args.key?(:all_queries)
|
1756
|
+
@kind = args[:kind] if args.key?(:kind)
|
1757
|
+
end
|
1758
|
+
end
|
1759
|
+
|
1703
1760
|
#
|
1704
1761
|
class PolicyNetwork
|
1705
1762
|
include Google::Apis::Core::Hashable
|
@@ -1792,6 +1849,11 @@ module Google
|
|
1792
1849
|
# @return [Fixnum]
|
1793
1850
|
attr_accessor :gke_clusters_per_response_policy
|
1794
1851
|
|
1852
|
+
#
|
1853
|
+
# Corresponds to the JSON property `internetHealthChecksPerManagedZone`
|
1854
|
+
# @return [Fixnum]
|
1855
|
+
attr_accessor :internet_health_checks_per_managed_zone
|
1856
|
+
|
1795
1857
|
# Maximum allowed number of items per routing policy.
|
1796
1858
|
# Corresponds to the JSON property `itemsPerRoutingPolicy`
|
1797
1859
|
# @return [Fixnum]
|
@@ -1910,6 +1972,7 @@ module Google
|
|
1910
1972
|
@gke_clusters_per_managed_zone = args[:gke_clusters_per_managed_zone] if args.key?(:gke_clusters_per_managed_zone)
|
1911
1973
|
@gke_clusters_per_policy = args[:gke_clusters_per_policy] if args.key?(:gke_clusters_per_policy)
|
1912
1974
|
@gke_clusters_per_response_policy = args[:gke_clusters_per_response_policy] if args.key?(:gke_clusters_per_response_policy)
|
1975
|
+
@internet_health_checks_per_managed_zone = args[:internet_health_checks_per_managed_zone] if args.key?(:internet_health_checks_per_managed_zone)
|
1913
1976
|
@items_per_routing_policy = args[:items_per_routing_policy] if args.key?(:items_per_routing_policy)
|
1914
1977
|
@kind = args[:kind] if args.key?(:kind)
|
1915
1978
|
@managed_zones = args[:managed_zones] if args.key?(:managed_zones)
|
@@ -1952,6 +2015,13 @@ module Google
|
|
1952
2015
|
# @return [Google::Apis::DnsV1beta2::RrSetRoutingPolicyGeoPolicy]
|
1953
2016
|
attr_accessor :geo_policy
|
1954
2017
|
|
2018
|
+
# The selfLink attribute of the HealthCheck resource to use for this
|
2019
|
+
# RRSetRoutingPolicy. https://cloud.google.com/compute/docs/reference/rest/v1/
|
2020
|
+
# healthChecks
|
2021
|
+
# Corresponds to the JSON property `healthCheck`
|
2022
|
+
# @return [String]
|
2023
|
+
attr_accessor :health_check
|
2024
|
+
|
1955
2025
|
#
|
1956
2026
|
# Corresponds to the JSON property `kind`
|
1957
2027
|
# @return [String]
|
@@ -1982,6 +2052,7 @@ module Google
|
|
1982
2052
|
def update!(**args)
|
1983
2053
|
@geo = args[:geo] if args.key?(:geo)
|
1984
2054
|
@geo_policy = args[:geo_policy] if args.key?(:geo_policy)
|
2055
|
+
@health_check = args[:health_check] if args.key?(:health_check)
|
1985
2056
|
@kind = args[:kind] if args.key?(:kind)
|
1986
2057
|
@primary_backup = args[:primary_backup] if args.key?(:primary_backup)
|
1987
2058
|
@wrr = args[:wrr] if args.key?(:wrr)
|
@@ -2083,6 +2154,13 @@ module Google
|
|
2083
2154
|
class RrSetRoutingPolicyHealthCheckTargets
|
2084
2155
|
include Google::Apis::Core::Hashable
|
2085
2156
|
|
2157
|
+
# The Internet IP addresses to be health checked. The format matches the format
|
2158
|
+
# of ResourceRecordSet.rrdata as defined in RFC 1035 (section 5) and RFC 1034 (
|
2159
|
+
# section 3.6.1)
|
2160
|
+
# Corresponds to the JSON property `externalEndpoints`
|
2161
|
+
# @return [Array<String>]
|
2162
|
+
attr_accessor :external_endpoints
|
2163
|
+
|
2086
2164
|
# Configuration for internal load balancers to be health checked.
|
2087
2165
|
# Corresponds to the JSON property `internalLoadBalancers`
|
2088
2166
|
# @return [Array<Google::Apis::DnsV1beta2::RrSetRoutingPolicyLoadBalancerTarget>]
|
@@ -2094,6 +2172,7 @@ module Google
|
|
2094
2172
|
|
2095
2173
|
# Update properties of this object
|
2096
2174
|
def update!(**args)
|
2175
|
+
@external_endpoints = args[:external_endpoints] if args.key?(:external_endpoints)
|
2097
2176
|
@internal_load_balancers = args[:internal_load_balancers] if args.key?(:internal_load_balancers)
|
2098
2177
|
end
|
2099
2178
|
end
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module DnsV1beta2
|
18
18
|
# Version of the google-apis-dns_v1beta2 gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.49.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
|
-
GENERATOR_VERSION = "0.
|
22
|
+
GENERATOR_VERSION = "0.16.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20250102"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -262,6 +262,18 @@ module Google
|
|
262
262
|
include Google::Apis::Core::JsonObjectSupport
|
263
263
|
end
|
264
264
|
|
265
|
+
class PolicyDns64Config
|
266
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
267
|
+
|
268
|
+
include Google::Apis::Core::JsonObjectSupport
|
269
|
+
end
|
270
|
+
|
271
|
+
class PolicyDns64ConfigScope
|
272
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
273
|
+
|
274
|
+
include Google::Apis::Core::JsonObjectSupport
|
275
|
+
end
|
276
|
+
|
265
277
|
class PolicyNetwork
|
266
278
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
267
279
|
|
@@ -790,6 +802,8 @@ module Google
|
|
790
802
|
property :alternative_name_server_config, as: 'alternativeNameServerConfig', class: Google::Apis::DnsV1beta2::PolicyAlternativeNameServerConfig, decorator: Google::Apis::DnsV1beta2::PolicyAlternativeNameServerConfig::Representation
|
791
803
|
|
792
804
|
property :description, as: 'description'
|
805
|
+
property :dns64_config, as: 'dns64Config', class: Google::Apis::DnsV1beta2::PolicyDns64Config, decorator: Google::Apis::DnsV1beta2::PolicyDns64Config::Representation
|
806
|
+
|
793
807
|
property :enable_inbound_forwarding, as: 'enableInboundForwarding'
|
794
808
|
property :enable_logging, as: 'enableLogging'
|
795
809
|
property :id, :numeric_string => true, as: 'id'
|
@@ -819,6 +833,23 @@ module Google
|
|
819
833
|
end
|
820
834
|
end
|
821
835
|
|
836
|
+
class PolicyDns64Config
|
837
|
+
# @private
|
838
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
839
|
+
property :kind, as: 'kind'
|
840
|
+
property :scope, as: 'scope', class: Google::Apis::DnsV1beta2::PolicyDns64ConfigScope, decorator: Google::Apis::DnsV1beta2::PolicyDns64ConfigScope::Representation
|
841
|
+
|
842
|
+
end
|
843
|
+
end
|
844
|
+
|
845
|
+
class PolicyDns64ConfigScope
|
846
|
+
# @private
|
847
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
848
|
+
property :all_queries, as: 'allQueries'
|
849
|
+
property :kind, as: 'kind'
|
850
|
+
end
|
851
|
+
end
|
852
|
+
|
822
853
|
class PolicyNetwork
|
823
854
|
# @private
|
824
855
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -845,6 +876,7 @@ module Google
|
|
845
876
|
property :gke_clusters_per_managed_zone, as: 'gkeClustersPerManagedZone'
|
846
877
|
property :gke_clusters_per_policy, as: 'gkeClustersPerPolicy'
|
847
878
|
property :gke_clusters_per_response_policy, as: 'gkeClustersPerResponsePolicy'
|
879
|
+
property :internet_health_checks_per_managed_zone, as: 'internetHealthChecksPerManagedZone'
|
848
880
|
property :items_per_routing_policy, as: 'itemsPerRoutingPolicy'
|
849
881
|
property :kind, as: 'kind'
|
850
882
|
property :managed_zones, as: 'managedZones'
|
@@ -877,6 +909,7 @@ module Google
|
|
877
909
|
|
878
910
|
property :geo_policy, as: 'geoPolicy', class: Google::Apis::DnsV1beta2::RrSetRoutingPolicyGeoPolicy, decorator: Google::Apis::DnsV1beta2::RrSetRoutingPolicyGeoPolicy::Representation
|
879
911
|
|
912
|
+
property :health_check, as: 'healthCheck'
|
880
913
|
property :kind, as: 'kind'
|
881
914
|
property :primary_backup, as: 'primaryBackup', class: Google::Apis::DnsV1beta2::RrSetRoutingPolicyPrimaryBackupPolicy, decorator: Google::Apis::DnsV1beta2::RrSetRoutingPolicyPrimaryBackupPolicy::Representation
|
882
915
|
|
@@ -912,6 +945,7 @@ module Google
|
|
912
945
|
class RrSetRoutingPolicyHealthCheckTargets
|
913
946
|
# @private
|
914
947
|
class Representation < Google::Apis::Core::JsonRepresentation
|
948
|
+
collection :external_endpoints, as: 'externalEndpoints'
|
915
949
|
collection :internal_load_balancers, as: 'internalLoadBalancers', class: Google::Apis::DnsV1beta2::RrSetRoutingPolicyLoadBalancerTarget, decorator: Google::Apis::DnsV1beta2::RrSetRoutingPolicyLoadBalancerTarget::Representation
|
916
950
|
|
917
951
|
end
|
metadata
CHANGED
@@ -1,14 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-dns_v1beta2
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.49.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Google LLC
|
8
|
-
autorequire:
|
9
8
|
bindir: bin
|
10
9
|
cert_chain: []
|
11
|
-
date:
|
10
|
+
date: 2025-01-12 00:00:00.000000000 Z
|
12
11
|
dependencies:
|
13
12
|
- !ruby/object:Gem::Dependency
|
14
13
|
name: google-apis-core
|
@@ -58,9 +57,8 @@ licenses:
|
|
58
57
|
metadata:
|
59
58
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
60
59
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-dns_v1beta2/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-dns_v1beta2/v0.
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-dns_v1beta2/v0.49.0
|
62
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-dns_v1beta2
|
63
|
-
post_install_message:
|
64
62
|
rdoc_options: []
|
65
63
|
require_paths:
|
66
64
|
- lib
|
@@ -75,8 +73,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
75
73
|
- !ruby/object:Gem::Version
|
76
74
|
version: '0'
|
77
75
|
requirements: []
|
78
|
-
rubygems_version: 3.
|
79
|
-
signing_key:
|
76
|
+
rubygems_version: 3.6.2
|
80
77
|
specification_version: 4
|
81
78
|
summary: Simple REST client for Cloud DNS API V1beta2
|
82
79
|
test_files: []
|