import * as pulumi from "@pulumi/pulumi"; import * as outputs from "./types/output"; /** * ScepProfile data source * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as scm from "@pulumi/scm"; * * // * // Data source to retrieve a single SCM SCEP Profile object by its ID. * // * // Replace the ID with the UUID of the SCM SCEP Profile you want to find. * const scmScepProf = scm.getScepProfile({ * id: "06c1d4ea-e2b1-44c9-bf5a-3f66c7d180a1", * }); * export const scmScepProfileDetails = { * profileId: scmScepProf.then(scmScepProf => scmScepProf.id), * folder: scmScepProf.then(scmScepProf => scmScepProf.folder), * name: scmScepProf.then(scmScepProf => scmScepProf.name), * }; * ``` */ export declare function getScepProfile(args: GetScepProfileArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getScepProfile. */ export interface GetScepProfileArgs { /** * The device in which the resource is defined */ device?: string; folder?: string; /** * The UUID of the SCEP profile */ id: string; name?: string; snippet?: string; } /** * A collection of values returned by getScepProfile. */ export interface GetScepProfileResult { readonly algorithm: outputs.GetScepProfileAlgorithm; readonly caIdentityName: string; readonly certificateAttributes: outputs.GetScepProfileCertificateAttributes; /** * The device in which the resource is defined */ readonly device: string; readonly digest: string; readonly encryptedValues: { [key: string]: string; }; readonly fingerprint: string; readonly folder: string; /** * The UUID of the SCEP profile */ readonly id: string; readonly name: string; readonly scepCaCert: string; readonly scepChallenge: outputs.GetScepProfileScepChallenge; readonly scepClientCert: string; readonly scepUrl: string; readonly snippet: string; readonly subject: string; readonly tfid: string; readonly useAsDigitalSignature: boolean; readonly useForKeyEncipherment: boolean; } /** * ScepProfile data source * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as scm from "@pulumi/scm"; * * // * // Data source to retrieve a single SCM SCEP Profile object by its ID. * // * // Replace the ID with the UUID of the SCM SCEP Profile you want to find. * const scmScepProf = scm.getScepProfile({ * id: "06c1d4ea-e2b1-44c9-bf5a-3f66c7d180a1", * }); * export const scmScepProfileDetails = { * profileId: scmScepProf.then(scmScepProf => scmScepProf.id), * folder: scmScepProf.then(scmScepProf => scmScepProf.folder), * name: scmScepProf.then(scmScepProf => scmScepProf.name), * }; * ``` */ export declare function getScepProfileOutput(args: GetScepProfileOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getScepProfile. */ export interface GetScepProfileOutputArgs { /** * The device in which the resource is defined */ device?: pulumi.Input; folder?: pulumi.Input; /** * The UUID of the SCEP profile */ id: pulumi.Input; name?: pulumi.Input; snippet?: pulumi.Input; } //# sourceMappingURL=getScepProfile.d.ts.map