Skip to main content

registrations_importable_domains

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

Overview

Nameregistrations_importable_domains
TypeResource
Idgoogle.domains.registrations_importable_domains

Fields

The following fields are returned by SELECT queries:

Successful response

NameDatatypeDescription
domainsarrayA list of domains that the calling user manages in Google Domains.
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.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
retrieve_importable_domainsselectprojectsId, locationsIdpageSize, pageTokenDeprecated: For more information, see Cloud Domains feature deprecation Lists domain names from Google Domains that can be imported to Cloud Domains using the ImportDomain method. Since individual users can own domains in Google Domains, the list of domains returned depends on the individual user making the call. Domains already managed by Cloud Domains are not returned.

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
pageSizeinteger (int32)
pageTokenstring

SELECT examples

Deprecated: For more information, see Cloud Domains feature deprecation Lists domain names from Google Domains that can be imported to Cloud Domains using the ImportDomain method. Since individual users can own domains in Google Domains, the list of domains returned depends on the individual user making the call. Domains already managed by Cloud Domains are not returned.

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