import * as pulumi from "@pulumi/pulumi"; import * as outputs from "./types/output"; /** * TlsServiceProfile data source * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as scm from "@pulumi/scm"; * * // * // Data source to retrieve a single SCM TLS Service Profile object by its ID. * // * // Replace the ID with the UUID of the SCM TLS Service Profile you want to find. * const scmTlsServiceProf = scm.getTlsServiceProfile({ * id: "b4d70015-5b0e-4491-a2a9-4305b01397d5", * }); * export const scmTlsServiceProfileDetails = { * profileId: scmTlsServiceProf.then(scmTlsServiceProf => scmTlsServiceProf.id), * folder: scmTlsServiceProf.then(scmTlsServiceProf => scmTlsServiceProf.folder), * name: scmTlsServiceProf.then(scmTlsServiceProf => scmTlsServiceProf.name), * }; * ``` */ export declare function getTlsServiceProfile(args: GetTlsServiceProfileArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getTlsServiceProfile. */ export interface GetTlsServiceProfileArgs { /** * The device in which the resource is defined */ device?: string; folder?: string; /** * The UUID of the TLS service profile */ id: string; name?: string; snippet?: string; } /** * A collection of values returned by getTlsServiceProfile. */ export interface GetTlsServiceProfileResult { readonly certificate: string; /** * The device in which the resource is defined */ readonly device: string; readonly folder: string; /** * The UUID of the TLS service profile */ readonly id: string; readonly name: string; readonly protocolSettings: outputs.GetTlsServiceProfileProtocolSettings; readonly snippet: string; readonly tfid: string; } /** * TlsServiceProfile data source * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as scm from "@pulumi/scm"; * * // * // Data source to retrieve a single SCM TLS Service Profile object by its ID. * // * // Replace the ID with the UUID of the SCM TLS Service Profile you want to find. * const scmTlsServiceProf = scm.getTlsServiceProfile({ * id: "b4d70015-5b0e-4491-a2a9-4305b01397d5", * }); * export const scmTlsServiceProfileDetails = { * profileId: scmTlsServiceProf.then(scmTlsServiceProf => scmTlsServiceProf.id), * folder: scmTlsServiceProf.then(scmTlsServiceProf => scmTlsServiceProf.folder), * name: scmTlsServiceProf.then(scmTlsServiceProf => scmTlsServiceProf.name), * }; * ``` */ export declare function getTlsServiceProfileOutput(args: GetTlsServiceProfileOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getTlsServiceProfile. */ export interface GetTlsServiceProfileOutputArgs { /** * The device in which the resource is defined */ device?: pulumi.Input; folder?: pulumi.Input; /** * The UUID of the TLS service profile */ id: pulumi.Input; name?: pulumi.Input; snippet?: pulumi.Input; } //# sourceMappingURL=getTlsServiceProfile.d.ts.map