Interface CloudflareNodeParameters

Source
interface CloudflareNodeParameters {
    certificate?: string;
    certificateId?: string;
    filters?: {
        status?:
            | "deleted"
            | "active"
            | "expired"
            | "pending";
    };
    limit?: number;
    operation?: "get"
    | "delete"
    | "getMany"
    | "upload";
    privateKey?: string;
    resource?: "zoneCertificate";
    returnAll?: boolean;
    zoneId?: string;
}

Properties§

Source§

readonly certificate?: string

The zone's leaf certificate

Source§

readonly certificateId?: string

Source§

readonly filters?: { status?: "deleted" | "active" | "expired" | "pending" }

Default: {}

Source§

readonly limit?: number

Max number of results to return Default: 25 Type options: {"minValue":1,"maxValue":50}

Source§

readonly operation?: "get" | "delete" | "getMany" | "upload"

Default: "upload"

Source§

readonly privateKey?: string

Source§

readonly resource?: "zoneCertificate"

Default: "zoneCertificate"

Source§

readonly returnAll?: boolean

Whether to return all results or only up to a given limit

Source§

readonly zoneId?: string

Choose from the list, or specify an ID using an expression Type options: {"loadOptionsMethod":"getZones"}