Class: Google::Apis::DomainsV1::TransferDomainRequest
- Inherits:
-
Object
- Object
- Google::Apis::DomainsV1::TransferDomainRequest
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/domains_v1/classes.rb,
lib/google/apis/domains_v1/representations.rb,
lib/google/apis/domains_v1/representations.rb
Overview
Request for the TransferDomain method.
Instance Attribute Summary collapse
-
#authorization_code ⇒ Google::Apis::DomainsV1::AuthorizationCode
Defines an authorization code.
-
#contact_notices ⇒ Array<String>
The list of contact notices that you acknowledge.
-
#registration ⇒ Google::Apis::DomainsV1::Registration
The
Registrationresource facilitates managing and configuring domain name registrations. -
#validate_only ⇒ Boolean
(also: #validate_only?)
Validate the request without actually transferring the domain.
-
#yearly_price ⇒ Google::Apis::DomainsV1::Money
Represents an amount of money with its currency type.
Instance Method Summary collapse
-
#initialize(**args) ⇒ TransferDomainRequest
constructor
A new instance of TransferDomainRequest.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ TransferDomainRequest
Returns a new instance of TransferDomainRequest.
1611 1612 1613 |
# File 'lib/google/apis/domains_v1/classes.rb', line 1611 def initialize(**args) update!(**args) end |
Instance Attribute Details
#authorization_code ⇒ Google::Apis::DomainsV1::AuthorizationCode
Defines an authorization code.
Corresponds to the JSON property authorizationCode
1576 1577 1578 |
# File 'lib/google/apis/domains_v1/classes.rb', line 1576 def @authorization_code end |
#contact_notices ⇒ Array<String>
The list of contact notices that you acknowledge. The notices needed here
depend on the values specified in registration.contact_settings.
Corresponds to the JSON property contactNotices
1582 1583 1584 |
# File 'lib/google/apis/domains_v1/classes.rb', line 1582 def contact_notices @contact_notices end |
#registration ⇒ Google::Apis::DomainsV1::Registration
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. 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
.
Corresponds to the JSON property registration
1598 1599 1600 |
# File 'lib/google/apis/domains_v1/classes.rb', line 1598 def registration @registration end |
#validate_only ⇒ Boolean Also known as: validate_only?
Validate the request without actually transferring the domain.
Corresponds to the JSON property validateOnly
1603 1604 1605 |
# File 'lib/google/apis/domains_v1/classes.rb', line 1603 def validate_only @validate_only end |
#yearly_price ⇒ Google::Apis::DomainsV1::Money
Represents an amount of money with its currency type.
Corresponds to the JSON property yearlyPrice
1609 1610 1611 |
# File 'lib/google/apis/domains_v1/classes.rb', line 1609 def yearly_price @yearly_price end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1616 1617 1618 1619 1620 1621 1622 |
# File 'lib/google/apis/domains_v1/classes.rb', line 1616 def update!(**args) @authorization_code = args[:authorization_code] if args.key?(:authorization_code) @contact_notices = args[:contact_notices] if args.key?(:contact_notices) @registration = args[:registration] if args.key?(:registration) @validate_only = args[:validate_only] if args.key?(:validate_only) @yearly_price = args[:yearly_price] if args.key?(:yearly_price) end |