Class: Google::Apis::DnsV2beta1::ManagedZoneDnsSecConfig
- Inherits:
-
Object
- Object
- Google::Apis::DnsV2beta1::ManagedZoneDnsSecConfig
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/dns_v2beta1/classes.rb,
generated/google/apis/dns_v2beta1/representations.rb,
generated/google/apis/dns_v2beta1/representations.rb
Instance Attribute Summary collapse
-
#default_key_specs ⇒ Array<Google::Apis::DnsV2beta1::DnsKeySpec>
Specifies parameters that will be used for generating initial DnsKeys for this ManagedZone.
-
#kind ⇒ String
Identifies what kind of resource this is.
-
#non_existence ⇒ String
Specifies the mechanism used to provide authenticated denial-of-existence responses.
-
#state ⇒ String
Specifies whether DNSSEC is enabled, and what mode it is in.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ManagedZoneDnsSecConfig
constructor
A new instance of ManagedZoneDnsSecConfig.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ ManagedZoneDnsSecConfig
Returns a new instance of ManagedZoneDnsSecConfig
454 455 456 |
# File 'generated/google/apis/dns_v2beta1/classes.rb', line 454 def initialize(**args) update!(**args) end |
Instance Attribute Details
#default_key_specs ⇒ Array<Google::Apis::DnsV2beta1::DnsKeySpec>
Specifies parameters that will be used for generating initial DnsKeys for this
ManagedZone. Output only while state is not OFF.
Corresponds to the JSON property defaultKeySpecs
435 436 437 |
# File 'generated/google/apis/dns_v2beta1/classes.rb', line 435 def default_key_specs @default_key_specs end |
#kind ⇒ String
Identifies what kind of resource this is. Value: the fixed string "dns#
managedZoneDnsSecConfig".
Corresponds to the JSON property kind
441 442 443 |
# File 'generated/google/apis/dns_v2beta1/classes.rb', line 441 def kind @kind end |
#non_existence ⇒ String
Specifies the mechanism used to provide authenticated denial-of-existence
responses. Output only while state is not OFF.
Corresponds to the JSON property nonExistence
447 448 449 |
# File 'generated/google/apis/dns_v2beta1/classes.rb', line 447 def non_existence @non_existence end |
#state ⇒ String
Specifies whether DNSSEC is enabled, and what mode it is in.
Corresponds to the JSON property state
452 453 454 |
# File 'generated/google/apis/dns_v2beta1/classes.rb', line 452 def state @state end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
459 460 461 462 463 464 |
# File 'generated/google/apis/dns_v2beta1/classes.rb', line 459 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 |