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§

§readonly certificate?: string

The zone's leaf certificate

§readonly certificateId?: string
§readonly filters?: { ... }

Default: {}

§readonly limit?: number

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

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

Default: "upload"

§readonly privateKey?: string
§readonly resource?: "zoneCertificate"

Default: "zoneCertificate"

§readonly returnAll?: boolean

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

§readonly zoneId?: string

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