import * as pulumi from "@pulumi/pulumi"; /** * Creates a VMware vRealize Automation cloud template (blueprint) version resource. * * ## Example Usage * ### S * * The following example shows how to create a cloud template (blueprint) version resource. * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as vra from "@pulumiverse/vra"; * * const _this = new vra.blueprint.BlueprintVersion("this", { * blueprintId: _var.vra_blueprint_id, * changeLog: "First version", * description: "Released from vRA terraform provider", * release: true, * version: random_integer.suffix.result / random_integer.suffix.result, * }); * ``` * * ## Import * * To import the cloud template (blueprint) version, use the ID as in the following example * * ```sh * $ pulumi import vra:blueprint/blueprintVersion:BlueprintVersion this 05956583-6488-4e7d-84c9-92a7b7219a15` * ``` */ export declare class BlueprintVersion extends pulumi.CustomResource { /** * Get an existing BlueprintVersion 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?: BlueprintVersionState, opts?: pulumi.CustomResourceOptions): BlueprintVersion; /** * Returns true if the given object is an instance of BlueprintVersion. 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 BlueprintVersion; /** * Description of cloud template (blueprint). */ readonly blueprintDescription: pulumi.Output; /** * ID of the cloud template (blueprint). */ readonly blueprintId: pulumi.Output; /** * Cloud template (blueprint) version log. */ readonly changeLog: pulumi.Output; /** * Blueprint YAML content. */ readonly content: pulumi.Output; /** * Date when the entity was created. Date and time format is ISO 8601 and UTC. */ readonly createdAt: pulumi.Output; /** * User who created the entity. */ readonly createdBy: pulumi.Output; /** * Human-friendly description for the cloud template (blueprint) version. */ readonly description: pulumi.Output; /** * Name of cloud template (blueprint) version. */ readonly name: pulumi.Output; /** * ID of organization that entity belongs to. */ readonly orgId: pulumi.Output; /** * ID of project that entity belongs to. */ readonly projectId: pulumi.Output; /** * Name of project that entity belongs to. */ readonly projectName: pulumi.Output; /** * Flag to indicate whether to release the version. */ readonly release: pulumi.Output; /** * Status of the cloud template (blueprint). Supported values: `DRAFT`, `VERSIONED`, `RELEASED`. */ readonly status: pulumi.Output; /** * Date when the entity was last updated. Date and time format is ISO 8601 and UTC. */ readonly updatedAt: pulumi.Output; /** * User who last updated the entity. */ readonly updatedBy: pulumi.Output; /** * Flag to indicate if the current content of the cloud template (blueprint) is valid. */ readonly valid: pulumi.Output; /** * Cloud template (blueprint) version. */ readonly version: pulumi.Output; /** * Create a BlueprintVersion 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: BlueprintVersionArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering BlueprintVersion resources. */ export interface BlueprintVersionState { /** * Description of cloud template (blueprint). */ blueprintDescription?: pulumi.Input; /** * ID of the cloud template (blueprint). */ blueprintId?: pulumi.Input; /** * Cloud template (blueprint) version log. */ changeLog?: pulumi.Input; /** * Blueprint YAML content. */ content?: pulumi.Input; /** * Date when the entity was created. Date and time format is ISO 8601 and UTC. */ createdAt?: pulumi.Input; /** * User who created the entity. */ createdBy?: pulumi.Input; /** * Human-friendly description for the cloud template (blueprint) version. */ description?: pulumi.Input; /** * Name of cloud template (blueprint) version. */ name?: pulumi.Input; /** * ID of organization that entity belongs to. */ orgId?: pulumi.Input; /** * ID of project that entity belongs to. */ projectId?: pulumi.Input; /** * Name of project that entity belongs to. */ projectName?: pulumi.Input; /** * Flag to indicate whether to release the version. */ release?: pulumi.Input; /** * Status of the cloud template (blueprint). Supported values: `DRAFT`, `VERSIONED`, `RELEASED`. */ status?: pulumi.Input; /** * Date when the entity was last updated. Date and time format is ISO 8601 and UTC. */ updatedAt?: pulumi.Input; /** * User who last updated the entity. */ updatedBy?: pulumi.Input; /** * Flag to indicate if the current content of the cloud template (blueprint) is valid. */ valid?: pulumi.Input; /** * Cloud template (blueprint) version. */ version?: pulumi.Input; } /** * The set of arguments for constructing a BlueprintVersion resource. */ export interface BlueprintVersionArgs { /** * ID of the cloud template (blueprint). */ blueprintId: pulumi.Input; /** * Cloud template (blueprint) version log. */ changeLog?: pulumi.Input; /** * Human-friendly description for the cloud template (blueprint) version. */ description?: pulumi.Input; /** * Flag to indicate whether to release the version. */ release?: pulumi.Input; /** * Cloud template (blueprint) version. */ version: pulumi.Input; }