registrations_transfer_parameters
Creates, updates, deletes, gets or lists a registrations_transfer_parameters resource.
Overview
| Name | registrations_transfer_parameters |
| Type | Resource |
| Id | google.domains.registrations_transfer_parameters |
Fields
The following fields are returned by SELECT queries:
- retrieve_transfer_parameters
| Name | Datatype | Description |
|---|---|---|
transferParameters | object | Parameters to use when calling the TransferDomain method. (id: TransferParameters) |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
retrieve_transfer_parameters | select | projectsId, locationsId | domainName | Deprecated: For more information, see Cloud Domains feature deprecation Gets parameters needed to transfer a domain name from another registrar to Cloud Domains. For domains already managed by Google Domains, use ImportDomain instead. Use the returned values to call TransferDomain. |
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 | |
domainName | string |
SELECT examples
- retrieve_transfer_parameters
Deprecated: For more information, see Cloud Domains feature deprecation Gets parameters needed to transfer a domain name from another registrar to Cloud Domains. For domains already managed by Google Domains, use ImportDomain instead. Use the returned values to call TransferDomain.
SELECT
transferParameters
FROM google.domains.registrations_transfer_parameters
WHERE projectsId = '{{ projectsId }}' -- required
AND locationsId = '{{ locationsId }}' -- required
AND domainName = '{{ domainName }}'
;