class Google::Apis::DomainsV1alpha2::ConfigureDnsSettingsRequest
Request for the `ConfigureDnsSettings` method.
Attributes
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]
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 the request without actually updating the DNS settings. Corresponds to the JSON property `validateOnly` @return [Boolean]
Validate the request without actually updating the DNS settings. Corresponds to the JSON property `validateOnly` @return [Boolean]
Public Class Methods
# File lib/google/apis/domains_v1alpha2/classes.rb, line 258 def initialize(**args) update!(**args) end
Public Instance Methods
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