registrations_importable_domains
Creates, updates, deletes, gets or lists a registrations_importable_domains
resource.
Overview
Name | registrations_importable_domains |
Type | Resource |
Id | google.domains.registrations_importable_domains |
Fields
The following fields are returned by SELECT
queries:
- retrieve_importable_domains
Successful response
Name | Datatype | Description |
---|---|---|
domains | array | A list of domains that the calling user manages in Google Domains. |
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. |
Methods
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
retrieve_importable_domains | select | projectsId , locationsId | pageSize , pageToken | 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. |
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 | |
pageSize | integer (int32) | |
pageToken | string |
SELECT
examples
- retrieve_importable_domains
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 }}';