registrations_google_domains_dns_records
Creates, updates, deletes, gets or lists a registrations_google_domains_dns_records resource.
Overview
| Name | registrations_google_domains_dns_records |
| Type | Resource |
| Id | google.domains.registrations_google_domains_dns_records |
Fields
The following fields are returned by SELECT queries:
- retrieve_google_domains_dns_records
| Name | Datatype | Description |
|---|---|---|
nextPageToken | string | When present, there are more results to retrieve. Set page_token to this value on a subsequent call to get the next page of results. |
rrset | array | The resource record set resources (DNS Zone records). |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
retrieve_google_domains_dns_records | select | projectsId, locationsId, registrationsId | pageSize, pageToken | 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. |
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.
| Name | Datatype | Description |
|---|---|---|
locationsId | string | |
projectsId | string | |
registrationsId | string | |
pageSize | integer (int32) | |
pageToken | string |
SELECT examples
- retrieve_google_domains_dns_records
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 }}'
;