Skip to main content
Using Deno in production at your company? Earn free Deno merch.
Give us feedback
Module

x/kubernetes_apis/cert-manager/acme.cert-manager.io@v1/structs.ts>Challenge

REST focused Typescript classes for Kubernetes APIs, and tools for generating API interfaces
Latest
interface Challenge
import { type Challenge } from "https://deno.land/x/kubernetes_apis@v0.5.0/cert-manager/acme.cert-manager.io@v1/structs.ts";

Challenge is a type to represent a Challenge request with an ACME server

Properties

optional
apiVersion: "acme.cert-manager.io/v1"
optional
kind: "Challenge"
metadata: MetaV1.ObjectMeta
spec: { authorizationURL: string; dnsName: string; issuerRef: { group?: string | null; kind?: string | null; name: string; }; key: string; solver: CertManagerIoV1.SolverSpec; token: string; type: "HTTP-01" | "DNS-01" | c.UnexpectedEnumValue; url: string; wildcard?: boolean | null; }
optional
status: { presented?: boolean | null; processing?: boolean | null; reason?: string | null; state?:
| "valid"
| "ready"
| "pending"
| "processing"
| "invalid"
| "expired"
| "errored"
| c.UnexpectedEnumValue
| null
; } | null