vra.Blueprint
Explore with Pulumi AI
Creates a VMware vRealize Automation (vRA) cloud template resource, formerly known as a blueprint.
Example Usage
The following example shows how to create a blueprint resource.
import * as pulumi from "@pulumi/pulumi";
import * as vra from "@pulumi/vra";
const _this = new vra.Blueprint("this", {
description: "Created by vRA terraform provider",
projectId: vra_project["this"].id,
content: `formatVersion: 1
inputs:
image:
type: string
description: "Image"
flavor:
type: string
description: "Flavor"
resources:
Machine:
type: Cloud.Machine
properties:
image: ${input.image}
flavor: ${input.flavor}
`,
});
import pulumi
import pulumi_vra as vra
this = vra.Blueprint("this",
description="Created by vRA terraform provider",
project_id=vra_project["this"]["id"],
content=f"""formatVersion: 1
inputs:
image:
type: string
description: "Image"
flavor:
type: string
description: "Flavor"
resources:
Machine:
type: Cloud.Machine
properties:
image: {input["image"]}
flavor: {input["flavor"]}
""")
package main
import (
"fmt"
"github.com/pulumi/pulumi-terraform-provider/sdks/go/vra/vra"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := vra.NewBlueprint(ctx, "this", &vra.BlueprintArgs{
Description: pulumi.String("Created by vRA terraform provider"),
ProjectId: pulumi.Any(vra_project.This.Id),
Content: pulumi.Sprintf(`formatVersion: 1
inputs:
image:
type: string
description: "Image"
flavor:
type: string
description: "Flavor"
resources:
Machine:
type: Cloud.Machine
properties:
image: %v
flavor: %v
`, input.Image, input.Flavor),
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Vra = Pulumi.Vra;
return await Deployment.RunAsync(() =>
{
var @this = new Vra.Blueprint("this", new()
{
Description = "Created by vRA terraform provider",
ProjectId = vra_project.This.Id,
Content = @$"formatVersion: 1
inputs:
image:
type: string
description: ""Image""
flavor:
type: string
description: ""Flavor""
resources:
Machine:
type: Cloud.Machine
properties:
image: {input.Image}
flavor: {input.Flavor}
",
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.vra.Blueprint;
import com.pulumi.vra.BlueprintArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
var this_ = new Blueprint("this", BlueprintArgs.builder()
.description("Created by vRA terraform provider")
.projectId(vra_project.this().id())
.content("""
formatVersion: 1
inputs:
image:
type: string
description: "Image"
flavor:
type: string
description: "Flavor"
resources:
Machine:
type: Cloud.Machine
properties:
image: %s
flavor: %s
", input.image(),input.flavor()))
.build());
}
}
resources:
this:
type: vra:Blueprint
properties:
description: Created by vRA terraform provider
projectId: ${vra_project.this.id}
content: |
formatVersion: 1
inputs:
image:
type: string
description: "Image"
flavor:
type: string
description: "Flavor"
resources:
Machine:
type: Cloud.Machine
properties:
image: ${input.image}
flavor: ${input.flavor}
Create Blueprint Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new Blueprint(name: string, args: BlueprintArgs, opts?: CustomResourceOptions);
@overload
def Blueprint(resource_name: str,
args: BlueprintArgs,
opts: Optional[ResourceOptions] = None)
@overload
def Blueprint(resource_name: str,
opts: Optional[ResourceOptions] = None,
project_id: Optional[str] = None,
blueprint_id: Optional[str] = None,
content: Optional[str] = None,
description: Optional[str] = None,
name: Optional[str] = None,
request_scope_org: Optional[bool] = None)
func NewBlueprint(ctx *Context, name string, args BlueprintArgs, opts ...ResourceOption) (*Blueprint, error)
public Blueprint(string name, BlueprintArgs args, CustomResourceOptions? opts = null)
public Blueprint(String name, BlueprintArgs args)
public Blueprint(String name, BlueprintArgs args, CustomResourceOptions options)
type: vra:Blueprint
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name string
- The unique name of the resource.
- args BlueprintArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args BlueprintArgs
- The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args BlueprintArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args BlueprintArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args BlueprintArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Constructor example
The following reference example uses placeholder values for all input properties.
var blueprintResource = new Vra.Blueprint("blueprintResource", new()
{
ProjectId = "string",
BlueprintId = "string",
Content = "string",
Description = "string",
Name = "string",
RequestScopeOrg = false,
});
example, err := vra.NewBlueprint(ctx, "blueprintResource", &vra.BlueprintArgs{
ProjectId: pulumi.String("string"),
BlueprintId: pulumi.String("string"),
Content: pulumi.String("string"),
Description: pulumi.String("string"),
Name: pulumi.String("string"),
RequestScopeOrg: pulumi.Bool(false),
})
var blueprintResource = new Blueprint("blueprintResource", BlueprintArgs.builder()
.projectId("string")
.blueprintId("string")
.content("string")
.description("string")
.name("string")
.requestScopeOrg(false)
.build());
blueprint_resource = vra.Blueprint("blueprintResource",
project_id="string",
blueprint_id="string",
content="string",
description="string",
name="string",
request_scope_org=False)
const blueprintResource = new vra.Blueprint("blueprintResource", {
projectId: "string",
blueprintId: "string",
content: "string",
description: "string",
name: "string",
requestScopeOrg: false,
});
type: vra:Blueprint
properties:
blueprintId: string
content: string
description: string
name: string
projectId: string
requestScopeOrg: false
Blueprint Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.
The Blueprint resource accepts the following input properties:
- Project
Id string - ID of project that entity belongs to.
- Blueprint
Id string - ID of cloud template.
- Content string
- Blueprint YAML content.
- Description string
- Human-friendly description.
- Name string
- Human-friendly name used as an identifier in APIs that support this option.
- Request
Scope boolOrg - Flag to indicate whether blueprint can be requested from any project in the organization that entity belongs to.
- Project
Id string - ID of project that entity belongs to.
- Blueprint
Id string - ID of cloud template.
- Content string
- Blueprint YAML content.
- Description string
- Human-friendly description.
- Name string
- Human-friendly name used as an identifier in APIs that support this option.
- Request
Scope boolOrg - Flag to indicate whether blueprint can be requested from any project in the organization that entity belongs to.
- project
Id String - ID of project that entity belongs to.
- blueprint
Id String - ID of cloud template.
- content String
- Blueprint YAML content.
- description String
- Human-friendly description.
- name String
- Human-friendly name used as an identifier in APIs that support this option.
- request
Scope BooleanOrg - Flag to indicate whether blueprint can be requested from any project in the organization that entity belongs to.
- project
Id string - ID of project that entity belongs to.
- blueprint
Id string - ID of cloud template.
- content string
- Blueprint YAML content.
- description string
- Human-friendly description.
- name string
- Human-friendly name used as an identifier in APIs that support this option.
- request
Scope booleanOrg - Flag to indicate whether blueprint can be requested from any project in the organization that entity belongs to.
- project_
id str - ID of project that entity belongs to.
- blueprint_
id str - ID of cloud template.
- content str
- Blueprint YAML content.
- description str
- Human-friendly description.
- name str
- Human-friendly name used as an identifier in APIs that support this option.
- request_
scope_ boolorg - Flag to indicate whether blueprint can be requested from any project in the organization that entity belongs to.
- project
Id String - ID of project that entity belongs to.
- blueprint
Id String - ID of cloud template.
- content String
- Blueprint YAML content.
- description String
- Human-friendly description.
- name String
- Human-friendly name used as an identifier in APIs that support this option.
- request
Scope BooleanOrg - Flag to indicate whether blueprint can be requested from any project in the organization that entity belongs to.
Outputs
All input properties are implicitly available as output properties. Additionally, the Blueprint resource produces the following output properties:
- Content
Source stringId - ID of content source.
- Content
Source stringPath - Content source path.
- Content
Source stringSync At - Date when content source was last synced. The date is in ISO 8601 and UTC.
- Content
Source List<string>Sync Messages - Content source last sync messages.
- Content
Source stringSync Status - Content source last sync status. Supported values:
SUCCESSFUL
,FAILED
. - Content
Source stringType - Content source type.
- Created
At string - Date when entity was created. The date is in ISO 8601 and UTC.
- Created
By string - The user who created entity.
- Id string
- The provider-assigned unique ID for this managed resource.
- Org
Id string - ID of organization that entity belongs to.
- Project
Name string - Name of project that entity belongs to.
- Self
Link string - HATEOAS of entity.
- Status string
- Status of cloud template. Supported values:
DRAFT
,VERSIONED
,RELEASED
. - Total
Released doubleVersions - Total number of released versions.
- Total
Versions double - Total number of versions.
- Updated
At string - Date when entity was last updated. Date and time format is ISO 8601 and UTC.
- Updated
By string - The user who last updated the entity.
- Valid bool
- Flag to indicate if the current content of the cloud template/blueprint is valid.
- Validation
Messages List<BlueprintValidation Message> - List of validations messages.
- message - Validation message.
- Content
Source stringId - ID of content source.
- Content
Source stringPath - Content source path.
- Content
Source stringSync At - Date when content source was last synced. The date is in ISO 8601 and UTC.
- Content
Source []stringSync Messages - Content source last sync messages.
- Content
Source stringSync Status - Content source last sync status. Supported values:
SUCCESSFUL
,FAILED
. - Content
Source stringType - Content source type.
- Created
At string - Date when entity was created. The date is in ISO 8601 and UTC.
- Created
By string - The user who created entity.
- Id string
- The provider-assigned unique ID for this managed resource.
- Org
Id string - ID of organization that entity belongs to.
- Project
Name string - Name of project that entity belongs to.
- Self
Link string - HATEOAS of entity.
- Status string
- Status of cloud template. Supported values:
DRAFT
,VERSIONED
,RELEASED
. - Total
Released float64Versions - Total number of released versions.
- Total
Versions float64 - Total number of versions.
- Updated
At string - Date when entity was last updated. Date and time format is ISO 8601 and UTC.
- Updated
By string - The user who last updated the entity.
- Valid bool
- Flag to indicate if the current content of the cloud template/blueprint is valid.
- Validation
Messages []BlueprintValidation Message - List of validations messages.
- message - Validation message.
- content
Source StringId - ID of content source.
- content
Source StringPath - Content source path.
- content
Source StringSync At - Date when content source was last synced. The date is in ISO 8601 and UTC.
- content
Source List<String>Sync Messages - Content source last sync messages.
- content
Source StringSync Status - Content source last sync status. Supported values:
SUCCESSFUL
,FAILED
. - content
Source StringType - Content source type.
- created
At String - Date when entity was created. The date is in ISO 8601 and UTC.
- created
By String - The user who created entity.
- id String
- The provider-assigned unique ID for this managed resource.
- org
Id String - ID of organization that entity belongs to.
- project
Name String - Name of project that entity belongs to.
- self
Link String - HATEOAS of entity.
- status String
- Status of cloud template. Supported values:
DRAFT
,VERSIONED
,RELEASED
. - total
Released DoubleVersions - Total number of released versions.
- total
Versions Double - Total number of versions.
- updated
At String - Date when entity was last updated. Date and time format is ISO 8601 and UTC.
- updated
By String - The user who last updated the entity.
- valid Boolean
- Flag to indicate if the current content of the cloud template/blueprint is valid.
- validation
Messages List<BlueprintValidation Message> - List of validations messages.
- message - Validation message.
- content
Source stringId - ID of content source.
- content
Source stringPath - Content source path.
- content
Source stringSync At - Date when content source was last synced. The date is in ISO 8601 and UTC.
- content
Source string[]Sync Messages - Content source last sync messages.
- content
Source stringSync Status - Content source last sync status. Supported values:
SUCCESSFUL
,FAILED
. - content
Source stringType - Content source type.
- created
At string - Date when entity was created. The date is in ISO 8601 and UTC.
- created
By string - The user who created entity.
- id string
- The provider-assigned unique ID for this managed resource.
- org
Id string - ID of organization that entity belongs to.
- project
Name string - Name of project that entity belongs to.
- self
Link string - HATEOAS of entity.
- status string
- Status of cloud template. Supported values:
DRAFT
,VERSIONED
,RELEASED
. - total
Released numberVersions - Total number of released versions.
- total
Versions number - Total number of versions.
- updated
At string - Date when entity was last updated. Date and time format is ISO 8601 and UTC.
- updated
By string - The user who last updated the entity.
- valid boolean
- Flag to indicate if the current content of the cloud template/blueprint is valid.
- validation
Messages BlueprintValidation Message[] - List of validations messages.
- message - Validation message.
- content_
source_ strid - ID of content source.
- content_
source_ strpath - Content source path.
- content_
source_ strsync_ at - Date when content source was last synced. The date is in ISO 8601 and UTC.
- content_
source_ Sequence[str]sync_ messages - Content source last sync messages.
- content_
source_ strsync_ status - Content source last sync status. Supported values:
SUCCESSFUL
,FAILED
. - content_
source_ strtype - Content source type.
- created_
at str - Date when entity was created. The date is in ISO 8601 and UTC.
- created_
by str - The user who created entity.
- id str
- The provider-assigned unique ID for this managed resource.
- org_
id str - ID of organization that entity belongs to.
- project_
name str - Name of project that entity belongs to.
- self_
link str - HATEOAS of entity.
- status str
- Status of cloud template. Supported values:
DRAFT
,VERSIONED
,RELEASED
. - total_
released_ floatversions - Total number of released versions.
- total_
versions float - Total number of versions.
- updated_
at str - Date when entity was last updated. Date and time format is ISO 8601 and UTC.
- updated_
by str - The user who last updated the entity.
- valid bool
- Flag to indicate if the current content of the cloud template/blueprint is valid.
- validation_
messages Sequence[BlueprintValidation Message] - List of validations messages.
- message - Validation message.
- content
Source StringId - ID of content source.
- content
Source StringPath - Content source path.
- content
Source StringSync At - Date when content source was last synced. The date is in ISO 8601 and UTC.
- content
Source List<String>Sync Messages - Content source last sync messages.
- content
Source StringSync Status - Content source last sync status. Supported values:
SUCCESSFUL
,FAILED
. - content
Source StringType - Content source type.
- created
At String - Date when entity was created. The date is in ISO 8601 and UTC.
- created
By String - The user who created entity.
- id String
- The provider-assigned unique ID for this managed resource.
- org
Id String - ID of organization that entity belongs to.
- project
Name String - Name of project that entity belongs to.
- self
Link String - HATEOAS of entity.
- status String
- Status of cloud template. Supported values:
DRAFT
,VERSIONED
,RELEASED
. - total
Released NumberVersions - Total number of released versions.
- total
Versions Number - Total number of versions.
- updated
At String - Date when entity was last updated. Date and time format is ISO 8601 and UTC.
- updated
By String - The user who last updated the entity.
- valid Boolean
- Flag to indicate if the current content of the cloud template/blueprint is valid.
- validation
Messages List<Property Map> - List of validations messages.
- message - Validation message.
Look up Existing Blueprint Resource
Get an existing Blueprint resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.
public static get(name: string, id: Input<ID>, state?: BlueprintState, opts?: CustomResourceOptions): Blueprint
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
blueprint_id: Optional[str] = None,
content: Optional[str] = None,
content_source_id: Optional[str] = None,
content_source_path: Optional[str] = None,
content_source_sync_at: Optional[str] = None,
content_source_sync_messages: Optional[Sequence[str]] = None,
content_source_sync_status: Optional[str] = None,
content_source_type: Optional[str] = None,
created_at: Optional[str] = None,
created_by: Optional[str] = None,
description: Optional[str] = None,
name: Optional[str] = None,
org_id: Optional[str] = None,
project_id: Optional[str] = None,
project_name: Optional[str] = None,
request_scope_org: Optional[bool] = None,
self_link: Optional[str] = None,
status: Optional[str] = None,
total_released_versions: Optional[float] = None,
total_versions: Optional[float] = None,
updated_at: Optional[str] = None,
updated_by: Optional[str] = None,
valid: Optional[bool] = None,
validation_messages: Optional[Sequence[BlueprintValidationMessageArgs]] = None) -> Blueprint
func GetBlueprint(ctx *Context, name string, id IDInput, state *BlueprintState, opts ...ResourceOption) (*Blueprint, error)
public static Blueprint Get(string name, Input<string> id, BlueprintState? state, CustomResourceOptions? opts = null)
public static Blueprint get(String name, Output<String> id, BlueprintState state, CustomResourceOptions options)
resources: _: type: vra:Blueprint get: id: ${id}
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- resource_name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- Blueprint
Id string - ID of cloud template.
- Content string
- Blueprint YAML content.
- Content
Source stringId - ID of content source.
- Content
Source stringPath - Content source path.
- Content
Source stringSync At - Date when content source was last synced. The date is in ISO 8601 and UTC.
- Content
Source List<string>Sync Messages - Content source last sync messages.
- Content
Source stringSync Status - Content source last sync status. Supported values:
SUCCESSFUL
,FAILED
. - Content
Source stringType - Content source type.
- Created
At string - Date when entity was created. The date is in ISO 8601 and UTC.
- Created
By string - The user who created entity.
- Description string
- Human-friendly description.
- Name string
- Human-friendly name used as an identifier in APIs that support this option.
- Org
Id string - ID of organization that entity belongs to.
- Project
Id string - ID of project that entity belongs to.
- Project
Name string - Name of project that entity belongs to.
- Request
Scope boolOrg - Flag to indicate whether blueprint can be requested from any project in the organization that entity belongs to.
- Self
Link string - HATEOAS of entity.
- Status string
- Status of cloud template. Supported values:
DRAFT
,VERSIONED
,RELEASED
. - Total
Released doubleVersions - Total number of released versions.
- Total
Versions double - Total number of versions.
- Updated
At string - Date when entity was last updated. Date and time format is ISO 8601 and UTC.
- Updated
By string - The user who last updated the entity.
- Valid bool
- Flag to indicate if the current content of the cloud template/blueprint is valid.
- Validation
Messages List<BlueprintValidation Message> - List of validations messages.
- message - Validation message.
- Blueprint
Id string - ID of cloud template.
- Content string
- Blueprint YAML content.
- Content
Source stringId - ID of content source.
- Content
Source stringPath - Content source path.
- Content
Source stringSync At - Date when content source was last synced. The date is in ISO 8601 and UTC.
- Content
Source []stringSync Messages - Content source last sync messages.
- Content
Source stringSync Status - Content source last sync status. Supported values:
SUCCESSFUL
,FAILED
. - Content
Source stringType - Content source type.
- Created
At string - Date when entity was created. The date is in ISO 8601 and UTC.
- Created
By string - The user who created entity.
- Description string
- Human-friendly description.
- Name string
- Human-friendly name used as an identifier in APIs that support this option.
- Org
Id string - ID of organization that entity belongs to.
- Project
Id string - ID of project that entity belongs to.
- Project
Name string - Name of project that entity belongs to.
- Request
Scope boolOrg - Flag to indicate whether blueprint can be requested from any project in the organization that entity belongs to.
- Self
Link string - HATEOAS of entity.
- Status string
- Status of cloud template. Supported values:
DRAFT
,VERSIONED
,RELEASED
. - Total
Released float64Versions - Total number of released versions.
- Total
Versions float64 - Total number of versions.
- Updated
At string - Date when entity was last updated. Date and time format is ISO 8601 and UTC.
- Updated
By string - The user who last updated the entity.
- Valid bool
- Flag to indicate if the current content of the cloud template/blueprint is valid.
- Validation
Messages []BlueprintValidation Message Args - List of validations messages.
- message - Validation message.
- blueprint
Id String - ID of cloud template.
- content String
- Blueprint YAML content.
- content
Source StringId - ID of content source.
- content
Source StringPath - Content source path.
- content
Source StringSync At - Date when content source was last synced. The date is in ISO 8601 and UTC.
- content
Source List<String>Sync Messages - Content source last sync messages.
- content
Source StringSync Status - Content source last sync status. Supported values:
SUCCESSFUL
,FAILED
. - content
Source StringType - Content source type.
- created
At String - Date when entity was created. The date is in ISO 8601 and UTC.
- created
By String - The user who created entity.
- description String
- Human-friendly description.
- name String
- Human-friendly name used as an identifier in APIs that support this option.
- org
Id String - ID of organization that entity belongs to.
- project
Id String - ID of project that entity belongs to.
- project
Name String - Name of project that entity belongs to.
- request
Scope BooleanOrg - Flag to indicate whether blueprint can be requested from any project in the organization that entity belongs to.
- self
Link String - HATEOAS of entity.
- status String
- Status of cloud template. Supported values:
DRAFT
,VERSIONED
,RELEASED
. - total
Released DoubleVersions - Total number of released versions.
- total
Versions Double - Total number of versions.
- updated
At String - Date when entity was last updated. Date and time format is ISO 8601 and UTC.
- updated
By String - The user who last updated the entity.
- valid Boolean
- Flag to indicate if the current content of the cloud template/blueprint is valid.
- validation
Messages List<BlueprintValidation Message> - List of validations messages.
- message - Validation message.
- blueprint
Id string - ID of cloud template.
- content string
- Blueprint YAML content.
- content
Source stringId - ID of content source.
- content
Source stringPath - Content source path.
- content
Source stringSync At - Date when content source was last synced. The date is in ISO 8601 and UTC.
- content
Source string[]Sync Messages - Content source last sync messages.
- content
Source stringSync Status - Content source last sync status. Supported values:
SUCCESSFUL
,FAILED
. - content
Source stringType - Content source type.
- created
At string - Date when entity was created. The date is in ISO 8601 and UTC.
- created
By string - The user who created entity.
- description string
- Human-friendly description.
- name string
- Human-friendly name used as an identifier in APIs that support this option.
- org
Id string - ID of organization that entity belongs to.
- project
Id string - ID of project that entity belongs to.
- project
Name string - Name of project that entity belongs to.
- request
Scope booleanOrg - Flag to indicate whether blueprint can be requested from any project in the organization that entity belongs to.
- self
Link string - HATEOAS of entity.
- status string
- Status of cloud template. Supported values:
DRAFT
,VERSIONED
,RELEASED
. - total
Released numberVersions - Total number of released versions.
- total
Versions number - Total number of versions.
- updated
At string - Date when entity was last updated. Date and time format is ISO 8601 and UTC.
- updated
By string - The user who last updated the entity.
- valid boolean
- Flag to indicate if the current content of the cloud template/blueprint is valid.
- validation
Messages BlueprintValidation Message[] - List of validations messages.
- message - Validation message.
- blueprint_
id str - ID of cloud template.
- content str
- Blueprint YAML content.
- content_
source_ strid - ID of content source.
- content_
source_ strpath - Content source path.
- content_
source_ strsync_ at - Date when content source was last synced. The date is in ISO 8601 and UTC.
- content_
source_ Sequence[str]sync_ messages - Content source last sync messages.
- content_
source_ strsync_ status - Content source last sync status. Supported values:
SUCCESSFUL
,FAILED
. - content_
source_ strtype - Content source type.
- created_
at str - Date when entity was created. The date is in ISO 8601 and UTC.
- created_
by str - The user who created entity.
- description str
- Human-friendly description.
- name str
- Human-friendly name used as an identifier in APIs that support this option.
- org_
id str - ID of organization that entity belongs to.
- project_
id str - ID of project that entity belongs to.
- project_
name str - Name of project that entity belongs to.
- request_
scope_ boolorg - Flag to indicate whether blueprint can be requested from any project in the organization that entity belongs to.
- self_
link str - HATEOAS of entity.
- status str
- Status of cloud template. Supported values:
DRAFT
,VERSIONED
,RELEASED
. - total_
released_ floatversions - Total number of released versions.
- total_
versions float - Total number of versions.
- updated_
at str - Date when entity was last updated. Date and time format is ISO 8601 and UTC.
- updated_
by str - The user who last updated the entity.
- valid bool
- Flag to indicate if the current content of the cloud template/blueprint is valid.
- validation_
messages Sequence[BlueprintValidation Message Args] - List of validations messages.
- message - Validation message.
- blueprint
Id String - ID of cloud template.
- content String
- Blueprint YAML content.
- content
Source StringId - ID of content source.
- content
Source StringPath - Content source path.
- content
Source StringSync At - Date when content source was last synced. The date is in ISO 8601 and UTC.
- content
Source List<String>Sync Messages - Content source last sync messages.
- content
Source StringSync Status - Content source last sync status. Supported values:
SUCCESSFUL
,FAILED
. - content
Source StringType - Content source type.
- created
At String - Date when entity was created. The date is in ISO 8601 and UTC.
- created
By String - The user who created entity.
- description String
- Human-friendly description.
- name String
- Human-friendly name used as an identifier in APIs that support this option.
- org
Id String - ID of organization that entity belongs to.
- project
Id String - ID of project that entity belongs to.
- project
Name String - Name of project that entity belongs to.
- request
Scope BooleanOrg - Flag to indicate whether blueprint can be requested from any project in the organization that entity belongs to.
- self
Link String - HATEOAS of entity.
- status String
- Status of cloud template. Supported values:
DRAFT
,VERSIONED
,RELEASED
. - total
Released NumberVersions - Total number of released versions.
- total
Versions Number - Total number of versions.
- updated
At String - Date when entity was last updated. Date and time format is ISO 8601 and UTC.
- updated
By String - The user who last updated the entity.
- valid Boolean
- Flag to indicate if the current content of the cloud template/blueprint is valid.
- validation
Messages List<Property Map> - List of validations messages.
- message - Validation message.
Supporting Types
BlueprintValidationMessage, BlueprintValidationMessageArgs
- Message string
- Metadata Dictionary<string, string>
- Path string
- Resource
Name string - Type string
- Message string
- Metadata map[string]string
- Path string
- Resource
Name string - Type string
- message String
- metadata Map<String,String>
- path String
- resource
Name String - type String
- message string
- metadata {[key: string]: string}
- path string
- resource
Name string - type string
- message str
- metadata Mapping[str, str]
- path str
- resource_
name str - type str
- message String
- metadata Map<String>
- path String
- resource
Name String - type String
Import
To import the cloud template, use the ID as in the following example:
$ pulumi import vra:index/blueprint:Blueprint this 05956583-6488-4e7d-84c9-92a7b7219a15`
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- vra vmware/terraform-provider-vra
- License
- Notes
- This Pulumi package is based on the
vra
Terraform Provider.