google-apis-dns_v1 0.50.0 → 0.52.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 +8 -0
- data/lib/google/apis/dns_v1/gem_version.rb +2 -2
- data/lib/google/apis/dns_v1/service.rb +16 -6
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 4d2ec33e169f685bfb7ad5490f275f6e31d986724c7d706d67452420eebd15b1
|
|
4
|
+
data.tar.gz: 3d86ddeed0c6e74ab978fceedda8c57fe078bdd6f594ab7c46b332273b405239
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 0b8e6351f4e72d10642f289f4159be83dfa83e3524ad073559509efbdb14714506f5fc12d834f6eb010722c941f47fb414f59b495dc6fc6dc51028ebb7e7739e
|
|
7
|
+
data.tar.gz: c35f889abf003f660e230b85d4e81bd858fd0c67f997b149b3430aac3dd1ecffefdaba0b9d8a77306f417cbe08916f32f8ccbd7dee99cf84e51eead6123e5010
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# Release history for google-apis-dns_v1
|
|
2
2
|
|
|
3
|
+
### v0.52.0 (2026-04-19)
|
|
4
|
+
|
|
5
|
+
* Regenerated from discovery document revision 20260402
|
|
6
|
+
|
|
7
|
+
### v0.51.0 (2026-03-01)
|
|
8
|
+
|
|
9
|
+
* Regenerated from discovery document revision 20260219
|
|
10
|
+
|
|
3
11
|
### v0.50.0 (2026-01-18)
|
|
4
12
|
|
|
5
13
|
* Regenerated from discovery document revision 20260113
|
|
@@ -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.52.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 = "
|
|
25
|
+
REVISION = "20260402"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -1102,19 +1102,28 @@ module Google
|
|
|
1102
1102
|
# @param [String] managed_zone
|
|
1103
1103
|
# Identifies the managed zone addressed by this request. Can be the managed zone
|
|
1104
1104
|
# name or ID.
|
|
1105
|
+
# @param [String] filter
|
|
1106
|
+
# Specify a filter expression to view records that exactly match the specified
|
|
1107
|
+
# domain. Both the `name` and `type` parameters are not supported and must be
|
|
1108
|
+
# omitted when you use `filter`. Your `filter` expression must conform to AIP-
|
|
1109
|
+
# 160 and you must specify a domain in the `name` field. Optionally, you can
|
|
1110
|
+
# include the `type` field to filter records by type. You can also include the `
|
|
1111
|
+
# has_suffix` function to view records that match by domain suffix. Examples: * `
|
|
1112
|
+
# name`="example.com." * `name`="example.com." AND type="A" * `name`=`has_suffix`
|
|
1113
|
+
# ("example.com.") * `name`=`has_suffix`("example.com.") AND type="A"
|
|
1105
1114
|
# @param [Fixnum] max_results
|
|
1106
1115
|
# Optional. Maximum number of results to be returned. If unspecified, the server
|
|
1107
1116
|
# decides how many results to return.
|
|
1108
1117
|
# @param [String] name
|
|
1109
|
-
# Specify a fully qualified domain name to view only those records. The name
|
|
1110
|
-
# parameter is not supported and must be omitted when you use filter
|
|
1118
|
+
# Specify a fully qualified domain name to view only those records. The `name`
|
|
1119
|
+
# parameter is not supported and must be omitted when you use `filter`.
|
|
1111
1120
|
# @param [String] page_token
|
|
1112
1121
|
# Optional. A tag returned by a previous list request that was truncated. Use
|
|
1113
1122
|
# this parameter to continue a previous list request.
|
|
1114
1123
|
# @param [String] type
|
|
1115
|
-
# Specify a record type to view only those records. You must also specify the
|
|
1116
|
-
# name parameter. The type parameter is not supported and must be omitted
|
|
1117
|
-
# you use filter
|
|
1124
|
+
# Specify a record type to view only those records. You must also specify the `
|
|
1125
|
+
# name` parameter. The `type` parameter is not supported and must be omitted
|
|
1126
|
+
# when you use `filter`.
|
|
1118
1127
|
# @param [String] fields
|
|
1119
1128
|
# Selector specifying which fields to include in a partial response.
|
|
1120
1129
|
# @param [String] quota_user
|
|
@@ -1132,12 +1141,13 @@ module Google
|
|
|
1132
1141
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
|
1133
1142
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
|
1134
1143
|
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
|
1135
|
-
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)
|
|
1144
|
+
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)
|
|
1136
1145
|
command = make_simple_command(:get, 'dns/v1/projects/{project}/managedZones/{managedZone}/rrsets', options)
|
|
1137
1146
|
command.response_representation = Google::Apis::DnsV1::ListResourceRecordSetsResponse::Representation
|
|
1138
1147
|
command.response_class = Google::Apis::DnsV1::ListResourceRecordSetsResponse
|
|
1139
1148
|
command.params['project'] = project unless project.nil?
|
|
1140
1149
|
command.params['managedZone'] = managed_zone unless managed_zone.nil?
|
|
1150
|
+
command.query['filter'] = filter unless filter.nil?
|
|
1141
1151
|
command.query['maxResults'] = max_results unless max_results.nil?
|
|
1142
1152
|
command.query['name'] = name unless name.nil?
|
|
1143
1153
|
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_v1
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.52.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_v1/CHANGELOG.md
|
|
60
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-dns_v1/v0.
|
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-dns_v1/v0.52.0
|
|
61
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-dns_v1
|
|
62
62
|
rdoc_options: []
|
|
63
63
|
require_paths:
|