import * as pulumi from "@pulumi/pulumi"; import * as outputs from "./types/output"; /** * CertificateProfile data source * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as scm from "@pulumi/scm"; * * // Look up a single certificate profile object by its ID. * // The ID used here is from the API response log you provided. * const scmCertificateProfileDs = scm.getCertificateProfile({ * id: "8e64859b-eba9-4e25-9005-754c90c2b02d", * }); * export const exampleCpDsResult = scmCertificateProfileDs; * ``` */ export declare function getCertificateProfile(args: GetCertificateProfileArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getCertificateProfile. */ export interface GetCertificateProfileArgs { /** * The device in which the resource is defined */ device?: string; folder?: string; /** * The UUID of the certificate profile */ id: string; name?: string; snippet?: string; } /** * A collection of values returned by getCertificateProfile. */ export interface GetCertificateProfileResult { readonly blockExpiredCert: boolean; readonly blockTimeoutCert: boolean; readonly blockUnauthenticatedCert: boolean; readonly blockUnknownCert: boolean; readonly caCertificates: outputs.GetCertificateProfileCaCertificate[]; readonly certStatusTimeout: string; readonly crlReceiveTimeout: string; /** * The device in which the resource is defined */ readonly device: string; readonly domain: string; readonly folder: string; /** * The UUID of the certificate profile */ readonly id: string; readonly name: string; readonly ocspReceiveTimeout: string; readonly snippet: string; readonly tfid: string; readonly useCrl: boolean; readonly useOcsp: boolean; readonly usernameField: outputs.GetCertificateProfileUsernameField; } /** * CertificateProfile data source * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as scm from "@pulumi/scm"; * * // Look up a single certificate profile object by its ID. * // The ID used here is from the API response log you provided. * const scmCertificateProfileDs = scm.getCertificateProfile({ * id: "8e64859b-eba9-4e25-9005-754c90c2b02d", * }); * export const exampleCpDsResult = scmCertificateProfileDs; * ``` */ export declare function getCertificateProfileOutput(args: GetCertificateProfileOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getCertificateProfile. */ export interface GetCertificateProfileOutputArgs { /** * The device in which the resource is defined */ device?: pulumi.Input; folder?: pulumi.Input; /** * The UUID of the certificate profile */ id: pulumi.Input; name?: pulumi.Input; snippet?: pulumi.Input; } //# sourceMappingURL=getCertificateProfile.d.ts.map