Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions api_names_out.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -250518,6 +250518,7 @@
"/dns:v1/dns.resourceRecordSets.get/project": project
"/dns:v1/dns.resourceRecordSets.get/type": type
"/dns:v1/dns.resourceRecordSets.list": list_resource_record_sets
"/dns:v1/dns.resourceRecordSets.list/filter": filter
"/dns:v1/dns.resourceRecordSets.list/managedZone": managed_zone
"/dns:v1/dns.resourceRecordSets.list/maxResults": max_results
"/dns:v1/dns.resourceRecordSets.list/name": name
Expand Down
4 changes: 4 additions & 0 deletions generated/google-apis-dns_v1/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Release history for google-apis-dns_v1

### v0.51.0 (2026-03-01)

* Regenerated from discovery document revision 20260219

### v0.50.0 (2026-01-18)

* Regenerated from discovery document revision 20260113
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,13 +16,13 @@ module Google
module Apis
module DnsV1
# Version of the google-apis-dns_v1 gem
GEM_VERSION = "0.50.0"
GEM_VERSION = "0.51.0"

# Version of the code generator used to generate this client
GENERATOR_VERSION = "0.18.0"

# Revision of the discovery document this client was generated from
REVISION = "20260113"
REVISION = "20260219"
end
end
end
12 changes: 11 additions & 1 deletion generated/google-apis-dns_v1/lib/google/apis/dns_v1/service.rb
Original file line number Diff line number Diff line change
Expand Up @@ -1102,6 +1102,15 @@ def get_resource_record_set(project, managed_zone, name, type, client_operation_
# @param [String] managed_zone
# Identifies the managed zone addressed by this request. Can be the managed zone
# name or ID.
# @param [String] filter
# Specify a filter expression to view records that exactly match the specified
# domain. Both the name and type parameters are not supported when you use
# filter and must be omitted. Your filter expression must conform to AIP-160 and
# you must specify a domain in the name field. Optionally, you can include the
# type field to filter records by type. You can also include the has_suffix
# function to view records that match by domain suffix. Examples: - name="
# example.com." - name="example.com." AND type="A" - name=has_suffix("example.
# com.") - name=has_suffix("example.com.") AND type="A"
# @param [Fixnum] max_results
# Optional. Maximum number of results to be returned. If unspecified, the server
# decides how many results to return.
Expand Down Expand Up @@ -1132,12 +1141,13 @@ def get_resource_record_set(project, managed_zone, name, type, client_operation_
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
# @raise [Google::Apis::AuthorizationError] Authorization is required
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)
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)
command = make_simple_command(:get, 'dns/v1/projects/{project}/managedZones/{managedZone}/rrsets', options)
command.response_representation = Google::Apis::DnsV1::ListResourceRecordSetsResponse::Representation
command.response_class = Google::Apis::DnsV1::ListResourceRecordSetsResponse
command.params['project'] = project unless project.nil?
command.params['managedZone'] = managed_zone unless managed_zone.nil?
command.query['filter'] = filter unless filter.nil?
command.query['maxResults'] = max_results unless max_results.nil?
command.query['name'] = name unless name.nil?
command.query['pageToken'] = page_token unless page_token.nil?
Expand Down