google-apis-dns_v1beta2 0.38.0 → 0.39.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 2afcdefcd497e979a347cf1cd7075a54ec6a5d854151ce32aead2782e92b02d2
4
- data.tar.gz: a3dfe88528dcd69099ac6dcf6dffe0a8a5ceb4b9058c838796e5d2a0eee21194
3
+ metadata.gz: ebf2bfadad128ad3df4e1d7d8584197bddbcb9f44849793a5101ed0b199ffb88
4
+ data.tar.gz: ba7050b549f8f83215669c870baf037c9b8c9c22d9e863b21f313def440c14fc
5
5
  SHA512:
6
- metadata.gz: 730021da7c8b61457f57e1aed7a1b3a03ae8629e7562f44332f81f16bce9d7f0bfa7d01abc4a568e7551e4fdbf35fae634acbd73525ee5679152564d516dfffc
7
- data.tar.gz: 0a69b6220716f0ba74188e4b9a9aed1792c643916d4664ec4f68f8b295e45e437241189de9daec1e55465ac709fd10b91837ef51222d42e7affd8684e42fe409
6
+ metadata.gz: 5f95bb2aafac53b16d430fd9e2dde2413859476665d8fcb8c5652bd60696cd0816cd6858bf7e2fbdf168ce7be413eac0f05a9fef608640b604dcfea718a301b0
7
+ data.tar.gz: a72aedaaeb8257c2b26b1ed9469cabd82ef646712b3c7010dbc3ec54250916e62e20241a1de3ad80df1fbfe2ce72bd6233fca8d00772fbf5ff0ef5407512ea2c
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-dns_v1beta2
2
2
 
3
+ ### v0.39.0 (2023-12-10)
4
+
5
+ * Regenerated from discovery document revision 20231130
6
+
3
7
  ### v0.38.0 (2023-09-10)
4
8
 
5
9
  * Regenerated from discovery document revision 20230831
@@ -1963,6 +1963,13 @@ module Google
1963
1963
  # @return [Google::Apis::DnsV1beta2::RrSetRoutingPolicyGeoPolicy]
1964
1964
  attr_accessor :geo_policy
1965
1965
 
1966
+ # The selfLink attribute of the HealthCheck resource to use for this
1967
+ # RRSetRoutingPolicy. https://cloud.google.com/compute/docs/reference/rest/v1/
1968
+ # healthChecks
1969
+ # Corresponds to the JSON property `healthCheck`
1970
+ # @return [String]
1971
+ attr_accessor :health_check
1972
+
1966
1973
  #
1967
1974
  # Corresponds to the JSON property `kind`
1968
1975
  # @return [String]
@@ -1993,6 +2000,7 @@ module Google
1993
2000
  def update!(**args)
1994
2001
  @geo = args[:geo] if args.key?(:geo)
1995
2002
  @geo_policy = args[:geo_policy] if args.key?(:geo_policy)
2003
+ @health_check = args[:health_check] if args.key?(:health_check)
1996
2004
  @kind = args[:kind] if args.key?(:kind)
1997
2005
  @primary_backup = args[:primary_backup] if args.key?(:primary_backup)
1998
2006
  @wrr = args[:wrr] if args.key?(:wrr)
@@ -2045,7 +2053,8 @@ module Google
2045
2053
 
2046
2054
  # HealthCheckTargets describes endpoints to health-check when responding to
2047
2055
  # Routing Policy queries. Only the healthy endpoints will be included in the
2048
- # response.
2056
+ # response. Only one of internal_load_balancer and external_endpoints should be
2057
+ # set.
2049
2058
  # Corresponds to the JSON property `healthCheckedTargets`
2050
2059
  # @return [Google::Apis::DnsV1beta2::RrSetRoutingPolicyHealthCheckTargets]
2051
2060
  attr_accessor :health_checked_targets
@@ -2090,11 +2099,19 @@ module Google
2090
2099
 
2091
2100
  # HealthCheckTargets describes endpoints to health-check when responding to
2092
2101
  # Routing Policy queries. Only the healthy endpoints will be included in the
2093
- # response.
2102
+ # response. Only one of internal_load_balancer and external_endpoints should be
2103
+ # set.
2094
2104
  class RrSetRoutingPolicyHealthCheckTargets
2095
2105
  include Google::Apis::Core::Hashable
2096
2106
 
2097
- #
2107
+ # The Internet IP addresses to be health checked. The format matches the format
2108
+ # of ResourceRecordSet.rrdata as defined in RFC 1035 (section 5) and RFC 1034 (
2109
+ # section 3.6.1)
2110
+ # Corresponds to the JSON property `externalEndpoints`
2111
+ # @return [Array<String>]
2112
+ attr_accessor :external_endpoints
2113
+
2114
+ # Configuration for internal load balancers to be health checked.
2098
2115
  # Corresponds to the JSON property `internalLoadBalancers`
2099
2116
  # @return [Array<Google::Apis::DnsV1beta2::RrSetRoutingPolicyLoadBalancerTarget>]
2100
2117
  attr_accessor :internal_load_balancers
@@ -2105,6 +2122,7 @@ module Google
2105
2122
 
2106
2123
  # Update properties of this object
2107
2124
  def update!(**args)
2125
+ @external_endpoints = args[:external_endpoints] if args.key?(:external_endpoints)
2108
2126
  @internal_load_balancers = args[:internal_load_balancers] if args.key?(:internal_load_balancers)
2109
2127
  end
2110
2128
  end
@@ -2196,7 +2214,8 @@ module Google
2196
2214
 
2197
2215
  # HealthCheckTargets describes endpoints to health-check when responding to
2198
2216
  # Routing Policy queries. Only the healthy endpoints will be included in the
2199
- # response.
2217
+ # response. Only one of internal_load_balancer and external_endpoints should be
2218
+ # set.
2200
2219
  # Corresponds to the JSON property `primaryTargets`
2201
2220
  # @return [Google::Apis::DnsV1beta2::RrSetRoutingPolicyHealthCheckTargets]
2202
2221
  attr_accessor :primary_targets
@@ -2251,7 +2270,8 @@ module Google
2251
2270
 
2252
2271
  # HealthCheckTargets describes endpoints to health-check when responding to
2253
2272
  # Routing Policy queries. Only the healthy endpoints will be included in the
2254
- # response.
2273
+ # response. Only one of internal_load_balancer and external_endpoints should be
2274
+ # set.
2255
2275
  # Corresponds to the JSON property `healthCheckedTargets`
2256
2276
  # @return [Google::Apis::DnsV1beta2::RrSetRoutingPolicyHealthCheckTargets]
2257
2277
  attr_accessor :health_checked_targets
@@ -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.38.0"
19
+ GEM_VERSION = "0.39.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 = "20230831"
25
+ REVISION = "20231130"
26
26
  end
27
27
  end
28
28
  end
@@ -896,6 +896,7 @@ module Google
896
896
 
897
897
  property :geo_policy, as: 'geoPolicy', class: Google::Apis::DnsV1beta2::RrSetRoutingPolicyGeoPolicy, decorator: Google::Apis::DnsV1beta2::RrSetRoutingPolicyGeoPolicy::Representation
898
898
 
899
+ property :health_check, as: 'healthCheck'
899
900
  property :kind, as: 'kind'
900
901
  property :primary_backup, as: 'primaryBackup', class: Google::Apis::DnsV1beta2::RrSetRoutingPolicyPrimaryBackupPolicy, decorator: Google::Apis::DnsV1beta2::RrSetRoutingPolicyPrimaryBackupPolicy::Representation
901
902
 
@@ -931,6 +932,7 @@ module Google
931
932
  class RrSetRoutingPolicyHealthCheckTargets
932
933
  # @private
933
934
  class Representation < Google::Apis::Core::JsonRepresentation
935
+ collection :external_endpoints, as: 'externalEndpoints'
934
936
  collection :internal_load_balancers, as: 'internalLoadBalancers', class: Google::Apis::DnsV1beta2::RrSetRoutingPolicyLoadBalancerTarget, decorator: Google::Apis::DnsV1beta2::RrSetRoutingPolicyLoadBalancerTarget::Representation
935
937
 
936
938
  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.38.0
4
+ version: 0.39.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-10 00:00:00.000000000 Z
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_v1beta2/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-dns_v1beta2/v0.38.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-dns_v1beta2/v0.39.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: []