google-apis-dns_v1beta2 0.53.0 → 0.55.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: 85806d403421de786537bfa67643f99d34229a91e525cb81cb4b9806a2f01f49
4
- data.tar.gz: 2918e6ef6b23d97036b22552514a794f01b4f0b0047088f3d61c4a9621723732
3
+ metadata.gz: fed64b4ea974a7ea2c6fb20c6961275d270f83957440095c9caa6b46e7b8d30a
4
+ data.tar.gz: 25015b8078f94746996d24ec94eb2cb9a16fb6f97e862f2115d77a13c8909eed
5
5
  SHA512:
6
- metadata.gz: e54da4d750330b99908122372b8aeb3b55f4106d6d09c62be071e8aa2a285189a780431629150b5670637187ef0e146a54e9a8bbd44f699b2715a57cbf433093
7
- data.tar.gz: f279b4c3f021fdc1d8b332cd6506efb2da681f0b12e28266a610ccb75e150218fe9ef01c27ebe76d2a221ab8471d3dc24079ee8afe02df4972254ff13e681643
6
+ metadata.gz: 232e27b8d2da9934c8820e8ef64f98b034373e913f790581c5702e1e0a0f3102a936efeb5e936dcaf9973a86c0490294094fbdcb74321e7126aa31dc68ee027a
7
+ data.tar.gz: 4d99c3d7bd386e00627dbbe1bf88deca8dcb94eb5c5e79b60fe35dab21a4ace95cb7a0850731c441c83588157d6500f71c050f72a8dcd9d08ac0efa2f89c9696
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-dns_v1beta2
2
2
 
3
+ ### v0.55.0 (2026-03-15)
4
+
5
+ * Regenerated from discovery document revision 20260219
6
+
7
+ ### v0.54.0 (2026-01-18)
8
+
9
+ * Regenerated from discovery document revision 20260113
10
+
3
11
  ### v0.53.0 (2025-09-07)
4
12
 
5
13
  * Regenerated from discovery document revision 20250828
@@ -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.53.0"
19
+ GEM_VERSION = "0.55.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.18.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20250828"
25
+ REVISION = "20260219"
26
26
  end
27
27
  end
28
28
  end
@@ -1100,19 +1100,28 @@ module Google
1100
1100
  # @param [String] managed_zone
1101
1101
  # Identifies the managed zone addressed by this request. Can be the managed zone
1102
1102
  # name or ID.
1103
+ # @param [String] filter
1104
+ # Specify a filter expression to view records that exactly match the specified
1105
+ # domain. Both the name and type parameters are not supported when you use
1106
+ # filter and must be omitted. Your filter expression must conform to AIP-160 and
1107
+ # you must specify a domain in the name field. Optionally, you can include the
1108
+ # type field to filter records by type. You can also include the has_suffix
1109
+ # function to view records that match by domain suffix. Examples: - name="
1110
+ # example.com." - name="example.com." AND type="A" - name=has_suffix("example.
1111
+ # com.") - name=has_suffix("example.com.") AND type="A"
1103
1112
  # @param [Fixnum] max_results
1104
1113
  # Optional. Maximum number of results to be returned. If unspecified, the server
1105
1114
  # decides how many results to return.
1106
1115
  # @param [String] name
1107
- # Restricts the list to return only records with this fully qualified domain
1108
- # name. Mutually exclusive with the `@code filter` field.
1116
+ # Specify a fully qualified domain name to view only those records. The name
1117
+ # parameter is not supported and must be omitted when you use filter.
1109
1118
  # @param [String] page_token
1110
1119
  # Optional. A tag returned by a previous list request that was truncated. Use
1111
1120
  # this parameter to continue a previous list request.
1112
1121
  # @param [String] type
1113
- # Restricts the list to return only records of this type. If present, the "name"
1114
- # parameter must also be present. Mutually exclusive with the `@code filter`
1115
- # field.
1122
+ # Specify a record type to view only those records. You must also specify the
1123
+ # name parameter. The type parameter is not supported and must be omitted when
1124
+ # you use filter.
1116
1125
  # @param [String] fields
1117
1126
  # Selector specifying which fields to include in a partial response.
1118
1127
  # @param [String] quota_user
@@ -1130,12 +1139,13 @@ module Google
1130
1139
  # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
1131
1140
  # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
1132
1141
  # @raise [Google::Apis::AuthorizationError] Authorization is required
1133
- def list_resource_record_sets(project, managed_zone, max_results: nil, name: nil, page_token: nil, type: nil, fields: nil, quota_user: nil, options: nil, &block)
1142
+ def list_resource_record_sets(project, managed_zone, filter: nil, max_results: nil, name: nil, page_token: nil, type: nil, fields: nil, quota_user: nil, options: nil, &block)
1134
1143
  command = make_simple_command(:get, 'dns/v1beta2/projects/{project}/managedZones/{managedZone}/rrsets', options)
1135
1144
  command.response_representation = Google::Apis::DnsV1beta2::ResourceRecordSetsListResponse::Representation
1136
1145
  command.response_class = Google::Apis::DnsV1beta2::ResourceRecordSetsListResponse
1137
1146
  command.params['project'] = project unless project.nil?
1138
1147
  command.params['managedZone'] = managed_zone unless managed_zone.nil?
1148
+ command.query['filter'] = filter unless filter.nil?
1139
1149
  command.query['maxResults'] = max_results unless max_results.nil?
1140
1150
  command.query['name'] = name unless name.nil?
1141
1151
  command.query['pageToken'] = page_token unless page_token.nil?
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-dns_v1beta2
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.53.0
4
+ version: 0.55.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Google LLC
@@ -57,7 +57,7 @@ licenses:
57
57
  metadata:
58
58
  bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
59
59
  changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-dns_v1beta2/CHANGELOG.md
60
- documentation_uri: https://googleapis.dev/ruby/google-apis-dns_v1beta2/v0.53.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-dns_v1beta2/v0.55.0
61
61
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-dns_v1beta2
62
62
  rdoc_options: []
63
63
  require_paths: