View Source GoogleApi.Domains.V1alpha2.Model.Registration (google_api_domains v0.12.2)
The Registration
resource facilitates managing and configuring domain name registrations. There are several ways to create a new Registration
resource: To create a new Registration
resource, find a suitable domain name by calling the SearchDomains
method with a query to see available domain name options. After choosing a name, call RetrieveRegisterParameters
to ensure availability and obtain information like pricing, which is needed to build a call to RegisterDomain
. Another way to create a new Registration
is to transfer an existing domain from another registrar (Deprecated: For more information, see Cloud Domains feature deprecation). First, go to the current registrar to unlock the domain for transfer and retrieve the domain's transfer authorization code. Then call RetrieveTransferParameters
to confirm that the domain is unlocked and to get values needed to build a call to TransferDomain
. Finally, you can create a new Registration
by importing an existing domain managed with Google Domains (Deprecated: For more information, see Cloud Domains feature deprecation). First, call RetrieveImportableDomains
to list domains to which the calling user has sufficient access. Then call ImportDomain
on any domain names you want to use with Cloud Domains.
Attributes
-
contactSettings
(type:GoogleApi.Domains.V1alpha2.Model.ContactSettings.t
, default:nil
) - Required. Settings for contact information linked to theRegistration
. You cannot update these with theUpdateRegistration
method. To update these settings, use theConfigureContactSettings
method. -
createTime
(type:DateTime.t
, default:nil
) - Output only. The creation timestamp of theRegistration
resource. -
dnsSettings
(type:GoogleApi.Domains.V1alpha2.Model.DnsSettings.t
, default:nil
) - Settings controlling the DNS configuration of theRegistration
. You cannot update these with theUpdateRegistration
method. To update these settings, use theConfigureDnsSettings
method. -
domainName
(type:String.t
, default:nil
) - Required. Immutable. The domain name. Unicode domain names must be expressed in Punycode format. -
domainProperties
(type:list(String.t)
, default:nil
) - Output only. Special properties of the domain. -
expireTime
(type:DateTime.t
, default:nil
) - Output only. The expiration timestamp of theRegistration
. -
issues
(type:list(String.t)
, default:nil
) - Output only. The set of issues with theRegistration
that require attention. -
labels
(type:map()
, default:nil
) - Set of labels associated with theRegistration
. -
managementSettings
(type:GoogleApi.Domains.V1alpha2.Model.ManagementSettings.t
, default:nil
) - Settings for management of theRegistration
, including renewal, billing, and transfer. You cannot update these with theUpdateRegistration
method. To update these settings, use theConfigureManagementSettings
method. -
name
(type:String.t
, default:nil
) - Output only. Name of theRegistration
resource, in the formatprojects/*/locations/*/registrations/
. -
pendingContactSettings
(type:GoogleApi.Domains.V1alpha2.Model.ContactSettings.t
, default:nil
) - Output only. Pending contact settings for theRegistration
. Updates to thecontact_settings
field that change itsregistrant_contact
orprivacy
fields require email confirmation by theregistrant_contact
before taking effect. This field is set only if there are pending updates to thecontact_settings
that have not been confirmed. To confirm the changes, theregistrant_contact
must follow the instructions in the email they receive. -
provider
(type:String.t
, default:nil
) - Output only. Current domain management provider. -
registerFailureReason
(type:String.t
, default:nil
) - Output only. The reason the domain registration failed. Only set for domains in REGISTRATION_FAILED state. -
state
(type:String.t
, default:nil
) - Output only. The state of theRegistration
-
supportedPrivacy
(type:list(String.t)
, default:nil
) - Output only. Set of options for thecontact_settings.privacy
field that thisRegistration
supports. -
transferFailureReason
(type:String.t
, default:nil
) - Output only. Deprecated: For more information, see Cloud Domains feature deprecation. The reason the domain transfer failed. Only set for domains in TRANSFER_FAILED state.
Summary
Functions
Unwrap a decoded JSON object into its complex fields.
Types
@type t() :: %GoogleApi.Domains.V1alpha2.Model.Registration{ contactSettings: GoogleApi.Domains.V1alpha2.Model.ContactSettings.t() | nil, createTime: DateTime.t() | nil, dnsSettings: GoogleApi.Domains.V1alpha2.Model.DnsSettings.t() | nil, domainName: String.t() | nil, domainProperties: [String.t()] | nil, expireTime: DateTime.t() | nil, issues: [String.t()] | nil, labels: map() | nil, managementSettings: GoogleApi.Domains.V1alpha2.Model.ManagementSettings.t() | nil, name: String.t() | nil, pendingContactSettings: GoogleApi.Domains.V1alpha2.Model.ContactSettings.t() | nil, provider: String.t() | nil, registerFailureReason: String.t() | nil, state: String.t() | nil, supportedPrivacy: [String.t()] | nil, transferFailureReason: String.t() | nil }