Class: Google::Apis::DomainsV1::DsRecord

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/domains_v1/classes.rb,
lib/google/apis/domains_v1/representations.rb,
lib/google/apis/domains_v1/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.



607
608
609
# File 'lib/google/apis/domains_v1/classes.rb', line 607

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)


590
591
592
# File 'lib/google/apis/domains_v1/classes.rb', line 590

def algorithm
  @algorithm
end

#digestString

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

Returns:

  • (String)


595
596
597
# File 'lib/google/apis/domains_v1/classes.rb', line 595

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)


600
601
602
# File 'lib/google/apis/domains_v1/classes.rb', line 600

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)


605
606
607
# File 'lib/google/apis/domains_v1/classes.rb', line 605

def key_tag
  @key_tag
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



612
613
614
615
616
617
# File 'lib/google/apis/domains_v1/classes.rb', line 612

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