google-apis-dns_v1 0.43.0 → 0.44.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: 77aca6b3292d8fa6a073a84c1e87441d88bd80ab7dbae49984f2e46372b69ff9
4
- data.tar.gz: cc6e7737f70bdb75cca20476920fc7ebcd31111a6b5c74b4d06f8fee8b3ee401
3
+ metadata.gz: 2c573ae0a2419e05e4043c63a283692c32002af84fbaefe469c6a70519374408
4
+ data.tar.gz: d97b09761e2ad32dc8e22ec0e161980ccd9259942395dfcd750af6fde6399abc
5
5
  SHA512:
6
- metadata.gz: 84e76b46c8b5c911ac4d4728ae377488d7b238f1496197f5e1f3991a3f95ea1754fa0f85ce70cff6cb3e88a5ac481580a45f3475a0f88b4130c2ea270138fdc6
7
- data.tar.gz: ff7a7cc695d0e3d441a34d1220a0680ec42470f11b046511afed6ff565ccefabc4670a4ac546019b76019fbdd18c304b7af3ef1aea35a2ffb32d62777e480ea0
6
+ metadata.gz: 8311455ea2226a07aaa2314600dff4d1d3ec0d9c82129770bd4753691e0586e330d1ca59963b1471f68c0b3305a79e2d5b9bc973194948ffe03ec5cf9d1bcf87
7
+ data.tar.gz: c05b78e4e6d29bb70b381815198d134cc969d0da68eee3ea2b7d7e4d3cc804f386b1d1baa8d54569aecddcc357fc36bc606447684297a9933f3a9bb8af3b0da8
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-dns_v1
2
2
 
3
+ ### v0.44.0 (2024-07-25)
4
+
5
+ * Regenerated from discovery document revision 20240719
6
+
3
7
  ### v0.43.0 (2024-06-09)
4
8
 
5
9
  * Regenerated from discovery document revision 20240531
@@ -1792,6 +1792,11 @@ module Google
1792
1792
  # @return [Fixnum]
1793
1793
  attr_accessor :gke_clusters_per_response_policy
1794
1794
 
1795
+ #
1796
+ # Corresponds to the JSON property `internetHealthChecksPerManagedZone`
1797
+ # @return [Fixnum]
1798
+ attr_accessor :internet_health_checks_per_managed_zone
1799
+
1795
1800
  # Maximum allowed number of items per routing policy.
1796
1801
  # Corresponds to the JSON property `itemsPerRoutingPolicy`
1797
1802
  # @return [Fixnum]
@@ -1910,6 +1915,7 @@ module Google
1910
1915
  @gke_clusters_per_managed_zone = args[:gke_clusters_per_managed_zone] if args.key?(:gke_clusters_per_managed_zone)
1911
1916
  @gke_clusters_per_policy = args[:gke_clusters_per_policy] if args.key?(:gke_clusters_per_policy)
1912
1917
  @gke_clusters_per_response_policy = args[:gke_clusters_per_response_policy] if args.key?(:gke_clusters_per_response_policy)
1918
+ @internet_health_checks_per_managed_zone = args[:internet_health_checks_per_managed_zone] if args.key?(:internet_health_checks_per_managed_zone)
1913
1919
  @items_per_routing_policy = args[:items_per_routing_policy] if args.key?(:items_per_routing_policy)
1914
1920
  @kind = args[:kind] if args.key?(:kind)
1915
1921
  @managed_zones = args[:managed_zones] if args.key?(:managed_zones)
@@ -1946,6 +1952,13 @@ module Google
1946
1952
  # @return [Google::Apis::DnsV1::RrSetRoutingPolicyGeoPolicy]
1947
1953
  attr_accessor :geo
1948
1954
 
1955
+ # The selfLink attribute of the HealthCheck resource to use for this
1956
+ # RRSetRoutingPolicy. https://cloud.google.com/compute/docs/reference/rest/v1/
1957
+ # healthChecks
1958
+ # Corresponds to the JSON property `healthCheck`
1959
+ # @return [String]
1960
+ attr_accessor :health_check
1961
+
1949
1962
  #
1950
1963
  # Corresponds to the JSON property `kind`
1951
1964
  # @return [String]
@@ -1970,6 +1983,7 @@ module Google
1970
1983
  # Update properties of this object
1971
1984
  def update!(**args)
1972
1985
  @geo = args[:geo] if args.key?(:geo)
1986
+ @health_check = args[:health_check] if args.key?(:health_check)
1973
1987
  @kind = args[:kind] if args.key?(:kind)
1974
1988
  @primary_backup = args[:primary_backup] if args.key?(:primary_backup)
1975
1989
  @wrr = args[:wrr] if args.key?(:wrr)
@@ -2070,6 +2084,13 @@ module Google
2070
2084
  class RrSetRoutingPolicyHealthCheckTargets
2071
2085
  include Google::Apis::Core::Hashable
2072
2086
 
2087
+ # The Internet IP addresses to be health checked. The format matches the format
2088
+ # of ResourceRecordSet.rrdata as defined in RFC 1035 (section 5) and RFC 1034 (
2089
+ # section 3.6.1)
2090
+ # Corresponds to the JSON property `externalEndpoints`
2091
+ # @return [Array<String>]
2092
+ attr_accessor :external_endpoints
2093
+
2073
2094
  # Configuration for internal load balancers to be health checked.
2074
2095
  # Corresponds to the JSON property `internalLoadBalancers`
2075
2096
  # @return [Array<Google::Apis::DnsV1::RrSetRoutingPolicyLoadBalancerTarget>]
@@ -2081,6 +2102,7 @@ module Google
2081
2102
 
2082
2103
  # Update properties of this object
2083
2104
  def update!(**args)
2105
+ @external_endpoints = args[:external_endpoints] if args.key?(:external_endpoints)
2084
2106
  @internal_load_balancers = args[:internal_load_balancers] if args.key?(:internal_load_balancers)
2085
2107
  end
2086
2108
  end
@@ -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.43.0"
19
+ GEM_VERSION = "0.44.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.15.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20240531"
25
+ REVISION = "20240719"
26
26
  end
27
27
  end
28
28
  end
@@ -851,6 +851,7 @@ module Google
851
851
  property :gke_clusters_per_managed_zone, as: 'gkeClustersPerManagedZone'
852
852
  property :gke_clusters_per_policy, as: 'gkeClustersPerPolicy'
853
853
  property :gke_clusters_per_response_policy, as: 'gkeClustersPerResponsePolicy'
854
+ property :internet_health_checks_per_managed_zone, as: 'internetHealthChecksPerManagedZone'
854
855
  property :items_per_routing_policy, as: 'itemsPerRoutingPolicy'
855
856
  property :kind, as: 'kind'
856
857
  property :managed_zones, as: 'managedZones'
@@ -881,6 +882,7 @@ module Google
881
882
  class Representation < Google::Apis::Core::JsonRepresentation
882
883
  property :geo, as: 'geo', class: Google::Apis::DnsV1::RrSetRoutingPolicyGeoPolicy, decorator: Google::Apis::DnsV1::RrSetRoutingPolicyGeoPolicy::Representation
883
884
 
885
+ property :health_check, as: 'healthCheck'
884
886
  property :kind, as: 'kind'
885
887
  property :primary_backup, as: 'primaryBackup', class: Google::Apis::DnsV1::RrSetRoutingPolicyPrimaryBackupPolicy, decorator: Google::Apis::DnsV1::RrSetRoutingPolicyPrimaryBackupPolicy::Representation
886
888
 
@@ -914,6 +916,7 @@ module Google
914
916
  class RrSetRoutingPolicyHealthCheckTargets
915
917
  # @private
916
918
  class Representation < Google::Apis::Core::JsonRepresentation
919
+ collection :external_endpoints, as: 'externalEndpoints'
917
920
  collection :internal_load_balancers, as: 'internalLoadBalancers', class: Google::Apis::DnsV1::RrSetRoutingPolicyLoadBalancerTarget, decorator: Google::Apis::DnsV1::RrSetRoutingPolicyLoadBalancerTarget::Representation
918
921
 
919
922
  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.43.0
4
+ version: 0.44.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: 2024-06-09 00:00:00.000000000 Z
11
+ date: 2024-07-25 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.43.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-dns_v1/v0.44.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: []