Viewing docs for vra 0.17.0
published on Tuesday, Mar 10, 2026 by vmware
published on Tuesday, Mar 10, 2026 by vmware
Viewing docs for vra 0.17.0
published on Tuesday, Mar 10, 2026 by vmware
published on Tuesday, Mar 10, 2026 by vmware
This data source provides information about a deployment.
Example Usage
S
This is an example of how to get deployment by its name.
import * as pulumi from "@pulumi/pulumi";
import * as vra from "@pulumi/vra";
const _this = vra.getDeployment({
name: deploymentName,
});
import pulumi
import pulumi_vra as vra
this = vra.get_deployment(name=deployment_name)
package main
import (
"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.LookupDeployment(ctx, &vra.LookupDeploymentArgs{
Name: pulumi.StringRef(deploymentName),
}, nil)
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 = Vra.GetDeployment.Invoke(new()
{
Name = deploymentName,
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.vra.VraFunctions;
import com.pulumi.vra.inputs.GetDeploymentArgs;
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) {
final var this = VraFunctions.getDeployment(GetDeploymentArgs.builder()
.name(deploymentName)
.build());
}
}
variables:
this:
fn::invoke:
function: vra:getDeployment
arguments:
name: ${deploymentName}
This is an example of how to get a cloud template by its id.
import * as pulumi from "@pulumi/pulumi";
import * as vra from "@pulumi/vra";
const _this = vra.getDeployment({
id: deploymentId,
});
import pulumi
import pulumi_vra as vra
this = vra.get_deployment(id=deployment_id)
package main
import (
"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.LookupDeployment(ctx, &vra.LookupDeploymentArgs{
Id: pulumi.StringRef(deploymentId),
}, nil)
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 = Vra.GetDeployment.Invoke(new()
{
Id = deploymentId,
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.vra.VraFunctions;
import com.pulumi.vra.inputs.GetDeploymentArgs;
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) {
final var this = VraFunctions.getDeployment(GetDeploymentArgs.builder()
.id(deploymentId)
.build());
}
}
variables:
this:
fn::invoke:
function: vra:getDeployment
arguments:
id: ${deploymentId}
Using getDeployment
Two invocation forms are available. The direct form accepts plain arguments and either blocks until the result value is available, or returns a Promise-wrapped result. The output form accepts Input-wrapped arguments and returns an Output-wrapped result.
function getDeployment(args: GetDeploymentArgs, opts?: InvokeOptions): Promise<GetDeploymentResult>
function getDeploymentOutput(args: GetDeploymentOutputArgs, opts?: InvokeOptions): Output<GetDeploymentResult>def get_deployment(expand_last_request: Optional[bool] = None,
expand_project: Optional[bool] = None,
expand_resources: Optional[bool] = None,
id: Optional[str] = None,
name: Optional[str] = None,
opts: Optional[InvokeOptions] = None) -> GetDeploymentResult
def get_deployment_output(expand_last_request: Optional[pulumi.Input[bool]] = None,
expand_project: Optional[pulumi.Input[bool]] = None,
expand_resources: Optional[pulumi.Input[bool]] = None,
id: Optional[pulumi.Input[str]] = None,
name: Optional[pulumi.Input[str]] = None,
opts: Optional[InvokeOptions] = None) -> Output[GetDeploymentResult]func LookupDeployment(ctx *Context, args *LookupDeploymentArgs, opts ...InvokeOption) (*LookupDeploymentResult, error)
func LookupDeploymentOutput(ctx *Context, args *LookupDeploymentOutputArgs, opts ...InvokeOption) LookupDeploymentResultOutput> Note: This function is named LookupDeployment in the Go SDK.
public static class GetDeployment
{
public static Task<GetDeploymentResult> InvokeAsync(GetDeploymentArgs args, InvokeOptions? opts = null)
public static Output<GetDeploymentResult> Invoke(GetDeploymentInvokeArgs args, InvokeOptions? opts = null)
}public static CompletableFuture<GetDeploymentResult> getDeployment(GetDeploymentArgs args, InvokeOptions options)
public static Output<GetDeploymentResult> getDeployment(GetDeploymentArgs args, InvokeOptions options)
fn::invoke:
function: vra:index/getDeployment:getDeployment
arguments:
# arguments dictionaryThe following arguments are supported:
- Expand
Last boolRequest - Flag to indicate whether to expand last request on the deployment.
- Expand
Project bool - Flag to indicate whether to expand project information.
- Expand
Resources bool - Flag to indicate whether to expand resources in the deployment.
- Id string
- The id of the deployment. One of
idornamemust be provided. - Name string
- The name of the deployment. One of
idornamemust be provided.
- Expand
Last boolRequest - Flag to indicate whether to expand last request on the deployment.
- Expand
Project bool - Flag to indicate whether to expand project information.
- Expand
Resources bool - Flag to indicate whether to expand resources in the deployment.
- Id string
- The id of the deployment. One of
idornamemust be provided. - Name string
- The name of the deployment. One of
idornamemust be provided.
- expand
Last BooleanRequest - Flag to indicate whether to expand last request on the deployment.
- expand
Project Boolean - Flag to indicate whether to expand project information.
- expand
Resources Boolean - Flag to indicate whether to expand resources in the deployment.
- id String
- The id of the deployment. One of
idornamemust be provided. - name String
- The name of the deployment. One of
idornamemust be provided.
- expand
Last booleanRequest - Flag to indicate whether to expand last request on the deployment.
- expand
Project boolean - Flag to indicate whether to expand project information.
- expand
Resources boolean - Flag to indicate whether to expand resources in the deployment.
- id string
- The id of the deployment. One of
idornamemust be provided. - name string
- The name of the deployment. One of
idornamemust be provided.
- expand_
last_ boolrequest - Flag to indicate whether to expand last request on the deployment.
- expand_
project bool - Flag to indicate whether to expand project information.
- expand_
resources bool - Flag to indicate whether to expand resources in the deployment.
- id str
- The id of the deployment. One of
idornamemust be provided. - name str
- The name of the deployment. One of
idornamemust be provided.
- expand
Last BooleanRequest - Flag to indicate whether to expand last request on the deployment.
- expand
Project Boolean - Flag to indicate whether to expand project information.
- expand
Resources Boolean - Flag to indicate whether to expand resources in the deployment.
- id String
- The id of the deployment. One of
idornamemust be provided. - name String
- The name of the deployment. One of
idornamemust be provided.
getDeployment Result
The following output properties are available:
- Blueprint
Id string - Identifier of the requested blueprint in the form
UUID:version. - Blueprint
Version string - The version of the cloud template used to request the deployment.
- Catalog
Item stringId - Identifier of the requested catalog item in the form
UUID:version. - Catalog
Item stringVersion - The version of the catalog item used to request the deployment.
- Created
At string - Creation time (e.g. date format
2019-07-13T23:16:49.310Z). - Created
By string - The user the entity was created by.
- Description string
- A description of the resource.
- Expenses
List<Get
Deployment Expense> - Expense incurred for this resource.
- Id string
- Unique identifier of the resource.
- Inputs Dictionary<string, string>
- List of request inputs.
- Last
Requests List<GetDeployment Last Request> - Represents deployment requests.
- Last
Updated stringAt - Date when the entity was last updated. The date is in ISO 6801 and UTC.
- Last
Updated stringBy - The user that last updated the deployment.
- Lease
Expire stringAt - Date when the deployment lease expire. The date is in ISO 6801 and UTC.
- Name string
- Name of the resource.
- Org
Id string - The Id of the organization this deployment belongs to.
- Owner string
- The user this deployment belongs to.
- Project
Id string - The id of the project this deployment belongs to.
- Projects
List<Get
Deployment Project> - The project this entity belongs to.
- Resources
List<Get
Deployment Resource> - Expanded resources for the deployment. Content of this property will not be maintained backward compatible.
- Status string
- The status of the deployment with respect to its life cycle operations.
- Expand
Last boolRequest - Expand
Project bool - Expand
Resources bool
- Blueprint
Id string - Identifier of the requested blueprint in the form
UUID:version. - Blueprint
Version string - The version of the cloud template used to request the deployment.
- Catalog
Item stringId - Identifier of the requested catalog item in the form
UUID:version. - Catalog
Item stringVersion - The version of the catalog item used to request the deployment.
- Created
At string - Creation time (e.g. date format
2019-07-13T23:16:49.310Z). - Created
By string - The user the entity was created by.
- Description string
- A description of the resource.
- Expenses
[]Get
Deployment Expense - Expense incurred for this resource.
- Id string
- Unique identifier of the resource.
- Inputs map[string]string
- List of request inputs.
- Last
Requests []GetDeployment Last Request - Represents deployment requests.
- Last
Updated stringAt - Date when the entity was last updated. The date is in ISO 6801 and UTC.
- Last
Updated stringBy - The user that last updated the deployment.
- Lease
Expire stringAt - Date when the deployment lease expire. The date is in ISO 6801 and UTC.
- Name string
- Name of the resource.
- Org
Id string - The Id of the organization this deployment belongs to.
- Owner string
- The user this deployment belongs to.
- Project
Id string - The id of the project this deployment belongs to.
- Projects
[]Get
Deployment Project - The project this entity belongs to.
- Resources
[]Get
Deployment Resource - Expanded resources for the deployment. Content of this property will not be maintained backward compatible.
- Status string
- The status of the deployment with respect to its life cycle operations.
- Expand
Last boolRequest - Expand
Project bool - Expand
Resources bool
- blueprint
Id String - Identifier of the requested blueprint in the form
UUID:version. - blueprint
Version String - The version of the cloud template used to request the deployment.
- catalog
Item StringId - Identifier of the requested catalog item in the form
UUID:version. - catalog
Item StringVersion - The version of the catalog item used to request the deployment.
- created
At String - Creation time (e.g. date format
2019-07-13T23:16:49.310Z). - created
By String - The user the entity was created by.
- description String
- A description of the resource.
- expenses
List<Get
Deployment Expense> - Expense incurred for this resource.
- id String
- Unique identifier of the resource.
- inputs Map<String,String>
- List of request inputs.
- last
Requests List<GetDeployment Last Request> - Represents deployment requests.
- last
Updated StringAt - Date when the entity was last updated. The date is in ISO 6801 and UTC.
- last
Updated StringBy - The user that last updated the deployment.
- lease
Expire StringAt - Date when the deployment lease expire. The date is in ISO 6801 and UTC.
- name String
- Name of the resource.
- org
Id String - The Id of the organization this deployment belongs to.
- owner String
- The user this deployment belongs to.
- project
Id String - The id of the project this deployment belongs to.
- projects
List<Get
Deployment Project> - The project this entity belongs to.
- resources
List<Get
Deployment Resource> - Expanded resources for the deployment. Content of this property will not be maintained backward compatible.
- status String
- The status of the deployment with respect to its life cycle operations.
- expand
Last BooleanRequest - expand
Project Boolean - expand
Resources Boolean
- blueprint
Id string - Identifier of the requested blueprint in the form
UUID:version. - blueprint
Version string - The version of the cloud template used to request the deployment.
- catalog
Item stringId - Identifier of the requested catalog item in the form
UUID:version. - catalog
Item stringVersion - The version of the catalog item used to request the deployment.
- created
At string - Creation time (e.g. date format
2019-07-13T23:16:49.310Z). - created
By string - The user the entity was created by.
- description string
- A description of the resource.
- expenses
Get
Deployment Expense[] - Expense incurred for this resource.
- id string
- Unique identifier of the resource.
- inputs {[key: string]: string}
- List of request inputs.
- last
Requests GetDeployment Last Request[] - Represents deployment requests.
- last
Updated stringAt - Date when the entity was last updated. The date is in ISO 6801 and UTC.
- last
Updated stringBy - The user that last updated the deployment.
- lease
Expire stringAt - Date when the deployment lease expire. The date is in ISO 6801 and UTC.
- name string
- Name of the resource.
- org
Id string - The Id of the organization this deployment belongs to.
- owner string
- The user this deployment belongs to.
- project
Id string - The id of the project this deployment belongs to.
- projects
Get
Deployment Project[] - The project this entity belongs to.
- resources
Get
Deployment Resource[] - Expanded resources for the deployment. Content of this property will not be maintained backward compatible.
- status string
- The status of the deployment with respect to its life cycle operations.
- expand
Last booleanRequest - expand
Project boolean - expand
Resources boolean
- blueprint_
id str - Identifier of the requested blueprint in the form
UUID:version. - blueprint_
version str - The version of the cloud template used to request the deployment.
- catalog_
item_ strid - Identifier of the requested catalog item in the form
UUID:version. - catalog_
item_ strversion - The version of the catalog item used to request the deployment.
- created_
at str - Creation time (e.g. date format
2019-07-13T23:16:49.310Z). - created_
by str - The user the entity was created by.
- description str
- A description of the resource.
- expenses
Sequence[Get
Deployment Expense] - Expense incurred for this resource.
- id str
- Unique identifier of the resource.
- inputs Mapping[str, str]
- List of request inputs.
- last_
requests Sequence[GetDeployment Last Request] - Represents deployment requests.
- last_
updated_ strat - Date when the entity was last updated. The date is in ISO 6801 and UTC.
- last_
updated_ strby - The user that last updated the deployment.
- lease_
expire_ strat - Date when the deployment lease expire. The date is in ISO 6801 and UTC.
- name str
- Name of the resource.
- org_
id str - The Id of the organization this deployment belongs to.
- owner str
- The user this deployment belongs to.
- project_
id str - The id of the project this deployment belongs to.
- projects
Sequence[Get
Deployment Project] - The project this entity belongs to.
- resources
Sequence[Get
Deployment Resource] - Expanded resources for the deployment. Content of this property will not be maintained backward compatible.
- status str
- The status of the deployment with respect to its life cycle operations.
- expand_
last_ boolrequest - expand_
project bool - expand_
resources bool
- blueprint
Id String - Identifier of the requested blueprint in the form
UUID:version. - blueprint
Version String - The version of the cloud template used to request the deployment.
- catalog
Item StringId - Identifier of the requested catalog item in the form
UUID:version. - catalog
Item StringVersion - The version of the catalog item used to request the deployment.
- created
At String - Creation time (e.g. date format
2019-07-13T23:16:49.310Z). - created
By String - The user the entity was created by.
- description String
- A description of the resource.
- expenses List<Property Map>
- Expense incurred for this resource.
- id String
- Unique identifier of the resource.
- inputs Map<String>
- List of request inputs.
- last
Requests List<Property Map> - Represents deployment requests.
- last
Updated StringAt - Date when the entity was last updated. The date is in ISO 6801 and UTC.
- last
Updated StringBy - The user that last updated the deployment.
- lease
Expire StringAt - Date when the deployment lease expire. The date is in ISO 6801 and UTC.
- name String
- Name of the resource.
- org
Id String - The Id of the organization this deployment belongs to.
- owner String
- The user this deployment belongs to.
- project
Id String - The id of the project this deployment belongs to.
- projects List<Property Map>
- The project this entity belongs to.
- resources List<Property Map>
- Expanded resources for the deployment. Content of this property will not be maintained backward compatible.
- status String
- The status of the deployment with respect to its life cycle operations.
- expand
Last BooleanRequest - expand
Project Boolean - expand
Resources Boolean
Supporting Types
GetDeploymentExpense
- Additional
Expense double - Additional expense incurred for the resource.
- Code string
- Expense sync message code if any.
- Compute
Expense double - Compute expense of the entity.
- Last
Update stringTime - Last expense sync time.
- Message string
- Expense sync message if any.
- Network
Expense double - Network expense of the entity.
- Storage
Expense double - Storage expense of the entity.
- Total
Expense double - Total expense of the entity.
- Unit string
- Monetary unit.
- Additional
Expense float64 - Additional expense incurred for the resource.
- Code string
- Expense sync message code if any.
- Compute
Expense float64 - Compute expense of the entity.
- Last
Update stringTime - Last expense sync time.
- Message string
- Expense sync message if any.
- Network
Expense float64 - Network expense of the entity.
- Storage
Expense float64 - Storage expense of the entity.
- Total
Expense float64 - Total expense of the entity.
- Unit string
- Monetary unit.
- additional
Expense Double - Additional expense incurred for the resource.
- code String
- Expense sync message code if any.
- compute
Expense Double - Compute expense of the entity.
- last
Update StringTime - Last expense sync time.
- message String
- Expense sync message if any.
- network
Expense Double - Network expense of the entity.
- storage
Expense Double - Storage expense of the entity.
- total
Expense Double - Total expense of the entity.
- unit String
- Monetary unit.
- additional
Expense number - Additional expense incurred for the resource.
- code string
- Expense sync message code if any.
- compute
Expense number - Compute expense of the entity.
- last
Update stringTime - Last expense sync time.
- message string
- Expense sync message if any.
- network
Expense number - Network expense of the entity.
- storage
Expense number - Storage expense of the entity.
- total
Expense number - Total expense of the entity.
- unit string
- Monetary unit.
- additional_
expense float - Additional expense incurred for the resource.
- code str
- Expense sync message code if any.
- compute_
expense float - Compute expense of the entity.
- last_
update_ strtime - Last expense sync time.
- message str
- Expense sync message if any.
- network_
expense float - Network expense of the entity.
- storage_
expense float - Storage expense of the entity.
- total_
expense float - Total expense of the entity.
- unit str
- Monetary unit.
- additional
Expense Number - Additional expense incurred for the resource.
- code String
- Expense sync message code if any.
- compute
Expense Number - Compute expense of the entity.
- last
Update StringTime - Last expense sync time.
- message String
- Expense sync message if any.
- network
Expense Number - Network expense of the entity.
- storage
Expense Number - Storage expense of the entity.
- total
Expense Number - Total expense of the entity.
- unit String
- Monetary unit.
GetDeploymentLastRequest
- Action
Id string - Identifier of the requested action.
- Approved
At string - Time at which the request was approved.
- Blueprint
Id string - Identifier of the requested blueprint in the form
UUID:version. - Cancelable bool
- Indicates whether request can be canceled or not.
- Catalog
Item stringId - Identifier of the requested catalog item in the form
UUID:version. - Completed
At string - Time at which the request completed.
- Completed
Tasks double - The number of tasks completed while fulfilling this request.
- Created
At string - Creation time (e.g. date format
2019-07-13T23:16:49.310Z). - Details string
- Longer user-friendly details of the request.
- Dismissed bool
- Indicates whether request is in dismissed state.
- Id string
- The id of the deployment. One of
idornamemust be provided. - Initialized
At string - Time at which the request was initialized.
- Inputs Dictionary<string, string>
- List of request inputs.
- Name string
- The name of the deployment. One of
idornamemust be provided. - Outputs Dictionary<string, string>
- Request outputs.
- Requested
By string - The user that initiated the request.
- Resource
Ids List<string> - Status string
- The status of the deployment with respect to its life cycle operations.
- Total
Tasks double - The total number of tasks need to be completed to fulfil this request.
- Updated
At string - Last update time (e.g. date format
2019-07-13T23:16:49.310Z).
- Action
Id string - Identifier of the requested action.
- Approved
At string - Time at which the request was approved.
- Blueprint
Id string - Identifier of the requested blueprint in the form
UUID:version. - Cancelable bool
- Indicates whether request can be canceled or not.
- Catalog
Item stringId - Identifier of the requested catalog item in the form
UUID:version. - Completed
At string - Time at which the request completed.
- Completed
Tasks float64 - The number of tasks completed while fulfilling this request.
- Created
At string - Creation time (e.g. date format
2019-07-13T23:16:49.310Z). - Details string
- Longer user-friendly details of the request.
- Dismissed bool
- Indicates whether request is in dismissed state.
- Id string
- The id of the deployment. One of
idornamemust be provided. - Initialized
At string - Time at which the request was initialized.
- Inputs map[string]string
- List of request inputs.
- Name string
- The name of the deployment. One of
idornamemust be provided. - Outputs map[string]string
- Request outputs.
- Requested
By string - The user that initiated the request.
- Resource
Ids []string - Status string
- The status of the deployment with respect to its life cycle operations.
- Total
Tasks float64 - The total number of tasks need to be completed to fulfil this request.
- Updated
At string - Last update time (e.g. date format
2019-07-13T23:16:49.310Z).
- action
Id String - Identifier of the requested action.
- approved
At String - Time at which the request was approved.
- blueprint
Id String - Identifier of the requested blueprint in the form
UUID:version. - cancelable Boolean
- Indicates whether request can be canceled or not.
- catalog
Item StringId - Identifier of the requested catalog item in the form
UUID:version. - completed
At String - Time at which the request completed.
- completed
Tasks Double - The number of tasks completed while fulfilling this request.
- created
At String - Creation time (e.g. date format
2019-07-13T23:16:49.310Z). - details String
- Longer user-friendly details of the request.
- dismissed Boolean
- Indicates whether request is in dismissed state.
- id String
- The id of the deployment. One of
idornamemust be provided. - initialized
At String - Time at which the request was initialized.
- inputs Map<String,String>
- List of request inputs.
- name String
- The name of the deployment. One of
idornamemust be provided. - outputs Map<String,String>
- Request outputs.
- requested
By String - The user that initiated the request.
- resource
Ids List<String> - status String
- The status of the deployment with respect to its life cycle operations.
- total
Tasks Double - The total number of tasks need to be completed to fulfil this request.
- updated
At String - Last update time (e.g. date format
2019-07-13T23:16:49.310Z).
- action
Id string - Identifier of the requested action.
- approved
At string - Time at which the request was approved.
- blueprint
Id string - Identifier of the requested blueprint in the form
UUID:version. - cancelable boolean
- Indicates whether request can be canceled or not.
- catalog
Item stringId - Identifier of the requested catalog item in the form
UUID:version. - completed
At string - Time at which the request completed.
- completed
Tasks number - The number of tasks completed while fulfilling this request.
- created
At string - Creation time (e.g. date format
2019-07-13T23:16:49.310Z). - details string
- Longer user-friendly details of the request.
- dismissed boolean
- Indicates whether request is in dismissed state.
- id string
- The id of the deployment. One of
idornamemust be provided. - initialized
At string - Time at which the request was initialized.
- inputs {[key: string]: string}
- List of request inputs.
- name string
- The name of the deployment. One of
idornamemust be provided. - outputs {[key: string]: string}
- Request outputs.
- requested
By string - The user that initiated the request.
- resource
Ids string[] - status string
- The status of the deployment with respect to its life cycle operations.
- total
Tasks number - The total number of tasks need to be completed to fulfil this request.
- updated
At string - Last update time (e.g. date format
2019-07-13T23:16:49.310Z).
- action_
id str - Identifier of the requested action.
- approved_
at str - Time at which the request was approved.
- blueprint_
id str - Identifier of the requested blueprint in the form
UUID:version. - cancelable bool
- Indicates whether request can be canceled or not.
- catalog_
item_ strid - Identifier of the requested catalog item in the form
UUID:version. - completed_
at str - Time at which the request completed.
- completed_
tasks float - The number of tasks completed while fulfilling this request.
- created_
at str - Creation time (e.g. date format
2019-07-13T23:16:49.310Z). - details str
- Longer user-friendly details of the request.
- dismissed bool
- Indicates whether request is in dismissed state.
- id str
- The id of the deployment. One of
idornamemust be provided. - initialized_
at str - Time at which the request was initialized.
- inputs Mapping[str, str]
- List of request inputs.
- name str
- The name of the deployment. One of
idornamemust be provided. - outputs Mapping[str, str]
- Request outputs.
- requested_
by str - The user that initiated the request.
- resource_
ids Sequence[str] - status str
- The status of the deployment with respect to its life cycle operations.
- total_
tasks float - The total number of tasks need to be completed to fulfil this request.
- updated_
at str - Last update time (e.g. date format
2019-07-13T23:16:49.310Z).
- action
Id String - Identifier of the requested action.
- approved
At String - Time at which the request was approved.
- blueprint
Id String - Identifier of the requested blueprint in the form
UUID:version. - cancelable Boolean
- Indicates whether request can be canceled or not.
- catalog
Item StringId - Identifier of the requested catalog item in the form
UUID:version. - completed
At String - Time at which the request completed.
- completed
Tasks Number - The number of tasks completed while fulfilling this request.
- created
At String - Creation time (e.g. date format
2019-07-13T23:16:49.310Z). - details String
- Longer user-friendly details of the request.
- dismissed Boolean
- Indicates whether request is in dismissed state.
- id String
- The id of the deployment. One of
idornamemust be provided. - initialized
At String - Time at which the request was initialized.
- inputs Map<String>
- List of request inputs.
- name String
- The name of the deployment. One of
idornamemust be provided. - outputs Map<String>
- Request outputs.
- requested
By String - The user that initiated the request.
- resource
Ids List<String> - status String
- The status of the deployment with respect to its life cycle operations.
- total
Tasks Number - The total number of tasks need to be completed to fulfil this request.
- updated
At String - Last update time (e.g. date format
2019-07-13T23:16:49.310Z).
GetDeploymentProject
- Description string
- A description of the resource.
- Id string
- The id of the deployment. One of
idornamemust be provided. - Name string
- The name of the deployment. One of
idornamemust be provided. - Version string
- Version of the entity, if applicable.
- Description string
- A description of the resource.
- Id string
- The id of the deployment. One of
idornamemust be provided. - Name string
- The name of the deployment. One of
idornamemust be provided. - Version string
- Version of the entity, if applicable.
- description String
- A description of the resource.
- id String
- The id of the deployment. One of
idornamemust be provided. - name String
- The name of the deployment. One of
idornamemust be provided. - version String
- Version of the entity, if applicable.
- description string
- A description of the resource.
- id string
- The id of the deployment. One of
idornamemust be provided. - name string
- The name of the deployment. One of
idornamemust be provided. - version string
- Version of the entity, if applicable.
- description str
- A description of the resource.
- id str
- The id of the deployment. One of
idornamemust be provided. - name str
- The name of the deployment. One of
idornamemust be provided. - version str
- Version of the entity, if applicable.
- description String
- A description of the resource.
- id String
- The id of the deployment. One of
idornamemust be provided. - name String
- The name of the deployment. One of
idornamemust be provided. - version String
- Version of the entity, if applicable.
GetDeploymentResource
- Created
At string - Creation time (e.g. date format
2019-07-13T23:16:49.310Z). - Depends
Ons List<string> - A list of other resources this resource depends on.
- Description string
- A description of the resource.
- Expenses
List<Get
Deployment Resource Expense> - Expense incurred for this resource.
- Id string
- The id of the deployment. One of
idornamemust be provided. - Name string
- The name of the deployment. One of
idornamemust be provided. - Properties
Json string - List of properties in the encoded JSON string format.
- State string
- The current state of the resource. Supported values are
PARTIAL,TAINTED,OK. - Sync
Status string - The current sync status. Supported values are
SUCCESS,MISSING,STALE. - Type string
- Type of the resource.
- Created
At string - Creation time (e.g. date format
2019-07-13T23:16:49.310Z). - Depends
Ons []string - A list of other resources this resource depends on.
- Description string
- A description of the resource.
- Expenses
[]Get
Deployment Resource Expense - Expense incurred for this resource.
- Id string
- The id of the deployment. One of
idornamemust be provided. - Name string
- The name of the deployment. One of
idornamemust be provided. - Properties
Json string - List of properties in the encoded JSON string format.
- State string
- The current state of the resource. Supported values are
PARTIAL,TAINTED,OK. - Sync
Status string - The current sync status. Supported values are
SUCCESS,MISSING,STALE. - Type string
- Type of the resource.
- created
At String - Creation time (e.g. date format
2019-07-13T23:16:49.310Z). - depends
Ons List<String> - A list of other resources this resource depends on.
- description String
- A description of the resource.
- expenses
List<Get
Deployment Resource Expense> - Expense incurred for this resource.
- id String
- The id of the deployment. One of
idornamemust be provided. - name String
- The name of the deployment. One of
idornamemust be provided. - properties
Json String - List of properties in the encoded JSON string format.
- state String
- The current state of the resource. Supported values are
PARTIAL,TAINTED,OK. - sync
Status String - The current sync status. Supported values are
SUCCESS,MISSING,STALE. - type String
- Type of the resource.
- created
At string - Creation time (e.g. date format
2019-07-13T23:16:49.310Z). - depends
Ons string[] - A list of other resources this resource depends on.
- description string
- A description of the resource.
- expenses
Get
Deployment Resource Expense[] - Expense incurred for this resource.
- id string
- The id of the deployment. One of
idornamemust be provided. - name string
- The name of the deployment. One of
idornamemust be provided. - properties
Json string - List of properties in the encoded JSON string format.
- state string
- The current state of the resource. Supported values are
PARTIAL,TAINTED,OK. - sync
Status string - The current sync status. Supported values are
SUCCESS,MISSING,STALE. - type string
- Type of the resource.
- created_
at str - Creation time (e.g. date format
2019-07-13T23:16:49.310Z). - depends_
ons Sequence[str] - A list of other resources this resource depends on.
- description str
- A description of the resource.
- expenses
Sequence[Get
Deployment Resource Expense] - Expense incurred for this resource.
- id str
- The id of the deployment. One of
idornamemust be provided. - name str
- The name of the deployment. One of
idornamemust be provided. - properties_
json str - List of properties in the encoded JSON string format.
- state str
- The current state of the resource. Supported values are
PARTIAL,TAINTED,OK. - sync_
status str - The current sync status. Supported values are
SUCCESS,MISSING,STALE. - type str
- Type of the resource.
- created
At String - Creation time (e.g. date format
2019-07-13T23:16:49.310Z). - depends
Ons List<String> - A list of other resources this resource depends on.
- description String
- A description of the resource.
- expenses List<Property Map>
- Expense incurred for this resource.
- id String
- The id of the deployment. One of
idornamemust be provided. - name String
- The name of the deployment. One of
idornamemust be provided. - properties
Json String - List of properties in the encoded JSON string format.
- state String
- The current state of the resource. Supported values are
PARTIAL,TAINTED,OK. - sync
Status String - The current sync status. Supported values are
SUCCESS,MISSING,STALE. - type String
- Type of the resource.
GetDeploymentResourceExpense
- Additional
Expense double - Additional expense incurred for the resource.
- Code string
- Expense sync message code if any.
- Compute
Expense double - Compute expense of the entity.
- Last
Update stringTime - Last expense sync time.
- Message string
- Expense sync message if any.
- Network
Expense double - Network expense of the entity.
- Storage
Expense double - Storage expense of the entity.
- Total
Expense double - Total expense of the entity.
- Unit string
- Monetary unit.
- Additional
Expense float64 - Additional expense incurred for the resource.
- Code string
- Expense sync message code if any.
- Compute
Expense float64 - Compute expense of the entity.
- Last
Update stringTime - Last expense sync time.
- Message string
- Expense sync message if any.
- Network
Expense float64 - Network expense of the entity.
- Storage
Expense float64 - Storage expense of the entity.
- Total
Expense float64 - Total expense of the entity.
- Unit string
- Monetary unit.
- additional
Expense Double - Additional expense incurred for the resource.
- code String
- Expense sync message code if any.
- compute
Expense Double - Compute expense of the entity.
- last
Update StringTime - Last expense sync time.
- message String
- Expense sync message if any.
- network
Expense Double - Network expense of the entity.
- storage
Expense Double - Storage expense of the entity.
- total
Expense Double - Total expense of the entity.
- unit String
- Monetary unit.
- additional
Expense number - Additional expense incurred for the resource.
- code string
- Expense sync message code if any.
- compute
Expense number - Compute expense of the entity.
- last
Update stringTime - Last expense sync time.
- message string
- Expense sync message if any.
- network
Expense number - Network expense of the entity.
- storage
Expense number - Storage expense of the entity.
- total
Expense number - Total expense of the entity.
- unit string
- Monetary unit.
- additional_
expense float - Additional expense incurred for the resource.
- code str
- Expense sync message code if any.
- compute_
expense float - Compute expense of the entity.
- last_
update_ strtime - Last expense sync time.
- message str
- Expense sync message if any.
- network_
expense float - Network expense of the entity.
- storage_
expense float - Storage expense of the entity.
- total_
expense float - Total expense of the entity.
- unit str
- Monetary unit.
- additional
Expense Number - Additional expense incurred for the resource.
- code String
- Expense sync message code if any.
- compute
Expense Number - Compute expense of the entity.
- last
Update StringTime - Last expense sync time.
- message String
- Expense sync message if any.
- network
Expense Number - Network expense of the entity.
- storage
Expense Number - Storage expense of the entity.
- total
Expense Number - Total expense of the entity.
- unit String
- Monetary unit.
Package Details
- Repository
- vra vmware/terraform-provider-vra
- License
- Notes
- This Pulumi package is based on the
vraTerraform Provider.
Viewing docs for vra 0.17.0
published on Tuesday, Mar 10, 2026 by vmware
published on Tuesday, Mar 10, 2026 by vmware
