class Google::Apis::DnsV1::ManagedZoneForwardingConfig

Attributes

kind[RW]

Corresponds to the JSON property `kind` @return [String]

target_name_servers[RW]

List of target name servers to forward to. Cloud DNS selects the best available name server if more than one target is given. Corresponds to the JSON property `targetNameServers` @return [Array<Google::Apis::DnsV1::ManagedZoneForwardingConfigNameServerTarget>]

Public Class Methods

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

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/dns_v1/classes.rb, line 998
def update!(**args)
  @kind = args[:kind] if args.key?(:kind)
  @target_name_servers = args[:target_name_servers] if args.key?(:target_name_servers)
end