google-apis-dns_v1beta2 0.37.0 → 0.38.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 +4 -0
- data/lib/google/apis/dns_v1beta2/classes.rb +32 -30
- data/lib/google/apis/dns_v1beta2/gem_version.rb +2 -2
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 2afcdefcd497e979a347cf1cd7075a54ec6a5d854151ce32aead2782e92b02d2
|
4
|
+
data.tar.gz: a3dfe88528dcd69099ac6dcf6dffe0a8a5ceb4b9058c838796e5d2a0eee21194
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 730021da7c8b61457f57e1aed7a1b3a03ae8629e7562f44332f81f16bce9d7f0bfa7d01abc4a568e7551e4fdbf35fae634acbd73525ee5679152564d516dfffc
|
7
|
+
data.tar.gz: 0a69b6220716f0ba74188e4b9a9aed1792c643916d4664ec4f68f8b295e45e437241189de9daec1e55465ac709fd10b91837ef51222d42e7affd8684e42fe409
|
data/CHANGELOG.md
CHANGED
@@ -2006,11 +2006,11 @@ module Google
|
|
2006
2006
|
include Google::Apis::Core::Hashable
|
2007
2007
|
|
2008
2008
|
# Without fencing, if health check fails for all configured items in the current
|
2009
|
-
# geo bucket, we
|
2010
|
-
# health
|
2011
|
-
# healthy, we
|
2012
|
-
# unhealthy, we
|
2013
|
-
# all the items in the current bucket even
|
2009
|
+
# geo bucket, we failover to the next nearest geo bucket. With fencing, if
|
2010
|
+
# health checking is enabled, as long as some targets in the current geo bucket
|
2011
|
+
# are healthy, we return only the healthy targets. However, if all targets are
|
2012
|
+
# unhealthy, we don't failover to the next nearest bucket; instead, we return
|
2013
|
+
# all the items in the current bucket even when all targets are unhealthy.
|
2014
2014
|
# Corresponds to the JSON property `enableFencing`
|
2015
2015
|
# @return [Boolean]
|
2016
2016
|
attr_accessor :enable_fencing
|
@@ -2067,9 +2067,9 @@ module Google
|
|
2067
2067
|
# @return [Array<String>]
|
2068
2068
|
attr_accessor :rrdatas
|
2069
2069
|
|
2070
|
-
# DNSSEC generated signatures for all the rrdata within this item.
|
2071
|
-
#
|
2072
|
-
#
|
2070
|
+
# DNSSEC generated signatures for all the rrdata within this item. If health
|
2071
|
+
# checked targets are provided for DNSSEC enabled zones, there's a restriction
|
2072
|
+
# of 1 IP address per item.
|
2073
2073
|
# Corresponds to the JSON property `signatureRrdatas`
|
2074
2074
|
# @return [Array<String>]
|
2075
2075
|
attr_accessor :signature_rrdatas
|
@@ -2109,16 +2109,16 @@ module Google
|
|
2109
2109
|
end
|
2110
2110
|
end
|
2111
2111
|
|
2112
|
-
#
|
2112
|
+
# The configuration for an individual load balancer to health check.
|
2113
2113
|
class RrSetRoutingPolicyLoadBalancerTarget
|
2114
2114
|
include Google::Apis::Core::Hashable
|
2115
2115
|
|
2116
|
-
# The frontend IP address of the
|
2116
|
+
# The frontend IP address of the load balancer to health check.
|
2117
2117
|
# Corresponds to the JSON property `ipAddress`
|
2118
2118
|
# @return [String]
|
2119
2119
|
attr_accessor :ip_address
|
2120
2120
|
|
2121
|
-
#
|
2121
|
+
# The protocol of the load balancer to health check.
|
2122
2122
|
# Corresponds to the JSON property `ipProtocol`
|
2123
2123
|
# @return [String]
|
2124
2124
|
attr_accessor :ip_protocol
|
@@ -2128,31 +2128,34 @@ module Google
|
|
2128
2128
|
# @return [String]
|
2129
2129
|
attr_accessor :kind
|
2130
2130
|
|
2131
|
-
# The type of
|
2132
|
-
# configuration of the
|
2133
|
-
# address
|
2131
|
+
# The type of load balancer specified by this target. This value must match the
|
2132
|
+
# configuration of the load balancer located at the LoadBalancerTarget's IP
|
2133
|
+
# address, port, and region. Use the following: - *regionalL4ilb*: for a
|
2134
|
+
# regional internal passthrough Network Load Balancer. - *regionalL7ilb*: for a
|
2135
|
+
# regional internal Application Load Balancer. - *globalL7ilb*: for a global
|
2136
|
+
# internal Application Load Balancer.
|
2134
2137
|
# Corresponds to the JSON property `loadBalancerType`
|
2135
2138
|
# @return [String]
|
2136
2139
|
attr_accessor :load_balancer_type
|
2137
2140
|
|
2138
|
-
# The fully qualified
|
2139
|
-
# should be formatted like https://www.googleapis.com/compute/v1/projects/`
|
2140
|
-
# project`/global/networks/`network`
|
2141
|
+
# The fully qualified URL of the network that the load balancer is attached to.
|
2142
|
+
# This should be formatted like https://www.googleapis.com/compute/v1/projects/`
|
2143
|
+
# project`/global/networks/`network` .
|
2141
2144
|
# Corresponds to the JSON property `networkUrl`
|
2142
2145
|
# @return [String]
|
2143
2146
|
attr_accessor :network_url
|
2144
2147
|
|
2145
|
-
# The configured port of the
|
2148
|
+
# The configured port of the load balancer.
|
2146
2149
|
# Corresponds to the JSON property `port`
|
2147
2150
|
# @return [String]
|
2148
2151
|
attr_accessor :port
|
2149
2152
|
|
2150
|
-
# The project ID in which the
|
2153
|
+
# The project ID in which the load balancer is located.
|
2151
2154
|
# Corresponds to the JSON property `project`
|
2152
2155
|
# @return [String]
|
2153
2156
|
attr_accessor :project
|
2154
2157
|
|
2155
|
-
# The region in which the
|
2158
|
+
# The region in which the load balancer is located.
|
2156
2159
|
# Corresponds to the JSON property `region`
|
2157
2160
|
# @return [String]
|
2158
2161
|
attr_accessor :region
|
@@ -2265,15 +2268,15 @@ module Google
|
|
2265
2268
|
|
2266
2269
|
# DNSSEC generated signatures for all the rrdata within this item. Note that if
|
2267
2270
|
# health checked targets are provided for DNSSEC enabled zones, there's a
|
2268
|
-
# restriction of 1
|
2271
|
+
# restriction of 1 IP address per item.
|
2269
2272
|
# Corresponds to the JSON property `signatureRrdatas`
|
2270
2273
|
# @return [Array<String>]
|
2271
2274
|
attr_accessor :signature_rrdatas
|
2272
2275
|
|
2273
|
-
# The weight corresponding to this
|
2274
|
-
#
|
2275
|
-
#
|
2276
|
-
# for all items. This weight
|
2276
|
+
# The weight corresponding to this WrrPolicyItem object. When multiple
|
2277
|
+
# WrrPolicyItem objects are configured, the probability of returning an
|
2278
|
+
# WrrPolicyItem object's data is proportional to its weight relative to the sum
|
2279
|
+
# of weights configured for all items. This weight must be non-negative.
|
2277
2280
|
# Corresponds to the JSON property `weight`
|
2278
2281
|
# @return [Float]
|
2279
2282
|
attr_accessor :weight
|
@@ -2368,11 +2371,10 @@ module Google
|
|
2368
2371
|
# The presence of this field indicates that there exist more results following
|
2369
2372
|
# your last page of results in pagination order. To fetch them, make another
|
2370
2373
|
# list request using this value as your pagination token. This lets you retrieve
|
2371
|
-
# complete contents of even larger collections, one page at a time. However,
|
2372
|
-
#
|
2373
|
-
#
|
2374
|
-
#
|
2375
|
-
# than the maximum page size.
|
2374
|
+
# the complete contents of even larger collections, one page at a time. However,
|
2375
|
+
# if the collection changes between paginated list requests, the set of elements
|
2376
|
+
# returned is an inconsistent view of the collection. You cannot retrieve a
|
2377
|
+
# consistent snapshot of a collection larger than the maximum page size.
|
2376
2378
|
# Corresponds to the JSON property `nextPageToken`
|
2377
2379
|
# @return [String]
|
2378
2380
|
attr_accessor :next_page_token
|
@@ -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.38.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.12.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20230831"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
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.38.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Google LLC
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2023-09-
|
11
|
+
date: 2023-09-10 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: google-apis-core
|
@@ -58,7 +58,7 @@ licenses:
|
|
58
58
|
metadata:
|
59
59
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
60
60
|
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.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-dns_v1beta2/v0.38.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-dns_v1beta2
|
63
63
|
post_install_message:
|
64
64
|
rdoc_options: []
|