class Google::Apis::DomainsV1alpha2::ConfigureDnsSettingsRequest

Request for the `ConfigureDnsSettings` method.

Attributes

dns_settings[RW]

Defines the DNS configuration of a `Registration`, including name servers, DNSSEC, and glue records. Corresponds to the JSON property `dnsSettings` @return [Google::Apis::DomainsV1alpha2::DnsSettings]

update_mask[RW]

Required. The field mask describing which fields to update as a comma- separated list. For example, if only the name servers are being updated for an existing Custom DNS configuration, the `update_mask` would be `“custom_dns. name_servers”`. When changing the DNS provider from one type to another, pass the new provider's field name as part of the field mask. For example, when changing from a Google Domains DNS configuration to a Custom DNS configuration, the `update_mask` would be `“custom_dns”`. // Corresponds to the JSON property `updateMask` @return [String]

validate_only[RW]

Validate the request without actually updating the DNS settings. Corresponds to the JSON property `validateOnly` @return [Boolean]

validate_only?[RW]

Validate the request without actually updating the DNS settings. Corresponds to the JSON property `validateOnly` @return [Boolean]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/domains_v1alpha2/classes.rb, line 258
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/domains_v1alpha2/classes.rb, line 263
def update!(**args)
  @dns_settings = args[:dns_settings] if args.key?(:dns_settings)
  @update_mask = args[:update_mask] if args.key?(:update_mask)
  @validate_only = args[:validate_only] if args.key?(:validate_only)
end