Skip to main content

registrations_google_domains_dns_records

Creates, updates, deletes, gets or lists a registrations_google_domains_dns_records resource.

Overview

Nameregistrations_google_domains_dns_records
TypeResource
Idgoogle.domains.registrations_google_domains_dns_records

Fields

The following fields are returned by SELECT queries:

Successful response

NameDatatypeDescription
nextPageTokenstringWhen present, there are more results to retrieve. Set page_token to this value on a subsequent call to get the next page of results.
rrsetarrayThe resource record set resources (DNS Zone records).

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
retrieve_google_domains_dns_recordsselectprojectsId, locationsId, registrationsIdpageSize, pageTokenLists the DNS records from the Google Domains DNS zone for domains that use the deprecated google_domains_dns in the Registration's dns_settings.

Parameters

Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.

NameDatatypeDescription
locationsIdstring
projectsIdstring
registrationsIdstring
pageSizeinteger (int32)
pageTokenstring

SELECT examples

Lists the DNS records from the Google Domains DNS zone for domains that use the deprecated google_domains_dns in the Registration's dns_settings.

SELECT
nextPageToken,
rrset
FROM google.domains.registrations_google_domains_dns_records
WHERE projectsId = '{{ projectsId }}' -- required
AND locationsId = '{{ locationsId }}' -- required
AND registrationsId = '{{ registrationsId }}' -- required
AND pageSize = '{{ pageSize }}'
AND pageToken = '{{ pageToken }}';