import * as pulumi from "@pulumi/pulumi"; /** * Resource for creating IDP environment blueprints. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as harness from "@pulumi/harness"; * * const test = new harness.platform.IdpEnvironmentBlueprint("test", { * identifier: "identifier", * version: "v1.0.0", * stable: true, * deprecated: false, * description: "description", * yaml: `apiVersion: harness.io/v1 * kind: EnvironmentBlueprint * type: long-lived * identifier: identifier * name: name * owner: group:account/_account_all_users * metadata: * description: description * spec: * entities: * - identifier: git * backend: * type: HarnessCD * steps: * apply: * pipeline: gittest * branch: main * destroy: * pipeline: gittest * branch: not-main * ownedBy: * - group:account/_account_all_users * `, * }); * ``` * * ## Import * * The `pulumi import` command can be used, for example: * * Import environment blueprint * * ```sh * $ pulumi import harness:platform/idpEnvironmentBlueprint:IdpEnvironmentBlueprint example / * ``` */ export declare class IdpEnvironmentBlueprint extends pulumi.CustomResource { /** * Get an existing IdpEnvironmentBlueprint resource's state with the given name, ID, and optional extra * properties used to qualify the lookup. * * @param name The _unique_ name of the resulting resource. * @param id The _unique_ provider ID of the resource to lookup. * @param state Any extra arguments used during the lookup. * @param opts Optional settings to control the behavior of the CustomResource. */ static get(name: string, id: pulumi.Input, state?: IdpEnvironmentBlueprintState, opts?: pulumi.CustomResourceOptions): IdpEnvironmentBlueprint; /** * Returns true if the given object is an instance of IdpEnvironmentBlueprint. This is designed to work even * when multiple copies of the Pulumi SDK have been loaded into the same process. */ static isInstance(obj: any): obj is IdpEnvironmentBlueprint; /** * Whether the catalog entity is deprecated */ readonly deprecated: pulumi.Output; /** * Description of the catalog entity */ readonly description: pulumi.Output; /** * Unique identifier of the resource. */ readonly identifier: pulumi.Output; /** * Whether the catalog entity is stable */ readonly stable: pulumi.Output; /** * Version of the catalog entity */ readonly version: pulumi.Output; /** * YAML definition of the catalog entity */ readonly yaml: pulumi.Output; /** * Create a IdpEnvironmentBlueprint resource with the given unique name, arguments, and options. * * @param name The _unique_ name of the resource. * @param args The arguments to use to populate this resource's properties. * @param opts A bag of options that control this resource's behavior. */ constructor(name: string, args: IdpEnvironmentBlueprintArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering IdpEnvironmentBlueprint resources. */ export interface IdpEnvironmentBlueprintState { /** * Whether the catalog entity is deprecated */ deprecated?: pulumi.Input; /** * Description of the catalog entity */ description?: pulumi.Input; /** * Unique identifier of the resource. */ identifier?: pulumi.Input; /** * Whether the catalog entity is stable */ stable?: pulumi.Input; /** * Version of the catalog entity */ version?: pulumi.Input; /** * YAML definition of the catalog entity */ yaml?: pulumi.Input; } /** * The set of arguments for constructing a IdpEnvironmentBlueprint resource. */ export interface IdpEnvironmentBlueprintArgs { /** * Whether the catalog entity is deprecated */ deprecated?: pulumi.Input; /** * Description of the catalog entity */ description?: pulumi.Input; /** * Unique identifier of the resource. */ identifier: pulumi.Input; /** * Whether the catalog entity is stable */ stable?: pulumi.Input; /** * Version of the catalog entity */ version: pulumi.Input; /** * YAML definition of the catalog entity */ yaml: pulumi.Input; } //# sourceMappingURL=idpEnvironmentBlueprint.d.ts.map