Class: Google::Apis::DomainsV1beta1::DsRecord

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/domains_v1beta1/classes.rb,
lib/google/apis/domains_v1beta1/representations.rb,
lib/google/apis/domains_v1beta1/representations.rb

Overview

Defines a Delegation Signer (DS) record, which is needed to enable DNSSEC for a domain. It contains a digest (hash) of a DNSKEY record that must be present in the domain's DNS zone.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ DsRecord

Returns a new instance of DsRecord.



538
539
540
# File 'lib/google/apis/domains_v1beta1/classes.rb', line 538

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#algorithmString

The algorithm used to generate the referenced DNSKEY. Corresponds to the JSON property algorithm

Returns:

  • (String)


521
522
523
# File 'lib/google/apis/domains_v1beta1/classes.rb', line 521

def algorithm
  @algorithm
end

#digestString

The digest generated from the referenced DNSKEY. Corresponds to the JSON property digest

Returns:

  • (String)


526
527
528
# File 'lib/google/apis/domains_v1beta1/classes.rb', line 526

def digest
  @digest
end

#digest_typeString

The hash function used to generate the digest of the referenced DNSKEY. Corresponds to the JSON property digestType

Returns:

  • (String)


531
532
533
# File 'lib/google/apis/domains_v1beta1/classes.rb', line 531

def digest_type
  @digest_type
end

#key_tagFixnum

The key tag of the record. Must be set in range 0 -- 65535. Corresponds to the JSON property keyTag

Returns:

  • (Fixnum)


536
537
538
# File 'lib/google/apis/domains_v1beta1/classes.rb', line 536

def key_tag
  @key_tag
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



543
544
545
546
547
548
# File 'lib/google/apis/domains_v1beta1/classes.rb', line 543

def update!(**args)
  @algorithm = args[:algorithm] if args.key?(:algorithm)
  @digest = args[:digest] if args.key?(:digest)
  @digest_type = args[:digest_type] if args.key?(:digest_type)
  @key_tag = args[:key_tag] if args.key?(:key_tag)
end