import * as pulumi from "@pulumi/pulumi"; import * as outputs from "./types/output"; /** * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as cloudflare from "@pulumi/cloudflare"; * * const exampleClientCertificates = cloudflare.getClientCertificates({ * zoneId: "023e105f4ecef8ad9ca31a8372d0c353", * limit: 10, * offset: 10, * status: "all", * }); * ``` */ export declare function getClientCertificates(args: GetClientCertificatesArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getClientCertificates. */ export interface GetClientCertificatesArgs { /** * Limit to the number of records returned. */ limit?: number; /** * Max items to fetch, default: 1000 */ maxItems?: number; /** * Offset the results */ offset?: number; /** * Client Certitifcate Status to filter results by. * Available values: "all", "active", "pending*reactivation", "pending*revocation", "revoked". */ status?: string; /** * Identifier. */ zoneId: string; } /** * A collection of values returned by getClientCertificates. */ export interface GetClientCertificatesResult { /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; /** * Limit to the number of records returned. */ readonly limit?: number; /** * Max items to fetch, default: 1000 */ readonly maxItems?: number; /** * Offset the results */ readonly offset?: number; /** * The items returned by the data source */ readonly results: outputs.GetClientCertificatesResult[]; /** * Client Certitifcate Status to filter results by. * Available values: "all", "active", "pending*reactivation", "pending*revocation", "revoked". */ readonly status?: string; /** * Identifier. */ readonly zoneId: string; } /** * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as cloudflare from "@pulumi/cloudflare"; * * const exampleClientCertificates = cloudflare.getClientCertificates({ * zoneId: "023e105f4ecef8ad9ca31a8372d0c353", * limit: 10, * offset: 10, * status: "all", * }); * ``` */ export declare function getClientCertificatesOutput(args: GetClientCertificatesOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getClientCertificates. */ export interface GetClientCertificatesOutputArgs { /** * Limit to the number of records returned. */ limit?: pulumi.Input; /** * Max items to fetch, default: 1000 */ maxItems?: pulumi.Input; /** * Offset the results */ offset?: pulumi.Input; /** * Client Certitifcate Status to filter results by. * Available values: "all", "active", "pending*reactivation", "pending*revocation", "revoked". */ status?: pulumi.Input; /** * Identifier. */ zoneId: pulumi.Input; }