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>Order

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

Order is a type to represent an Order with an ACME server

Properties

optional
apiVersion: "acme.cert-manager.io/v1"
optional
kind: "Order"
metadata: MetaV1.ObjectMeta
spec: { commonName?: string | null; dnsNames?: Array<string> | null; duration?: string | null; ipAddresses?: Array<string> | null; issuerRef: { group?: string | null; kind?: string | null; name: string; }; request: string; }
optional
status: { authorizations?: Array<{ challenges?: Array<{ token: string; type: string; url: string; }> | null; identifier?: string | null; initialState?:
| "valid"
| "ready"
| "pending"
| "processing"
| "invalid"
| "expired"
| "errored"
| c.UnexpectedEnumValue
| null
; url: string; wildcard?: boolean | null; }> | null
; certificate?: string | null; failureTime?: c.Time | null; finalizeURL?: string | null; reason?: string | null; state?:
| "valid"
| "ready"
| "pending"
| "processing"
| "invalid"
| "expired"
| "errored"
| c.UnexpectedEnumValue
| null
; url?: string | null; } | null