REST Resource: acmeChallengeSets

Resource: AcmeChallengeSet

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.

JSON representation
{
  "record": [
    {
      object (AcmeTxtRecord)
    }
  ]
}
Fields
record[]

object (AcmeTxtRecord)

The ACME challenges on the requested domain represented as individual TXT records.

AcmeTxtRecord

The TXT record message that represents an ACME DNS-01 challenge.

JSON representation
{
  "fqdn": string,
  "digest": string,
  "updateTime": string
}
Fields
fqdn

string

The domain/subdomain for the record.

In a request, this MAY be Unicode or Punycode.

In a response, this will be in Unicode.

The fqdn MUST contain the rootDomain field on the request.

digest

string

Holds the ACME challenge data put in the TXT record. This will be checked to be a valid TXT record data entry.

updateTime

string (Timestamp format)

Output only. The time when this record was last updated. This will be in UTC time.

A timestamp in RFC3339 UTC "Zulu" format, with nanosecond resolution and up to nine fractional digits. Examples: "2014-10-02T15:01:23Z" and "2014-10-02T15:01:23.045123456Z".

Methods

get

Gets the ACME challenge set for a given domain name.

rotateChallenges

Rotate the ACME challenges for a given domain name.