import * as pulumi from "@pulumi/pulumi"; /** * HipProfile data source * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as scm from "@pulumi/scm"; * * // Look up a single HIP Profile by its ID. * const scmHipProfileDs = scm.getHipProfile({ * id: "e0a970b8-98d2-42e9-a273-53fbf67607c2", * }); * export const hipProfileDsResult = scmHipProfileDs; * ``` */ export declare function getHipProfile(args: GetHipProfileArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getHipProfile. */ export interface GetHipProfileArgs { /** * The device in which the resource is defined */ device?: string; folder?: string; /** * UUID of the resource */ id: string; name?: string; snippet?: string; } /** * A collection of values returned by getHipProfile. */ export interface GetHipProfileResult { readonly description: string; /** * The device in which the resource is defined */ readonly device: string; readonly folder: string; /** * UUID of the resource */ readonly id: string; readonly match: string; readonly name: string; readonly snippet: string; readonly tfid: string; } /** * HipProfile data source * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as scm from "@pulumi/scm"; * * // Look up a single HIP Profile by its ID. * const scmHipProfileDs = scm.getHipProfile({ * id: "e0a970b8-98d2-42e9-a273-53fbf67607c2", * }); * export const hipProfileDsResult = scmHipProfileDs; * ``` */ export declare function getHipProfileOutput(args: GetHipProfileOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getHipProfile. */ export interface GetHipProfileOutputArgs { /** * The device in which the resource is defined */ device?: pulumi.Input; folder?: pulumi.Input; /** * UUID of the resource */ id: pulumi.Input; name?: pulumi.Input; snippet?: pulumi.Input; } //# sourceMappingURL=getHipProfile.d.ts.map