UNPKG

@pulumi/scm

Version:

A Pulumi package for managing resources on Strata Cloud Manager.. Based on terraform-provider-scm: version v0.2.1

87 lines (86 loc) 2.09 kB
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<GetHipProfileResult>; /** * A collection of arguments for invoking getHipProfile. */ export interface GetHipProfileArgs { /** * UUID of the resource */ id: string; /** * The name of the HIP profile */ name?: string; } /** * A collection of values returned by getHipProfile. */ export interface GetHipProfileResult { /** * Description */ 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; /** * The name of the HIP profile */ 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<GetHipProfileResult>; /** * A collection of arguments for invoking getHipProfile. */ export interface GetHipProfileOutputArgs { /** * UUID of the resource */ id: pulumi.Input<string>; /** * The name of the HIP profile */ name?: pulumi.Input<string>; }