import * as pulumi from "@pulumi/pulumi"; import * as inputs from "./types/input"; import * as outputs from "./types/output"; /** * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as cloudflare from "@pulumi/cloudflare"; * * const exampleCustomOriginTrustStore = cloudflare.getCustomOriginTrustStore({ * zoneId: "023e105f4ecef8ad9ca31a8372d0c353", * customOriginTrustStoreId: "023e105f4ecef8ad9ca31a8372d0c353", * }); * ``` */ export declare function getCustomOriginTrustStore(args: GetCustomOriginTrustStoreArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getCustomOriginTrustStore. */ export interface GetCustomOriginTrustStoreArgs { /** * Identifier. */ customOriginTrustStoreId?: string; filter?: inputs.GetCustomOriginTrustStoreFilter; /** * Identifier. */ zoneId: string; } /** * A collection of values returned by getCustomOriginTrustStore. */ export interface GetCustomOriginTrustStoreResult { /** * The zone's SSL certificate or certificate and the intermediate(s). */ readonly certificate: string; /** * Identifier. */ readonly customOriginTrustStoreId?: string; /** * When the certificate expires. */ readonly expiresOn: string; readonly filter?: outputs.GetCustomOriginTrustStoreFilter; /** * Identifier. */ readonly id: string; /** * The certificate authority that issued the certificate. */ readonly issuer: string; /** * The type of hash used for the certificate. */ readonly signature: string; /** * Status of the zone's custom SSL. * Available values: "initializing", "pending*deployment", "active", "pending*deletion", "deleted", "expired". */ readonly status: string; /** * When the certificate was last modified. */ readonly updatedAt: string; /** * When the certificate was uploaded to Cloudflare. */ readonly uploadedOn: string; /** * Identifier. */ readonly zoneId: string; } /** * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as cloudflare from "@pulumi/cloudflare"; * * const exampleCustomOriginTrustStore = cloudflare.getCustomOriginTrustStore({ * zoneId: "023e105f4ecef8ad9ca31a8372d0c353", * customOriginTrustStoreId: "023e105f4ecef8ad9ca31a8372d0c353", * }); * ``` */ export declare function getCustomOriginTrustStoreOutput(args: GetCustomOriginTrustStoreOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getCustomOriginTrustStore. */ export interface GetCustomOriginTrustStoreOutputArgs { /** * Identifier. */ customOriginTrustStoreId?: pulumi.Input; filter?: pulumi.Input; /** * Identifier. */ zoneId: pulumi.Input; }