registrations_google_domains_forwarding_config
Creates, updates, deletes, gets or lists a registrations_google_domains_forwarding_config resource.
Overview
| Name | registrations_google_domains_forwarding_config |
| Type | Resource |
| Id | google.domains.registrations_google_domains_forwarding_config |
Fields
The following fields are returned by SELECT queries:
- retrieve_google_domains_forwarding_config
| Name | Datatype | Description |
|---|---|---|
domainForwardings | array | The list of domain forwarding configurations. A forwarding configuration might not work correctly if the required DNS records are not present in the domain's authoritative DNS zone. |
emailForwardings | array | The list of email forwarding configurations. A forwarding configuration might not work correctly if the required DNS records are not present in the domain's authoritative DNS zone. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
retrieve_google_domains_forwarding_config | select | projectsId, locationsId, registrationsId | Lists the deprecated domain and email forwarding configurations you set up in the deprecated Google Domains UI. The configuration is present only for domains with the google_domains_redirects_data_available set to true in the Registration's dns_settings. A forwarding configuration might not work correctly if required DNS records are not present in the domain's authoritative DNS Zone. |
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 |
SELECT examples
- retrieve_google_domains_forwarding_config
Lists the deprecated domain and email forwarding configurations you set up in the deprecated Google Domains UI. The configuration is present only for domains with the google_domains_redirects_data_available set to true in the Registration's dns_settings. A forwarding configuration might not work correctly if required DNS records are not present in the domain's authoritative DNS Zone.
SELECT
domainForwardings,
emailForwardings
FROM google.domains.registrations_google_domains_forwarding_config
WHERE projectsId = '{{ projectsId }}' -- required
AND locationsId = '{{ locationsId }}' -- required
AND registrationsId = '{{ registrationsId }}' -- required
;