import * as pulumi from "@pulumi/pulumi"; import * as outputs from "./types/output"; /** * HttpHeaderProfile data source * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as scm from "@pulumi/scm"; * * // * // Data source to retrieve a single SCM HTTP Header Profile object by its ID. * // * // Replace the ID with the UUID of the SCM HTTP Header Profile you want to find. * const scmHttpHeaderProf = scm.getHttpHeaderProfile({ * id: "2733cba4-c79d-4c98-8e07-4d3cbdd0ba11", * }); * export const scmHttpHeaderProfileDetails = { * profileId: scmHttpHeaderProf.then(scmHttpHeaderProf => scmHttpHeaderProf.id), * folder: scmHttpHeaderProf.then(scmHttpHeaderProf => scmHttpHeaderProf.folder), * name: scmHttpHeaderProf.then(scmHttpHeaderProf => scmHttpHeaderProf.name), * }; * ``` */ export declare function getHttpHeaderProfile(args: GetHttpHeaderProfileArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getHttpHeaderProfile. */ export interface GetHttpHeaderProfileArgs { /** * The device in which the resource is defined */ device?: string; folder?: string; /** * The UUID of the HTTP header profile */ id: string; name?: string; snippet?: string; } /** * A collection of values returned by getHttpHeaderProfile. */ export interface GetHttpHeaderProfileResult { readonly description: string; /** * The device in which the resource is defined */ readonly device: string; readonly folder: string; readonly httpHeaderInsertions: outputs.GetHttpHeaderProfileHttpHeaderInsertion[]; /** * The UUID of the HTTP header profile */ readonly id: string; readonly name: string; readonly snippet: string; readonly tfid: string; } /** * HttpHeaderProfile data source * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as scm from "@pulumi/scm"; * * // * // Data source to retrieve a single SCM HTTP Header Profile object by its ID. * // * // Replace the ID with the UUID of the SCM HTTP Header Profile you want to find. * const scmHttpHeaderProf = scm.getHttpHeaderProfile({ * id: "2733cba4-c79d-4c98-8e07-4d3cbdd0ba11", * }); * export const scmHttpHeaderProfileDetails = { * profileId: scmHttpHeaderProf.then(scmHttpHeaderProf => scmHttpHeaderProf.id), * folder: scmHttpHeaderProf.then(scmHttpHeaderProf => scmHttpHeaderProf.folder), * name: scmHttpHeaderProf.then(scmHttpHeaderProf => scmHttpHeaderProf.name), * }; * ``` */ export declare function getHttpHeaderProfileOutput(args: GetHttpHeaderProfileOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getHttpHeaderProfile. */ export interface GetHttpHeaderProfileOutputArgs { /** * The device in which the resource is defined */ device?: pulumi.Input; folder?: pulumi.Input; /** * The UUID of the HTTP header profile */ id: pulumi.Input; name?: pulumi.Input; snippet?: pulumi.Input; } //# sourceMappingURL=getHttpHeaderProfile.d.ts.map