google-apis-dns_v1 0.43.0 → 0.49.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: 6659f9621a592cd04af879d7f7cb91b76e4eb14b5d9b93da5bfd81b131fb76c2
4
+ data.tar.gz: b87d8592bd6b3122adcee05cd741972a05892e819e50b29a82fa8d55a8bce92e
5
5
  SHA512:
6
- metadata.gz: 84e76b46c8b5c911ac4d4728ae377488d7b238f1496197f5e1f3991a3f95ea1754fa0f85ce70cff6cb3e88a5ac481580a45f3475a0f88b4130c2ea270138fdc6
7
- data.tar.gz: ff7a7cc695d0e3d441a34d1220a0680ec42470f11b046511afed6ff565ccefabc4670a4ac546019b76019fbdd18c304b7af3ef1aea35a2ffb32d62777e480ea0
6
+ metadata.gz: 8a30e132e4edc695562f2f5d8334c60cb989e173ea07b9e92bd7e5fa56ed7a8382931832de68289293be8e911bbdd0f109a951bca99fd29308576f094fe7aa98
7
+ data.tar.gz: 3a479d3d5073d3f74442a4a351204c9270813baf911e828cc49b79ec3a0cc445bde93925988137dd53ea2f25a496fe995d5f74cf63bcb43abd67add410bcabd9
data/CHANGELOG.md CHANGED
@@ -1,5 +1,31 @@
1
1
  # Release history for google-apis-dns_v1
2
2
 
3
+ ### v0.49.0 (2025-09-07)
4
+
5
+ * Regenerated from discovery document revision 20250828
6
+ * Regenerated using generator version 0.18.0
7
+
8
+ ### v0.48.0 (2025-05-04)
9
+
10
+ * Regenerated using generator version 0.17.0
11
+
12
+ ### v0.47.0 (2025-04-20)
13
+
14
+ * Regenerated from discovery document revision 20250411
15
+
16
+ ### v0.46.0 (2025-03-09)
17
+
18
+ * Regenerated from discovery document revision 20250227
19
+
20
+ ### v0.45.0 (2025-01-12)
21
+
22
+ * Regenerated from discovery document revision 20250102
23
+ * Regenerated using generator version 0.16.0
24
+
25
+ ### v0.44.0 (2024-07-25)
26
+
27
+ * Regenerated from discovery document revision 20240719
28
+
3
29
  ### v0.43.0 (2024-06-09)
4
30
 
5
31
  * Regenerated from discovery document revision 20240531
data/OVERVIEW.md CHANGED
@@ -83,7 +83,7 @@ The [product documentation](https://cloud.google.com/dns/docs) may provide guida
83
83
 
84
84
  ## Supported Ruby versions
85
85
 
86
- This library is supported on Ruby 2.7+.
86
+ This library is supported on Ruby 3.1+.
87
87
 
88
88
  Google provides official support for Ruby versions that are actively supported by Ruby Core -- that is, Ruby versions that are either in normal maintenance or in security maintenance, and not end of life. Older versions of Ruby _may_ still work, but are unsupported and not recommended. See https://www.ruby-lang.org/en/downloads/branches/ for details about the Ruby support schedule.
89
89
 
@@ -1018,6 +1018,11 @@ module Google
1018
1018
  class ManagedZoneForwardingConfigNameServerTarget
1019
1019
  include Google::Apis::Core::Hashable
1020
1020
 
1021
+ # Fully qualified domain name for the forwarding target.
1022
+ # Corresponds to the JSON property `domainName`
1023
+ # @return [String]
1024
+ attr_accessor :domain_name
1025
+
1021
1026
  # Forwarding path for this NameServerTarget. If unset or set to DEFAULT, Cloud
1022
1027
  # DNS makes forwarding decisions based on IP address ranges; that is, RFC1918
1023
1028
  # addresses go to the VPC network, non-RFC1918 addresses go to the internet.
@@ -1049,6 +1054,7 @@ module Google
1049
1054
 
1050
1055
  # Update properties of this object
1051
1056
  def update!(**args)
1057
+ @domain_name = args[:domain_name] if args.key?(:domain_name)
1052
1058
  @forwarding_path = args[:forwarding_path] if args.key?(:forwarding_path)
1053
1059
  @ipv4_address = args[:ipv4_address] if args.key?(:ipv4_address)
1054
1060
  @ipv6_address = args[:ipv6_address] if args.key?(:ipv6_address)
@@ -1579,6 +1585,11 @@ module Google
1579
1585
  # @return [String]
1580
1586
  attr_accessor :description
1581
1587
 
1588
+ # DNS64 policies
1589
+ # Corresponds to the JSON property `dns64Config`
1590
+ # @return [Google::Apis::DnsV1::PolicyDns64Config]
1591
+ attr_accessor :dns64_config
1592
+
1582
1593
  # Allows networks bound to this policy to receive DNS queries sent by VMs or
1583
1594
  # applications over VPN connections. When enabled, a virtual IP address is
1584
1595
  # allocated from each of the subnetworks that are bound to this policy.
@@ -1622,6 +1633,7 @@ module Google
1622
1633
  def update!(**args)
1623
1634
  @alternative_name_server_config = args[:alternative_name_server_config] if args.key?(:alternative_name_server_config)
1624
1635
  @description = args[:description] if args.key?(:description)
1636
+ @dns64_config = args[:dns64_config] if args.key?(:dns64_config)
1625
1637
  @enable_inbound_forwarding = args[:enable_inbound_forwarding] if args.key?(:enable_inbound_forwarding)
1626
1638
  @enable_logging = args[:enable_logging] if args.key?(:enable_logging)
1627
1639
  @id = args[:id] if args.key?(:id)
@@ -1700,6 +1712,58 @@ module Google
1700
1712
  end
1701
1713
  end
1702
1714
 
1715
+ # DNS64 policies
1716
+ class PolicyDns64Config
1717
+ include Google::Apis::Core::Hashable
1718
+
1719
+ #
1720
+ # Corresponds to the JSON property `kind`
1721
+ # @return [String]
1722
+ attr_accessor :kind
1723
+
1724
+ # The scope to which DNS64 config will be applied to.
1725
+ # Corresponds to the JSON property `scope`
1726
+ # @return [Google::Apis::DnsV1::PolicyDns64ConfigScope]
1727
+ attr_accessor :scope
1728
+
1729
+ def initialize(**args)
1730
+ update!(**args)
1731
+ end
1732
+
1733
+ # Update properties of this object
1734
+ def update!(**args)
1735
+ @kind = args[:kind] if args.key?(:kind)
1736
+ @scope = args[:scope] if args.key?(:scope)
1737
+ end
1738
+ end
1739
+
1740
+ #
1741
+ class PolicyDns64ConfigScope
1742
+ include Google::Apis::Core::Hashable
1743
+
1744
+ # Controls whether DNS64 is enabled globally for all networks bound to the
1745
+ # policy.
1746
+ # Corresponds to the JSON property `allQueries`
1747
+ # @return [Boolean]
1748
+ attr_accessor :all_queries
1749
+ alias_method :all_queries?, :all_queries
1750
+
1751
+ #
1752
+ # Corresponds to the JSON property `kind`
1753
+ # @return [String]
1754
+ attr_accessor :kind
1755
+
1756
+ def initialize(**args)
1757
+ update!(**args)
1758
+ end
1759
+
1760
+ # Update properties of this object
1761
+ def update!(**args)
1762
+ @all_queries = args[:all_queries] if args.key?(:all_queries)
1763
+ @kind = args[:kind] if args.key?(:kind)
1764
+ end
1765
+ end
1766
+
1703
1767
  #
1704
1768
  class PolicyNetwork
1705
1769
  include Google::Apis::Core::Hashable
@@ -1792,6 +1856,11 @@ module Google
1792
1856
  # @return [Fixnum]
1793
1857
  attr_accessor :gke_clusters_per_response_policy
1794
1858
 
1859
+ #
1860
+ # Corresponds to the JSON property `internetHealthChecksPerManagedZone`
1861
+ # @return [Fixnum]
1862
+ attr_accessor :internet_health_checks_per_managed_zone
1863
+
1795
1864
  # Maximum allowed number of items per routing policy.
1796
1865
  # Corresponds to the JSON property `itemsPerRoutingPolicy`
1797
1866
  # @return [Fixnum]
@@ -1910,6 +1979,7 @@ module Google
1910
1979
  @gke_clusters_per_managed_zone = args[:gke_clusters_per_managed_zone] if args.key?(:gke_clusters_per_managed_zone)
1911
1980
  @gke_clusters_per_policy = args[:gke_clusters_per_policy] if args.key?(:gke_clusters_per_policy)
1912
1981
  @gke_clusters_per_response_policy = args[:gke_clusters_per_response_policy] if args.key?(:gke_clusters_per_response_policy)
1982
+ @internet_health_checks_per_managed_zone = args[:internet_health_checks_per_managed_zone] if args.key?(:internet_health_checks_per_managed_zone)
1913
1983
  @items_per_routing_policy = args[:items_per_routing_policy] if args.key?(:items_per_routing_policy)
1914
1984
  @kind = args[:kind] if args.key?(:kind)
1915
1985
  @managed_zones = args[:managed_zones] if args.key?(:managed_zones)
@@ -1946,6 +2016,14 @@ module Google
1946
2016
  # @return [Google::Apis::DnsV1::RrSetRoutingPolicyGeoPolicy]
1947
2017
  attr_accessor :geo
1948
2018
 
2019
+ # The fully qualified URL of the HealthCheck to use for this RRSetRoutingPolicy.
2020
+ # Format this URL like `https://www.googleapis.com/compute/v1/projects/`project`/
2021
+ # global/healthChecks/`healthCheck``. https://cloud.google.com/compute/docs/
2022
+ # reference/rest/v1/healthChecks
2023
+ # Corresponds to the JSON property `healthCheck`
2024
+ # @return [String]
2025
+ attr_accessor :health_check
2026
+
1949
2027
  #
1950
2028
  # Corresponds to the JSON property `kind`
1951
2029
  # @return [String]
@@ -1970,6 +2048,7 @@ module Google
1970
2048
  # Update properties of this object
1971
2049
  def update!(**args)
1972
2050
  @geo = args[:geo] if args.key?(:geo)
2051
+ @health_check = args[:health_check] if args.key?(:health_check)
1973
2052
  @kind = args[:kind] if args.key?(:kind)
1974
2053
  @primary_backup = args[:primary_backup] if args.key?(:primary_backup)
1975
2054
  @wrr = args[:wrr] if args.key?(:wrr)
@@ -2021,7 +2100,8 @@ module Google
2021
2100
 
2022
2101
  # HealthCheckTargets describes endpoints to health-check when responding to
2023
2102
  # Routing Policy queries. Only the healthy endpoints will be included in the
2024
- # response.
2103
+ # response. Set either `internal_load_balancer` or `external_endpoints`. Do not
2104
+ # set both.
2025
2105
  # Corresponds to the JSON property `healthCheckedTargets`
2026
2106
  # @return [Google::Apis::DnsV1::RrSetRoutingPolicyHealthCheckTargets]
2027
2107
  attr_accessor :health_checked_targets
@@ -2043,9 +2123,9 @@ module Google
2043
2123
  # @return [Array<String>]
2044
2124
  attr_accessor :rrdatas
2045
2125
 
2046
- # DNSSEC generated signatures for all the `rrdata` within this item. If health
2047
- # checked targets are provided for DNSSEC enabled zones, there's a restriction
2048
- # of 1 IP address per item.
2126
+ # DNSSEC generated signatures for all the `rrdata` within this item. When using
2127
+ # health-checked targets for DNSSEC-enabled zones, you can only use at most one
2128
+ # health-checked IP address per item.
2049
2129
  # Corresponds to the JSON property `signatureRrdatas`
2050
2130
  # @return [Array<String>]
2051
2131
  attr_accessor :signature_rrdatas
@@ -2066,10 +2146,18 @@ module Google
2066
2146
 
2067
2147
  # HealthCheckTargets describes endpoints to health-check when responding to
2068
2148
  # Routing Policy queries. Only the healthy endpoints will be included in the
2069
- # response.
2149
+ # response. Set either `internal_load_balancer` or `external_endpoints`. Do not
2150
+ # set both.
2070
2151
  class RrSetRoutingPolicyHealthCheckTargets
2071
2152
  include Google::Apis::Core::Hashable
2072
2153
 
2154
+ # The Internet IP addresses to be health checked. The format matches the format
2155
+ # of ResourceRecordSet.rrdata as defined in RFC 1035 (section 5) and RFC 1034 (
2156
+ # section 3.6.1)
2157
+ # Corresponds to the JSON property `externalEndpoints`
2158
+ # @return [Array<String>]
2159
+ attr_accessor :external_endpoints
2160
+
2073
2161
  # Configuration for internal load balancers to be health checked.
2074
2162
  # Corresponds to the JSON property `internalLoadBalancers`
2075
2163
  # @return [Array<Google::Apis::DnsV1::RrSetRoutingPolicyLoadBalancerTarget>]
@@ -2081,6 +2169,7 @@ module Google
2081
2169
 
2082
2170
  # Update properties of this object
2083
2171
  def update!(**args)
2172
+ @external_endpoints = args[:external_endpoints] if args.key?(:external_endpoints)
2084
2173
  @internal_load_balancers = args[:internal_load_balancers] if args.key?(:internal_load_balancers)
2085
2174
  end
2086
2175
  end
@@ -2172,7 +2261,8 @@ module Google
2172
2261
 
2173
2262
  # HealthCheckTargets describes endpoints to health-check when responding to
2174
2263
  # Routing Policy queries. Only the healthy endpoints will be included in the
2175
- # response.
2264
+ # response. Set either `internal_load_balancer` or `external_endpoints`. Do not
2265
+ # set both.
2176
2266
  # Corresponds to the JSON property `primaryTargets`
2177
2267
  # @return [Google::Apis::DnsV1::RrSetRoutingPolicyHealthCheckTargets]
2178
2268
  attr_accessor :primary_targets
@@ -2227,7 +2317,8 @@ module Google
2227
2317
 
2228
2318
  # HealthCheckTargets describes endpoints to health-check when responding to
2229
2319
  # Routing Policy queries. Only the healthy endpoints will be included in the
2230
- # response.
2320
+ # response. Set either `internal_load_balancer` or `external_endpoints`. Do not
2321
+ # set both.
2231
2322
  # Corresponds to the JSON property `healthCheckedTargets`
2232
2323
  # @return [Google::Apis::DnsV1::RrSetRoutingPolicyHealthCheckTargets]
2233
2324
  attr_accessor :health_checked_targets
@@ -2242,9 +2333,9 @@ module Google
2242
2333
  # @return [Array<String>]
2243
2334
  attr_accessor :rrdatas
2244
2335
 
2245
- # DNSSEC generated signatures for all the `rrdata` within this item. Note that
2246
- # if health checked targets are provided for DNSSEC enabled zones, there's a
2247
- # restriction of 1 IP address per item.
2336
+ # DNSSEC generated signatures for all the `rrdata` within this item. When using
2337
+ # health-checked targets for DNSSEC-enabled zones, you can only use at most one
2338
+ # health-checked IP address per item.
2248
2339
  # Corresponds to the JSON property `signatureRrdatas`
2249
2340
  # @return [Array<String>]
2250
2341
  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.43.0"
19
+ GEM_VERSION = "0.49.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.15.0"
22
+ GENERATOR_VERSION = "0.18.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20240531"
25
+ REVISION = "20250828"
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
 
@@ -631,6 +643,7 @@ module Google
631
643
  class ManagedZoneForwardingConfigNameServerTarget
632
644
  # @private
633
645
  class Representation < Google::Apis::Core::JsonRepresentation
646
+ property :domain_name, as: 'domainName'
634
647
  property :forwarding_path, as: 'forwardingPath'
635
648
  property :ipv4_address, as: 'ipv4Address'
636
649
  property :ipv6_address, as: 'ipv6Address'
@@ -796,6 +809,8 @@ module Google
796
809
  property :alternative_name_server_config, as: 'alternativeNameServerConfig', class: Google::Apis::DnsV1::PolicyAlternativeNameServerConfig, decorator: Google::Apis::DnsV1::PolicyAlternativeNameServerConfig::Representation
797
810
 
798
811
  property :description, as: 'description'
812
+ property :dns64_config, as: 'dns64Config', class: Google::Apis::DnsV1::PolicyDns64Config, decorator: Google::Apis::DnsV1::PolicyDns64Config::Representation
813
+
799
814
  property :enable_inbound_forwarding, as: 'enableInboundForwarding'
800
815
  property :enable_logging, as: 'enableLogging'
801
816
  property :id, :numeric_string => true, as: 'id'
@@ -825,6 +840,23 @@ module Google
825
840
  end
826
841
  end
827
842
 
843
+ class PolicyDns64Config
844
+ # @private
845
+ class Representation < Google::Apis::Core::JsonRepresentation
846
+ property :kind, as: 'kind'
847
+ property :scope, as: 'scope', class: Google::Apis::DnsV1::PolicyDns64ConfigScope, decorator: Google::Apis::DnsV1::PolicyDns64ConfigScope::Representation
848
+
849
+ end
850
+ end
851
+
852
+ class PolicyDns64ConfigScope
853
+ # @private
854
+ class Representation < Google::Apis::Core::JsonRepresentation
855
+ property :all_queries, as: 'allQueries'
856
+ property :kind, as: 'kind'
857
+ end
858
+ end
859
+
828
860
  class PolicyNetwork
829
861
  # @private
830
862
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -851,6 +883,7 @@ module Google
851
883
  property :gke_clusters_per_managed_zone, as: 'gkeClustersPerManagedZone'
852
884
  property :gke_clusters_per_policy, as: 'gkeClustersPerPolicy'
853
885
  property :gke_clusters_per_response_policy, as: 'gkeClustersPerResponsePolicy'
886
+ property :internet_health_checks_per_managed_zone, as: 'internetHealthChecksPerManagedZone'
854
887
  property :items_per_routing_policy, as: 'itemsPerRoutingPolicy'
855
888
  property :kind, as: 'kind'
856
889
  property :managed_zones, as: 'managedZones'
@@ -881,6 +914,7 @@ module Google
881
914
  class Representation < Google::Apis::Core::JsonRepresentation
882
915
  property :geo, as: 'geo', class: Google::Apis::DnsV1::RrSetRoutingPolicyGeoPolicy, decorator: Google::Apis::DnsV1::RrSetRoutingPolicyGeoPolicy::Representation
883
916
 
917
+ property :health_check, as: 'healthCheck'
884
918
  property :kind, as: 'kind'
885
919
  property :primary_backup, as: 'primaryBackup', class: Google::Apis::DnsV1::RrSetRoutingPolicyPrimaryBackupPolicy, decorator: Google::Apis::DnsV1::RrSetRoutingPolicyPrimaryBackupPolicy::Representation
886
920
 
@@ -914,6 +948,7 @@ module Google
914
948
  class RrSetRoutingPolicyHealthCheckTargets
915
949
  # @private
916
950
  class Representation < Google::Apis::Core::JsonRepresentation
951
+ collection :external_endpoints, as: 'externalEndpoints'
917
952
  collection :internal_load_balancers, as: 'internalLoadBalancers', class: Google::Apis::DnsV1::RrSetRoutingPolicyLoadBalancerTarget, decorator: Google::Apis::DnsV1::RrSetRoutingPolicyLoadBalancerTarget::Representation
918
953
 
919
954
  end
@@ -705,7 +705,7 @@ module Google
705
705
  execute_or_queue_command(command, &block)
706
706
  end
707
707
 
708
- # Creates a new Policy.
708
+ # Creates a new policy.
709
709
  # @param [String] project
710
710
  # Identifies the project addressed by this request.
711
711
  # @param [Google::Apis::DnsV1::Policy] policy_object
@@ -742,7 +742,7 @@ module Google
742
742
  execute_or_queue_command(command, &block)
743
743
  end
744
744
 
745
- # Deletes a previously created Policy. Fails if the policy is still being
745
+ # Deletes a previously created policy. Fails if the policy is still being
746
746
  # referenced by a network.
747
747
  # @param [String] project
748
748
  # Identifies the project addressed by this request.
@@ -778,7 +778,7 @@ module Google
778
778
  execute_or_queue_command(command, &block)
779
779
  end
780
780
 
781
- # Fetches the representation of an existing Policy.
781
+ # Fetches the representation of an existing policy.
782
782
  # @param [String] project
783
783
  # Identifies the project addressed by this request.
784
784
  # @param [String] policy
@@ -815,7 +815,7 @@ module Google
815
815
  execute_or_queue_command(command, &block)
816
816
  end
817
817
 
818
- # Enumerates all Policies associated with a project.
818
+ # Enumerates all policies associated with a project.
819
819
  # @param [String] project
820
820
  # Identifies the project addressed by this request.
821
821
  # @param [Fixnum] max_results
@@ -853,7 +853,7 @@ module Google
853
853
  execute_or_queue_command(command, &block)
854
854
  end
855
855
 
856
- # Applies a partial update to an existing Policy.
856
+ # Applies a partial update to an existing policy.
857
857
  # @param [String] project
858
858
  # Identifies the project addressed by this request.
859
859
  # @param [String] policy
@@ -893,7 +893,7 @@ module Google
893
893
  execute_or_queue_command(command, &block)
894
894
  end
895
895
 
896
- # Updates an existing Policy.
896
+ # Updates an existing policy.
897
897
  # @param [String] project
898
898
  # Identifies the project addressed by this request.
899
899
  # @param [String] policy
@@ -1107,13 +1107,14 @@ module Google
1107
1107
  # decides how many results to return.
1108
1108
  # @param [String] name
1109
1109
  # Restricts the list to return only records with this fully qualified domain
1110
- # name.
1110
+ # name. Mutually exclusive with the `@code filter` field.
1111
1111
  # @param [String] page_token
1112
1112
  # Optional. A tag returned by a previous list request that was truncated. Use
1113
1113
  # this parameter to continue a previous list request.
1114
1114
  # @param [String] type
1115
1115
  # Restricts the list to return only records of this type. If present, the "name"
1116
- # parameter must also be present.
1116
+ # parameter must also be present. Mutually exclusive with the `@code filter`
1117
+ # field.
1117
1118
  # @param [String] fields
1118
1119
  # Selector specifying which fields to include in a partial response.
1119
1120
  # @param [String] quota_user
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.43.0
4
+ version: 0.49.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Google LLC
8
- autorequire:
9
8
  bindir: bin
10
9
  cert_chain: []
11
- date: 2024-06-09 00:00:00.000000000 Z
10
+ date: 1980-01-02 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.43.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-dns_v1/v0.49.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
@@ -68,15 +66,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
68
66
  requirements:
69
67
  - - ">="
70
68
  - !ruby/object:Gem::Version
71
- version: '2.7'
69
+ version: '3.1'
72
70
  required_rubygems_version: !ruby/object:Gem::Requirement
73
71
  requirements:
74
72
  - - ">="
75
73
  - !ruby/object:Gem::Version
76
74
  version: '0'
77
75
  requirements: []
78
- rubygems_version: 3.5.6
79
- signing_key:
76
+ rubygems_version: 3.6.9
80
77
  specification_version: 4
81
78
  summary: Simple REST client for Cloud DNS API V1
82
79
  test_files: []