GoogleApi.Domains.V1beta1.Model.Registration (google_api_domains v0.12.3)
View SourceThe 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.V1beta1.Model.ContactSettings.t, default:nil) - Required. Settings for contact information linked to theRegistration. You cannot update these with theUpdateRegistrationmethod. To update these settings, use theConfigureContactSettingsmethod. -
createTime(type:DateTime.t, default:nil) - Output only. The creation timestamp of theRegistrationresource. -
dnsSettings(type:GoogleApi.Domains.V1beta1.Model.DnsSettings.t, default:nil) - Settings controlling the DNS configuration of theRegistration. You cannot update these with theUpdateRegistrationmethod. To update these settings, use theConfigureDnsSettingsmethod. -
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 theRegistrationthat require attention. -
labels(type:map(), default:nil) - Set of labels associated with theRegistration. -
managementSettings(type:GoogleApi.Domains.V1beta1.Model.ManagementSettings.t, default:nil) - Settings for management of theRegistration, including renewal, billing, and transfer. You cannot update these with theUpdateRegistrationmethod. To update these settings, use theConfigureManagementSettingsmethod. -
name(type:String.t, default:nil) - Output only. Name of theRegistrationresource, in the formatprojects/*/locations/*/registrations/. -
pendingContactSettings(type:GoogleApi.Domains.V1beta1.Model.ContactSettings.t, default:nil) - Output only. Pending contact settings for theRegistration. Updates to thecontact_settingsfield that change itsregistrant_contactorprivacyfields require email confirmation by theregistrant_contactbefore taking effect. This field is set only if there are pending updates to thecontact_settingsthat have not been confirmed. To confirm the changes, theregistrant_contactmust follow the instructions in the email they receive. -
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.privacyfield that thisRegistrationsupports. -
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.V1beta1.Model.Registration{ contactSettings: GoogleApi.Domains.V1beta1.Model.ContactSettings.t() | nil, createTime: DateTime.t() | nil, dnsSettings: GoogleApi.Domains.V1beta1.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.V1beta1.Model.ManagementSettings.t() | nil, name: String.t() | nil, pendingContactSettings: GoogleApi.Domains.V1beta1.Model.ContactSettings.t() | nil, registerFailureReason: String.t() | nil, state: String.t() | nil, supportedPrivacy: [String.t()] | nil, transferFailureReason: String.t() | nil }