class Google::Apis::FirebasehostingV1beta1::CertDnsChallenge

Represents a DNS certificate challenge.

Attributes

domain_name[RW]

The domain name upon which the DNS challenge must be satisfied. Corresponds to the JSON property `domainName` @return [String]

token[RW]

The value that must be present as a TXT record on the domain name to satisfy the challenge. Corresponds to the JSON property `token` @return [String]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/firebasehosting_v1beta1/classes.rb, line 67
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/firebasehosting_v1beta1/classes.rb, line 72
def update!(**args)
  @domain_name = args[:domain_name] if args.key?(:domain_name)
  @token = args[:token] if args.key?(:token)
end