class Google::Apis::DnsV1::ManagedZoneDnsSecConfig
Attributes
default_key_specs[RW]
Specifies parameters for generating initial DnsKeys for this ManagedZone
. Can only be changed while the state is OFF. Corresponds to the JSON property `defaultKeySpecs` @return [Array<Google::Apis::DnsV1::DnsKeySpec>]
kind[RW]
Corresponds to the JSON property `kind` @return [String]
non_existence[RW]
Specifies the mechanism for authenticated denial-of-existence responses. Can only be changed while the state is OFF. Corresponds to the JSON property `nonExistence` @return [String]
state[RW]
Specifies whether DNSSEC is enabled, and what mode it is in. Corresponds to the JSON property `state` @return [String]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/dns_v1/classes.rb, line 965 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 970 def update!(**args) @default_key_specs = args[:default_key_specs] if args.key?(:default_key_specs) @kind = args[:kind] if args.key?(:kind) @non_existence = args[:non_existence] if args.key?(:non_existence) @state = args[:state] if args.key?(:state) end