google-apis-dns_v1 0.44.0 → 0.46.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 +4 -4
- data/CHANGELOG.md +9 -0
- data/lib/google/apis/dns_v1/classes.rb +75 -13
- data/lib/google/apis/dns_v1/gem_version.rb +3 -3
- data/lib/google/apis/dns_v1/representations.rb +31 -0
- metadata +4 -7
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 7c16f0e5717421611b1ad189d4e7a2f60f8420875c15b8ddb4d4c122b8e84c9d
|
4
|
+
data.tar.gz: 3db83cdd2933fb7c07ab8e463550fd0ac339b480f7d40163e27452064422cfb5
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 070d0e8fed3ee2b6369c4ad4bd70349f6138876dd59a2cc705fa8d95b4b3465a01078ded55cdfaa1d47f9e2509b9869066c92784821804d4b7dcf385fb0ceda4
|
7
|
+
data.tar.gz: 590b1855ddf049e0b97b2f6acff40759f5cbd5ea1400b1d429e00f2a6d24eed2f39d439d795c4483dddef90cd9df4a789f3db6b8df2f7acce3705ec2dbc406ba
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,14 @@
|
|
1
1
|
# Release history for google-apis-dns_v1
|
2
2
|
|
3
|
+
### v0.46.0 (2025-03-09)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20250227
|
6
|
+
|
7
|
+
### v0.45.0 (2025-01-12)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20250102
|
10
|
+
* Regenerated using generator version 0.16.0
|
11
|
+
|
3
12
|
### v0.44.0 (2024-07-25)
|
4
13
|
|
5
14
|
* Regenerated from discovery document revision 20240719
|
@@ -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::DnsV1::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::DnsV1::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
|
@@ -1952,9 +2009,10 @@ module Google
|
|
1952
2009
|
# @return [Google::Apis::DnsV1::RrSetRoutingPolicyGeoPolicy]
|
1953
2010
|
attr_accessor :geo
|
1954
2011
|
|
1955
|
-
# The
|
1956
|
-
#
|
1957
|
-
# healthChecks
|
2012
|
+
# The fully qualified URL of the HealthCheck to use for this RRSetRoutingPolicy.
|
2013
|
+
# Format this URL like `https://www.googleapis.com/compute/v1/projects/`project`/
|
2014
|
+
# global/healthChecks/`healthCheck``. https://cloud.google.com/compute/docs/
|
2015
|
+
# reference/rest/v1/healthChecks
|
1958
2016
|
# Corresponds to the JSON property `healthCheck`
|
1959
2017
|
# @return [String]
|
1960
2018
|
attr_accessor :health_check
|
@@ -2035,7 +2093,8 @@ module Google
|
|
2035
2093
|
|
2036
2094
|
# HealthCheckTargets describes endpoints to health-check when responding to
|
2037
2095
|
# Routing Policy queries. Only the healthy endpoints will be included in the
|
2038
|
-
# response.
|
2096
|
+
# response. Set either `internal_load_balancer` or `external_endpoints`. Do not
|
2097
|
+
# set both.
|
2039
2098
|
# Corresponds to the JSON property `healthCheckedTargets`
|
2040
2099
|
# @return [Google::Apis::DnsV1::RrSetRoutingPolicyHealthCheckTargets]
|
2041
2100
|
attr_accessor :health_checked_targets
|
@@ -2057,9 +2116,9 @@ module Google
|
|
2057
2116
|
# @return [Array<String>]
|
2058
2117
|
attr_accessor :rrdatas
|
2059
2118
|
|
2060
|
-
# DNSSEC generated signatures for all the `rrdata` within this item.
|
2061
|
-
# checked targets
|
2062
|
-
#
|
2119
|
+
# DNSSEC generated signatures for all the `rrdata` within this item. When using
|
2120
|
+
# health-checked targets for DNSSEC-enabled zones, you can only use at most one
|
2121
|
+
# health-checked IP address per item.
|
2063
2122
|
# Corresponds to the JSON property `signatureRrdatas`
|
2064
2123
|
# @return [Array<String>]
|
2065
2124
|
attr_accessor :signature_rrdatas
|
@@ -2080,7 +2139,8 @@ module Google
|
|
2080
2139
|
|
2081
2140
|
# HealthCheckTargets describes endpoints to health-check when responding to
|
2082
2141
|
# Routing Policy queries. Only the healthy endpoints will be included in the
|
2083
|
-
# response.
|
2142
|
+
# response. Set either `internal_load_balancer` or `external_endpoints`. Do not
|
2143
|
+
# set both.
|
2084
2144
|
class RrSetRoutingPolicyHealthCheckTargets
|
2085
2145
|
include Google::Apis::Core::Hashable
|
2086
2146
|
|
@@ -2194,7 +2254,8 @@ module Google
|
|
2194
2254
|
|
2195
2255
|
# HealthCheckTargets describes endpoints to health-check when responding to
|
2196
2256
|
# Routing Policy queries. Only the healthy endpoints will be included in the
|
2197
|
-
# response.
|
2257
|
+
# response. Set either `internal_load_balancer` or `external_endpoints`. Do not
|
2258
|
+
# set both.
|
2198
2259
|
# Corresponds to the JSON property `primaryTargets`
|
2199
2260
|
# @return [Google::Apis::DnsV1::RrSetRoutingPolicyHealthCheckTargets]
|
2200
2261
|
attr_accessor :primary_targets
|
@@ -2249,7 +2310,8 @@ module Google
|
|
2249
2310
|
|
2250
2311
|
# HealthCheckTargets describes endpoints to health-check when responding to
|
2251
2312
|
# Routing Policy queries. Only the healthy endpoints will be included in the
|
2252
|
-
# response.
|
2313
|
+
# response. Set either `internal_load_balancer` or `external_endpoints`. Do not
|
2314
|
+
# set both.
|
2253
2315
|
# Corresponds to the JSON property `healthCheckedTargets`
|
2254
2316
|
# @return [Google::Apis::DnsV1::RrSetRoutingPolicyHealthCheckTargets]
|
2255
2317
|
attr_accessor :health_checked_targets
|
@@ -2264,9 +2326,9 @@ module Google
|
|
2264
2326
|
# @return [Array<String>]
|
2265
2327
|
attr_accessor :rrdatas
|
2266
2328
|
|
2267
|
-
# DNSSEC generated signatures for all the `rrdata` within this item.
|
2268
|
-
#
|
2269
|
-
#
|
2329
|
+
# DNSSEC generated signatures for all the `rrdata` within this item. When using
|
2330
|
+
# health-checked targets for DNSSEC-enabled zones, you can only use at most one
|
2331
|
+
# health-checked IP address per item.
|
2270
2332
|
# Corresponds to the JSON property `signatureRrdatas`
|
2271
2333
|
# @return [Array<String>]
|
2272
2334
|
attr_accessor :signature_rrdatas
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module DnsV1
|
18
18
|
# Version of the google-apis-dns_v1 gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.46.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 = "20250227"
|
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
|
|
@@ -796,6 +808,8 @@ module Google
|
|
796
808
|
property :alternative_name_server_config, as: 'alternativeNameServerConfig', class: Google::Apis::DnsV1::PolicyAlternativeNameServerConfig, decorator: Google::Apis::DnsV1::PolicyAlternativeNameServerConfig::Representation
|
797
809
|
|
798
810
|
property :description, as: 'description'
|
811
|
+
property :dns64_config, as: 'dns64Config', class: Google::Apis::DnsV1::PolicyDns64Config, decorator: Google::Apis::DnsV1::PolicyDns64Config::Representation
|
812
|
+
|
799
813
|
property :enable_inbound_forwarding, as: 'enableInboundForwarding'
|
800
814
|
property :enable_logging, as: 'enableLogging'
|
801
815
|
property :id, :numeric_string => true, as: 'id'
|
@@ -825,6 +839,23 @@ module Google
|
|
825
839
|
end
|
826
840
|
end
|
827
841
|
|
842
|
+
class PolicyDns64Config
|
843
|
+
# @private
|
844
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
845
|
+
property :kind, as: 'kind'
|
846
|
+
property :scope, as: 'scope', class: Google::Apis::DnsV1::PolicyDns64ConfigScope, decorator: Google::Apis::DnsV1::PolicyDns64ConfigScope::Representation
|
847
|
+
|
848
|
+
end
|
849
|
+
end
|
850
|
+
|
851
|
+
class PolicyDns64ConfigScope
|
852
|
+
# @private
|
853
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
854
|
+
property :all_queries, as: 'allQueries'
|
855
|
+
property :kind, as: 'kind'
|
856
|
+
end
|
857
|
+
end
|
858
|
+
|
828
859
|
class PolicyNetwork
|
829
860
|
# @private
|
830
861
|
class Representation < Google::Apis::Core::JsonRepresentation
|
metadata
CHANGED
@@ -1,14 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-dns_v1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.46.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-03-09 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_v1/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-dns_v1/v0.
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-dns_v1/v0.46.0
|
62
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-dns_v1
|
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.5
|
79
|
-
signing_key:
|
76
|
+
rubygems_version: 3.6.5
|
80
77
|
specification_version: 4
|
81
78
|
summary: Simple REST client for Cloud DNS API V1
|
82
79
|
test_files: []
|