Class: Google::Apis::DomainsV1alpha2::ConfigureManagementSettingsRequest
- Inherits:
-
Object
- Object
- Google::Apis::DomainsV1alpha2::ConfigureManagementSettingsRequest
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/domains_v1alpha2/classes.rb,
lib/google/apis/domains_v1alpha2/representations.rb,
lib/google/apis/domains_v1alpha2/representations.rb
Overview
Request for the ConfigureManagementSettings
method.
Instance Attribute Summary collapse
-
#management_settings ⇒ Google::Apis::DomainsV1alpha2::ManagementSettings
Defines renewal, billing, and transfer settings for a
Registration
. -
#update_mask ⇒ String
Required.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ConfigureManagementSettingsRequest
constructor
A new instance of ConfigureManagementSettingsRequest.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ ConfigureManagementSettingsRequest
Returns a new instance of ConfigureManagementSettingsRequest.
316 317 318 |
# File 'lib/google/apis/domains_v1alpha2/classes.rb', line 316 def initialize(**args) update!(**args) end |
Instance Attribute Details
#management_settings ⇒ Google::Apis::DomainsV1alpha2::ManagementSettings
Defines renewal, billing, and transfer settings for a Registration
.
Corresponds to the JSON property managementSettings
307 308 309 |
# File 'lib/google/apis/domains_v1alpha2/classes.rb', line 307 def management_settings @management_settings end |
#update_mask ⇒ String
Required. The field mask describing which fields to update as a comma-
separated list. For example, if only the transfer lock is being updated, the
update_mask
is "transfer_lock_state"
.
Corresponds to the JSON property updateMask
314 315 316 |
# File 'lib/google/apis/domains_v1alpha2/classes.rb', line 314 def update_mask @update_mask end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
321 322 323 324 |
# File 'lib/google/apis/domains_v1alpha2/classes.rb', line 321 def update!(**args) @management_settings = args[:management_settings] if args.key?(:management_settings) @update_mask = args[:update_mask] if args.key?(:update_mask) end |