Skip to main content

registrations_google_domains_forwarding_config

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

Overview

Nameregistrations_google_domains_forwarding_config
TypeResource
Idgoogle.domains.registrations_google_domains_forwarding_config

Fields

The following fields are returned by SELECT queries:

Successful response

NameDatatypeDescription
domainForwardingsarrayThe 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.
emailForwardingsarrayThe 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:

NameAccessible byRequired ParamsOptional ParamsDescription
retrieve_google_domains_forwarding_configselectprojectsId, locationsId, registrationsIdLists 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.

NameDatatypeDescription
locationsIdstring
projectsIdstring
registrationsIdstring

SELECT examples

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;