Class: Google::Apis::DomainsV1alpha2::ConfigureManagementSettingsRequest

Inherits:
Object
  • Object
show all
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

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ ConfigureManagementSettingsRequest

Returns a new instance of ConfigureManagementSettingsRequest.



291
292
293
# File 'lib/google/apis/domains_v1alpha2/classes.rb', line 291

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#management_settingsGoogle::Apis::DomainsV1alpha2::ManagementSettings

Defines renewal, billing, and transfer settings for a Registration. Corresponds to the JSON property managementSettings



282
283
284
# File 'lib/google/apis/domains_v1alpha2/classes.rb', line 282

def management_settings
  @management_settings
end

#update_maskString

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

Returns:

  • (String)


289
290
291
# File 'lib/google/apis/domains_v1alpha2/classes.rb', line 289

def update_mask
  @update_mask
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



296
297
298
299
# File 'lib/google/apis/domains_v1alpha2/classes.rb', line 296

def update!(**args)
  @management_settings = args[:management_settings] if args.key?(:management_settings)
  @update_mask = args[:update_mask] if args.key?(:update_mask)
end