class Google::Apis::DomainsV1beta1::CustomDns
Configuration for an arbitrary DNS provider.
Attributes
ds_records[RW]
The list of DS records for this domain, which are used to enable DNSSEC. The domain's DNS provider can provide the values to set here. If this field is empty, DNSSEC is disabled. Corresponds to the JSON property `dsRecords` @return [Array<Google::Apis::DomainsV1beta1::DsRecord>]
name_servers[RW]
Required. A list of name servers that store the DNS zone for this domain. Each name server is a domain name, with Unicode domain names expressed in Punycode format. Corresponds to the JSON property `nameServers` @return [Array<String>]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/domains_v1beta1/classes.rb, line 403 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_v1beta1/classes.rb, line 408 def update!(**args) @ds_records = args[:ds_records] if args.key?(:ds_records) @name_servers = args[:name_servers] if args.key?(:name_servers) end