Class: Google::Apis::AcmednsV1::AcmeChallengeSet

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

Overview

The up-to-date ACME challenge set on a domain for an RPC. This contains all of the ACME TXT records that exist on the domain.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ AcmeChallengeSet

Returns a new instance of AcmeChallengeSet.



36
37
38
# File 'lib/google/apis/acmedns_v1/classes.rb', line 36

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

Instance Attribute Details

#recordArray<Google::Apis::AcmednsV1::AcmeTxtRecord>

The ACME challenges on the requested domain represented as individual TXT records. Corresponds to the JSON property record



34
35
36
# File 'lib/google/apis/acmedns_v1/classes.rb', line 34

def record
  @record
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



41
42
43
# File 'lib/google/apis/acmedns_v1/classes.rb', line 41

def update!(**args)
  @record = args[:record] if args.key?(:record)
end