google-apis-dns_v1 0.34.0 → 0.35.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_v1/classes.rb +25 -5
- data/lib/google/apis/dns_v1/gem_version.rb +2 -2
- data/lib/google/apis/dns_v1/representations.rb +2 -0
- 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: 0b3c2cb2540d2b96db99fc8f8d9dda9da108b668c65c15094068f65241f67cfe
|
4
|
+
data.tar.gz: '09e14dadc85e31eb4386a6d6214679b927fc6638ceab71e59c8026ba13ce4fa3'
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: a16d7121a018d66bd06d9e759361d8620768590c6641d84656b44e78a05bae4f6a4b5d8b8b1605191e911bc6e1a9b5acfe3d3b78cb436f93e75877db6e6aa3c4
|
7
|
+
data.tar.gz: 0eeebc94844a2499a6afdd33e75f085a4c5e22adcd297b4482491ba64a52277725429f4ba3777523e1aa4a861bf70e41f4958d9dbb6499017d56ded93485afd0
|
data/CHANGELOG.md
CHANGED
@@ -1957,6 +1957,13 @@ module Google
|
|
1957
1957
|
# @return [Google::Apis::DnsV1::RrSetRoutingPolicyGeoPolicy]
|
1958
1958
|
attr_accessor :geo
|
1959
1959
|
|
1960
|
+
# The selfLink attribute of the HealthCheck resource to use for this
|
1961
|
+
# RRSetRoutingPolicy. https://cloud.google.com/compute/docs/reference/rest/v1/
|
1962
|
+
# healthChecks
|
1963
|
+
# Corresponds to the JSON property `healthCheck`
|
1964
|
+
# @return [String]
|
1965
|
+
attr_accessor :health_check
|
1966
|
+
|
1960
1967
|
#
|
1961
1968
|
# Corresponds to the JSON property `kind`
|
1962
1969
|
# @return [String]
|
@@ -1981,6 +1988,7 @@ module Google
|
|
1981
1988
|
# Update properties of this object
|
1982
1989
|
def update!(**args)
|
1983
1990
|
@geo = args[:geo] if args.key?(:geo)
|
1991
|
+
@health_check = args[:health_check] if args.key?(:health_check)
|
1984
1992
|
@kind = args[:kind] if args.key?(:kind)
|
1985
1993
|
@primary_backup = args[:primary_backup] if args.key?(:primary_backup)
|
1986
1994
|
@wrr = args[:wrr] if args.key?(:wrr)
|
@@ -2032,7 +2040,8 @@ module Google
|
|
2032
2040
|
|
2033
2041
|
# HealthCheckTargets describes endpoints to health-check when responding to
|
2034
2042
|
# Routing Policy queries. Only the healthy endpoints will be included in the
|
2035
|
-
# response.
|
2043
|
+
# response. Only one of internal_load_balancer and external_endpoints should be
|
2044
|
+
# set.
|
2036
2045
|
# Corresponds to the JSON property `healthCheckedTargets`
|
2037
2046
|
# @return [Google::Apis::DnsV1::RrSetRoutingPolicyHealthCheckTargets]
|
2038
2047
|
attr_accessor :health_checked_targets
|
@@ -2077,11 +2086,19 @@ module Google
|
|
2077
2086
|
|
2078
2087
|
# HealthCheckTargets describes endpoints to health-check when responding to
|
2079
2088
|
# Routing Policy queries. Only the healthy endpoints will be included in the
|
2080
|
-
# response.
|
2089
|
+
# response. Only one of internal_load_balancer and external_endpoints should be
|
2090
|
+
# set.
|
2081
2091
|
class RrSetRoutingPolicyHealthCheckTargets
|
2082
2092
|
include Google::Apis::Core::Hashable
|
2083
2093
|
|
2084
|
-
#
|
2094
|
+
# The Internet IP addresses to be health checked. The format matches the format
|
2095
|
+
# of ResourceRecordSet.rrdata as defined in RFC 1035 (section 5) and RFC 1034 (
|
2096
|
+
# section 3.6.1)
|
2097
|
+
# Corresponds to the JSON property `externalEndpoints`
|
2098
|
+
# @return [Array<String>]
|
2099
|
+
attr_accessor :external_endpoints
|
2100
|
+
|
2101
|
+
# Configuration for internal load balancers to be health checked.
|
2085
2102
|
# Corresponds to the JSON property `internalLoadBalancers`
|
2086
2103
|
# @return [Array<Google::Apis::DnsV1::RrSetRoutingPolicyLoadBalancerTarget>]
|
2087
2104
|
attr_accessor :internal_load_balancers
|
@@ -2092,6 +2109,7 @@ module Google
|
|
2092
2109
|
|
2093
2110
|
# Update properties of this object
|
2094
2111
|
def update!(**args)
|
2112
|
+
@external_endpoints = args[:external_endpoints] if args.key?(:external_endpoints)
|
2095
2113
|
@internal_load_balancers = args[:internal_load_balancers] if args.key?(:internal_load_balancers)
|
2096
2114
|
end
|
2097
2115
|
end
|
@@ -2183,7 +2201,8 @@ module Google
|
|
2183
2201
|
|
2184
2202
|
# HealthCheckTargets describes endpoints to health-check when responding to
|
2185
2203
|
# Routing Policy queries. Only the healthy endpoints will be included in the
|
2186
|
-
# response.
|
2204
|
+
# response. Only one of internal_load_balancer and external_endpoints should be
|
2205
|
+
# set.
|
2187
2206
|
# Corresponds to the JSON property `primaryTargets`
|
2188
2207
|
# @return [Google::Apis::DnsV1::RrSetRoutingPolicyHealthCheckTargets]
|
2189
2208
|
attr_accessor :primary_targets
|
@@ -2238,7 +2257,8 @@ module Google
|
|
2238
2257
|
|
2239
2258
|
# HealthCheckTargets describes endpoints to health-check when responding to
|
2240
2259
|
# Routing Policy queries. Only the healthy endpoints will be included in the
|
2241
|
-
# response.
|
2260
|
+
# response. Only one of internal_load_balancer and external_endpoints should be
|
2261
|
+
# set.
|
2242
2262
|
# Corresponds to the JSON property `healthCheckedTargets`
|
2243
2263
|
# @return [Google::Apis::DnsV1::RrSetRoutingPolicyHealthCheckTargets]
|
2244
2264
|
attr_accessor :health_checked_targets
|
@@ -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.35.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 = "20231130"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -900,6 +900,7 @@ module Google
|
|
900
900
|
class Representation < Google::Apis::Core::JsonRepresentation
|
901
901
|
property :geo, as: 'geo', class: Google::Apis::DnsV1::RrSetRoutingPolicyGeoPolicy, decorator: Google::Apis::DnsV1::RrSetRoutingPolicyGeoPolicy::Representation
|
902
902
|
|
903
|
+
property :health_check, as: 'healthCheck'
|
903
904
|
property :kind, as: 'kind'
|
904
905
|
property :primary_backup, as: 'primaryBackup', class: Google::Apis::DnsV1::RrSetRoutingPolicyPrimaryBackupPolicy, decorator: Google::Apis::DnsV1::RrSetRoutingPolicyPrimaryBackupPolicy::Representation
|
905
906
|
|
@@ -933,6 +934,7 @@ module Google
|
|
933
934
|
class RrSetRoutingPolicyHealthCheckTargets
|
934
935
|
# @private
|
935
936
|
class Representation < Google::Apis::Core::JsonRepresentation
|
937
|
+
collection :external_endpoints, as: 'externalEndpoints'
|
936
938
|
collection :internal_load_balancers, as: 'internalLoadBalancers', class: Google::Apis::DnsV1::RrSetRoutingPolicyLoadBalancerTarget, decorator: Google::Apis::DnsV1::RrSetRoutingPolicyLoadBalancerTarget::Representation
|
937
939
|
|
938
940
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
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.35.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-
|
11
|
+
date: 2023-12-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_v1/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-dns_v1/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-dns_v1/v0.35.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-dns_v1
|
63
63
|
post_install_message:
|
64
64
|
rdoc_options: []
|