vra 0.12.0 published on Monday, Apr 14, 2025 by vmware
vra.getDeployment
Explore with Pulumi AI
This data source provides information about a deployment in vRA.
Example Usage
S
This is an example of how to get a vRA deployment by its name.
import * as pulumi from "@pulumi/pulumi";
import * as vra from "@pulumi/vra";
const _this = vra.getDeployment({
name: _var.deployment_name,
});
import pulumi
import pulumi_vra as vra
this = vra.get_deployment(name=var["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(_var.Deployment_name),
}, 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 = @var.Deployment_name,
});
});
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(var_.deployment_name())
.build());
}
}
variables:
this:
fn::invoke:
function: vra:getDeployment
arguments:
name: ${var.deployment_name}
This is an example of how to get a vRA cloud template by its id.
import * as pulumi from "@pulumi/pulumi";
import * as vra from "@pulumi/vra";
const _this = vra.getDeployment({
id: _var.deployment_id,
});
import pulumi
import pulumi_vra as vra
this = vra.get_deployment(id=var["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(_var.Deployment_id),
}, 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 = @var.Deployment_id,
});
});
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(var_.deployment_id())
.build());
}
}
variables:
this:
fn::invoke:
function: vra:getDeployment
arguments:
id: ${var.deployment_id}
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 dictionary
The 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
id
orname
must be provided. - Name string
- The name of the deployment. One of
id
orname
must 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
id
orname
must be provided. - Name string
- The name of the deployment. One of
id
orname
must 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
id
orname
must be provided. - name String
- The name of the deployment. One of
id
orname
must 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
id
orname
must be provided. - name string
- The name of the deployment. One of
id
orname
must 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
id
orname
must be provided. - name str
- The name of the deployment. One of
id
orname
must 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
id
orname
must be provided. - name String
- The name of the deployment. One of
id
orname
must 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 This property is required. double - Additional expense incurred for the resource.
- Code
This property is required. string - Expense sync message code if any.
- Compute
Expense This property is required. double - Compute expense of the entity.
- Last
Update Time This property is required. string - Last expense sync time.
- Message
This property is required. string - Expense sync message if any.
- Network
Expense This property is required. double - Network expense of the entity.
- Storage
Expense This property is required. double - Storage expense of the entity.
- Total
Expense This property is required. double - Total expense of the entity.
- Unit
This property is required. string - Monetary unit.
- Additional
Expense This property is required. float64 - Additional expense incurred for the resource.
- Code
This property is required. string - Expense sync message code if any.
- Compute
Expense This property is required. float64 - Compute expense of the entity.
- Last
Update Time This property is required. string - Last expense sync time.
- Message
This property is required. string - Expense sync message if any.
- Network
Expense This property is required. float64 - Network expense of the entity.
- Storage
Expense This property is required. float64 - Storage expense of the entity.
- Total
Expense This property is required. float64 - Total expense of the entity.
- Unit
This property is required. string - Monetary unit.
- additional
Expense This property is required. Double - Additional expense incurred for the resource.
- code
This property is required. String - Expense sync message code if any.
- compute
Expense This property is required. Double - Compute expense of the entity.
- last
Update Time This property is required. String - Last expense sync time.
- message
This property is required. String - Expense sync message if any.
- network
Expense This property is required. Double - Network expense of the entity.
- storage
Expense This property is required. Double - Storage expense of the entity.
- total
Expense This property is required. Double - Total expense of the entity.
- unit
This property is required. String - Monetary unit.
- additional
Expense This property is required. number - Additional expense incurred for the resource.
- code
This property is required. string - Expense sync message code if any.
- compute
Expense This property is required. number - Compute expense of the entity.
- last
Update Time This property is required. string - Last expense sync time.
- message
This property is required. string - Expense sync message if any.
- network
Expense This property is required. number - Network expense of the entity.
- storage
Expense This property is required. number - Storage expense of the entity.
- total
Expense This property is required. number - Total expense of the entity.
- unit
This property is required. string - Monetary unit.
- additional_
expense This property is required. float - Additional expense incurred for the resource.
- code
This property is required. str - Expense sync message code if any.
- compute_
expense This property is required. float - Compute expense of the entity.
- last_
update_ time This property is required. str - Last expense sync time.
- message
This property is required. str - Expense sync message if any.
- network_
expense This property is required. float - Network expense of the entity.
- storage_
expense This property is required. float - Storage expense of the entity.
- total_
expense This property is required. float - Total expense of the entity.
- unit
This property is required. str - Monetary unit.
- additional
Expense This property is required. Number - Additional expense incurred for the resource.
- code
This property is required. String - Expense sync message code if any.
- compute
Expense This property is required. Number - Compute expense of the entity.
- last
Update Time This property is required. String - Last expense sync time.
- message
This property is required. String - Expense sync message if any.
- network
Expense This property is required. Number - Network expense of the entity.
- storage
Expense This property is required. Number - Storage expense of the entity.
- total
Expense This property is required. Number - Total expense of the entity.
- unit
This property is required. String - Monetary unit.
GetDeploymentLastRequest
- Action
Id This property is required. string - Identifier of the requested action.
- Approved
At This property is required. string - Time at which the request was approved.
- Blueprint
Id This property is required. string - Identifier of the requested blueprint in the form ‘UUID:version’.
- Cancelable
This property is required. bool - Indicates whether request can be canceled or not.
- Catalog
Item Id This property is required. string - Identifier of the requested catalog item in the form ‘UUID:version’.
- Completed
At This property is required. string - Time at which the request completed.
- Completed
Tasks This property is required. double - The number of tasks completed while fulfilling this request.
- Created
At This property is required. string - Creation time (e.g. date format ‘2019-07-13T23:16:49.310Z’).
- Details
This property is required. string - Longer user-friendly details of the request.
- Dismissed
This property is required. bool - Indicates whether request is in dismissed state.
- Id
This property is required. string - The id of the deployment. One of
id
orname
must be provided. - Initialized
At This property is required. string - Time at which the request was initialized.
- Inputs
This property is required. Dictionary<string, string> - List of request inputs.
- Name
This property is required. string - The name of the deployment. One of
id
orname
must be provided. - Outputs
This property is required. Dictionary<string, string> - Request outputs.
- Requested
By This property is required. string - The user that initiated the request.
- Resource
Ids This property is required. List<string> - Status
This property is required. string - The status of the deployment with respect to its life cycle operations.
- Total
Tasks This property is required. double - The total number of tasks need to be completed to fulfil this request.
- Updated
At This property is required. string - Last update time (e.g. date format ‘2019-07-13T23:16:49.310Z’).
- Action
Id This property is required. string - Identifier of the requested action.
- Approved
At This property is required. string - Time at which the request was approved.
- Blueprint
Id This property is required. string - Identifier of the requested blueprint in the form ‘UUID:version’.
- Cancelable
This property is required. bool - Indicates whether request can be canceled or not.
- Catalog
Item Id This property is required. string - Identifier of the requested catalog item in the form ‘UUID:version’.
- Completed
At This property is required. string - Time at which the request completed.
- Completed
Tasks This property is required. float64 - The number of tasks completed while fulfilling this request.
- Created
At This property is required. string - Creation time (e.g. date format ‘2019-07-13T23:16:49.310Z’).
- Details
This property is required. string - Longer user-friendly details of the request.
- Dismissed
This property is required. bool - Indicates whether request is in dismissed state.
- Id
This property is required. string - The id of the deployment. One of
id
orname
must be provided. - Initialized
At This property is required. string - Time at which the request was initialized.
- Inputs
This property is required. map[string]string - List of request inputs.
- Name
This property is required. string - The name of the deployment. One of
id
orname
must be provided. - Outputs
This property is required. map[string]string - Request outputs.
- Requested
By This property is required. string - The user that initiated the request.
- Resource
Ids This property is required. []string - Status
This property is required. string - The status of the deployment with respect to its life cycle operations.
- Total
Tasks This property is required. float64 - The total number of tasks need to be completed to fulfil this request.
- Updated
At This property is required. string - Last update time (e.g. date format ‘2019-07-13T23:16:49.310Z’).
- action
Id This property is required. String - Identifier of the requested action.
- approved
At This property is required. String - Time at which the request was approved.
- blueprint
Id This property is required. String - Identifier of the requested blueprint in the form ‘UUID:version’.
- cancelable
This property is required. Boolean - Indicates whether request can be canceled or not.
- catalog
Item Id This property is required. String - Identifier of the requested catalog item in the form ‘UUID:version’.
- completed
At This property is required. String - Time at which the request completed.
- completed
Tasks This property is required. Double - The number of tasks completed while fulfilling this request.
- created
At This property is required. String - Creation time (e.g. date format ‘2019-07-13T23:16:49.310Z’).
- details
This property is required. String - Longer user-friendly details of the request.
- dismissed
This property is required. Boolean - Indicates whether request is in dismissed state.
- id
This property is required. String - The id of the deployment. One of
id
orname
must be provided. - initialized
At This property is required. String - Time at which the request was initialized.
- inputs
This property is required. Map<String,String> - List of request inputs.
- name
This property is required. String - The name of the deployment. One of
id
orname
must be provided. - outputs
This property is required. Map<String,String> - Request outputs.
- requested
By This property is required. String - The user that initiated the request.
- resource
Ids This property is required. List<String> - status
This property is required. String - The status of the deployment with respect to its life cycle operations.
- total
Tasks This property is required. Double - The total number of tasks need to be completed to fulfil this request.
- updated
At This property is required. String - Last update time (e.g. date format ‘2019-07-13T23:16:49.310Z’).
- action
Id This property is required. string - Identifier of the requested action.
- approved
At This property is required. string - Time at which the request was approved.
- blueprint
Id This property is required. string - Identifier of the requested blueprint in the form ‘UUID:version’.
- cancelable
This property is required. boolean - Indicates whether request can be canceled or not.
- catalog
Item Id This property is required. string - Identifier of the requested catalog item in the form ‘UUID:version’.
- completed
At This property is required. string - Time at which the request completed.
- completed
Tasks This property is required. number - The number of tasks completed while fulfilling this request.
- created
At This property is required. string - Creation time (e.g. date format ‘2019-07-13T23:16:49.310Z’).
- details
This property is required. string - Longer user-friendly details of the request.
- dismissed
This property is required. boolean - Indicates whether request is in dismissed state.
- id
This property is required. string - The id of the deployment. One of
id
orname
must be provided. - initialized
At This property is required. string - Time at which the request was initialized.
- inputs
This property is required. {[key: string]: string} - List of request inputs.
- name
This property is required. string - The name of the deployment. One of
id
orname
must be provided. - outputs
This property is required. {[key: string]: string} - Request outputs.
- requested
By This property is required. string - The user that initiated the request.
- resource
Ids This property is required. string[] - status
This property is required. string - The status of the deployment with respect to its life cycle operations.
- total
Tasks This property is required. number - The total number of tasks need to be completed to fulfil this request.
- updated
At This property is required. string - Last update time (e.g. date format ‘2019-07-13T23:16:49.310Z’).
- action_
id This property is required. str - Identifier of the requested action.
- approved_
at This property is required. str - Time at which the request was approved.
- blueprint_
id This property is required. str - Identifier of the requested blueprint in the form ‘UUID:version’.
- cancelable
This property is required. bool - Indicates whether request can be canceled or not.
- catalog_
item_ id This property is required. str - Identifier of the requested catalog item in the form ‘UUID:version’.
- completed_
at This property is required. str - Time at which the request completed.
- completed_
tasks This property is required. float - The number of tasks completed while fulfilling this request.
- created_
at This property is required. str - Creation time (e.g. date format ‘2019-07-13T23:16:49.310Z’).
- details
This property is required. str - Longer user-friendly details of the request.
- dismissed
This property is required. bool - Indicates whether request is in dismissed state.
- id
This property is required. str - The id of the deployment. One of
id
orname
must be provided. - initialized_
at This property is required. str - Time at which the request was initialized.
- inputs
This property is required. Mapping[str, str] - List of request inputs.
- name
This property is required. str - The name of the deployment. One of
id
orname
must be provided. - outputs
This property is required. Mapping[str, str] - Request outputs.
- requested_
by This property is required. str - The user that initiated the request.
- resource_
ids This property is required. Sequence[str] - status
This property is required. str - The status of the deployment with respect to its life cycle operations.
- total_
tasks This property is required. float - The total number of tasks need to be completed to fulfil this request.
- updated_
at This property is required. str - Last update time (e.g. date format ‘2019-07-13T23:16:49.310Z’).
- action
Id This property is required. String - Identifier of the requested action.
- approved
At This property is required. String - Time at which the request was approved.
- blueprint
Id This property is required. String - Identifier of the requested blueprint in the form ‘UUID:version’.
- cancelable
This property is required. Boolean - Indicates whether request can be canceled or not.
- catalog
Item Id This property is required. String - Identifier of the requested catalog item in the form ‘UUID:version’.
- completed
At This property is required. String - Time at which the request completed.
- completed
Tasks This property is required. Number - The number of tasks completed while fulfilling this request.
- created
At This property is required. String - Creation time (e.g. date format ‘2019-07-13T23:16:49.310Z’).
- details
This property is required. String - Longer user-friendly details of the request.
- dismissed
This property is required. Boolean - Indicates whether request is in dismissed state.
- id
This property is required. String - The id of the deployment. One of
id
orname
must be provided. - initialized
At This property is required. String - Time at which the request was initialized.
- inputs
This property is required. Map<String> - List of request inputs.
- name
This property is required. String - The name of the deployment. One of
id
orname
must be provided. - outputs
This property is required. Map<String> - Request outputs.
- requested
By This property is required. String - The user that initiated the request.
- resource
Ids This property is required. List<String> - status
This property is required. String - The status of the deployment with respect to its life cycle operations.
- total
Tasks This property is required. Number - The total number of tasks need to be completed to fulfil this request.
- updated
At This property is required. String - Last update time (e.g. date format ‘2019-07-13T23:16:49.310Z’).
GetDeploymentProject
- Description
This property is required. string - A description of the resource.
- Id
This property is required. string - The id of the deployment. One of
id
orname
must be provided. - Name
This property is required. string - The name of the deployment. One of
id
orname
must be provided. - Version
This property is required. string - Version of the entity, if applicable.
- Description
This property is required. string - A description of the resource.
- Id
This property is required. string - The id of the deployment. One of
id
orname
must be provided. - Name
This property is required. string - The name of the deployment. One of
id
orname
must be provided. - Version
This property is required. string - Version of the entity, if applicable.
- description
This property is required. String - A description of the resource.
- id
This property is required. String - The id of the deployment. One of
id
orname
must be provided. - name
This property is required. String - The name of the deployment. One of
id
orname
must be provided. - version
This property is required. String - Version of the entity, if applicable.
- description
This property is required. string - A description of the resource.
- id
This property is required. string - The id of the deployment. One of
id
orname
must be provided. - name
This property is required. string - The name of the deployment. One of
id
orname
must be provided. - version
This property is required. string - Version of the entity, if applicable.
- description
This property is required. str - A description of the resource.
- id
This property is required. str - The id of the deployment. One of
id
orname
must be provided. - name
This property is required. str - The name of the deployment. One of
id
orname
must be provided. - version
This property is required. str - Version of the entity, if applicable.
- description
This property is required. String - A description of the resource.
- id
This property is required. String - The id of the deployment. One of
id
orname
must be provided. - name
This property is required. String - The name of the deployment. One of
id
orname
must be provided. - version
This property is required. String - Version of the entity, if applicable.
GetDeploymentResource
- Created
At This property is required. string - Creation time (e.g. date format ‘2019-07-13T23:16:49.310Z’).
- Depends
Ons This property is required. List<string> - A list of other resources this resource depends on.
- Description
This property is required. string - A description of the resource.
- Expenses
This property is required. List<GetDeployment Resource Expense> - Expense incurred for this resource.
- Id
This property is required. string - The id of the deployment. One of
id
orname
must be provided. - Name
This property is required. string - The name of the deployment. One of
id
orname
must be provided. - Properties
Json This property is required. string - List of properties in the encoded JSON string format.
- State
This property is required. string - The current state of the resource. Supported values are
PARTIAL
,TAINTED
,OK.
- Sync
Status This property is required. string - The current sync status. Supported values are
SUCCESS
,MISSING
,STALE
. - Type
This property is required. string - Type of the resource.
- Created
At This property is required. string - Creation time (e.g. date format ‘2019-07-13T23:16:49.310Z’).
- Depends
Ons This property is required. []string - A list of other resources this resource depends on.
- Description
This property is required. string - A description of the resource.
- Expenses
This property is required. []GetDeployment Resource Expense - Expense incurred for this resource.
- Id
This property is required. string - The id of the deployment. One of
id
orname
must be provided. - Name
This property is required. string - The name of the deployment. One of
id
orname
must be provided. - Properties
Json This property is required. string - List of properties in the encoded JSON string format.
- State
This property is required. string - The current state of the resource. Supported values are
PARTIAL
,TAINTED
,OK.
- Sync
Status This property is required. string - The current sync status. Supported values are
SUCCESS
,MISSING
,STALE
. - Type
This property is required. string - Type of the resource.
- created
At This property is required. String - Creation time (e.g. date format ‘2019-07-13T23:16:49.310Z’).
- depends
Ons This property is required. List<String> - A list of other resources this resource depends on.
- description
This property is required. String - A description of the resource.
- expenses
This property is required. List<GetDeployment Resource Expense> - Expense incurred for this resource.
- id
This property is required. String - The id of the deployment. One of
id
orname
must be provided. - name
This property is required. String - The name of the deployment. One of
id
orname
must be provided. - properties
Json This property is required. String - List of properties in the encoded JSON string format.
- state
This property is required. String - The current state of the resource. Supported values are
PARTIAL
,TAINTED
,OK.
- sync
Status This property is required. String - The current sync status. Supported values are
SUCCESS
,MISSING
,STALE
. - type
This property is required. String - Type of the resource.
- created
At This property is required. string - Creation time (e.g. date format ‘2019-07-13T23:16:49.310Z’).
- depends
Ons This property is required. string[] - A list of other resources this resource depends on.
- description
This property is required. string - A description of the resource.
- expenses
This property is required. GetDeployment Resource Expense[] - Expense incurred for this resource.
- id
This property is required. string - The id of the deployment. One of
id
orname
must be provided. - name
This property is required. string - The name of the deployment. One of
id
orname
must be provided. - properties
Json This property is required. string - List of properties in the encoded JSON string format.
- state
This property is required. string - The current state of the resource. Supported values are
PARTIAL
,TAINTED
,OK.
- sync
Status This property is required. string - The current sync status. Supported values are
SUCCESS
,MISSING
,STALE
. - type
This property is required. string - Type of the resource.
- created_
at This property is required. str - Creation time (e.g. date format ‘2019-07-13T23:16:49.310Z’).
- depends_
ons This property is required. Sequence[str] - A list of other resources this resource depends on.
- description
This property is required. str - A description of the resource.
- expenses
This property is required. Sequence[GetDeployment Resource Expense] - Expense incurred for this resource.
- id
This property is required. str - The id of the deployment. One of
id
orname
must be provided. - name
This property is required. str - The name of the deployment. One of
id
orname
must be provided. - properties_
json This property is required. str - List of properties in the encoded JSON string format.
- state
This property is required. str - The current state of the resource. Supported values are
PARTIAL
,TAINTED
,OK.
- sync_
status This property is required. str - The current sync status. Supported values are
SUCCESS
,MISSING
,STALE
. - type
This property is required. str - Type of the resource.
- created
At This property is required. String - Creation time (e.g. date format ‘2019-07-13T23:16:49.310Z’).
- depends
Ons This property is required. List<String> - A list of other resources this resource depends on.
- description
This property is required. String - A description of the resource.
- expenses
This property is required. List<Property Map> - Expense incurred for this resource.
- id
This property is required. String - The id of the deployment. One of
id
orname
must be provided. - name
This property is required. String - The name of the deployment. One of
id
orname
must be provided. - properties
Json This property is required. String - List of properties in the encoded JSON string format.
- state
This property is required. String - The current state of the resource. Supported values are
PARTIAL
,TAINTED
,OK.
- sync
Status This property is required. String - The current sync status. Supported values are
SUCCESS
,MISSING
,STALE
. - type
This property is required. String - Type of the resource.
GetDeploymentResourceExpense
- Additional
Expense This property is required. double - Additional expense incurred for the resource.
- Code
This property is required. string - Expense sync message code if any.
- Compute
Expense This property is required. double - Compute expense of the entity.
- Last
Update Time This property is required. string - Last expense sync time.
- Message
This property is required. string - Expense sync message if any.
- Network
Expense This property is required. double - Network expense of the entity.
- Storage
Expense This property is required. double - Storage expense of the entity.
- Total
Expense This property is required. double - Total expense of the entity.
- Unit
This property is required. string - Monetary unit.
- Additional
Expense This property is required. float64 - Additional expense incurred for the resource.
- Code
This property is required. string - Expense sync message code if any.
- Compute
Expense This property is required. float64 - Compute expense of the entity.
- Last
Update Time This property is required. string - Last expense sync time.
- Message
This property is required. string - Expense sync message if any.
- Network
Expense This property is required. float64 - Network expense of the entity.
- Storage
Expense This property is required. float64 - Storage expense of the entity.
- Total
Expense This property is required. float64 - Total expense of the entity.
- Unit
This property is required. string - Monetary unit.
- additional
Expense This property is required. Double - Additional expense incurred for the resource.
- code
This property is required. String - Expense sync message code if any.
- compute
Expense This property is required. Double - Compute expense of the entity.
- last
Update Time This property is required. String - Last expense sync time.
- message
This property is required. String - Expense sync message if any.
- network
Expense This property is required. Double - Network expense of the entity.
- storage
Expense This property is required. Double - Storage expense of the entity.
- total
Expense This property is required. Double - Total expense of the entity.
- unit
This property is required. String - Monetary unit.
- additional
Expense This property is required. number - Additional expense incurred for the resource.
- code
This property is required. string - Expense sync message code if any.
- compute
Expense This property is required. number - Compute expense of the entity.
- last
Update Time This property is required. string - Last expense sync time.
- message
This property is required. string - Expense sync message if any.
- network
Expense This property is required. number - Network expense of the entity.
- storage
Expense This property is required. number - Storage expense of the entity.
- total
Expense This property is required. number - Total expense of the entity.
- unit
This property is required. string - Monetary unit.
- additional_
expense This property is required. float - Additional expense incurred for the resource.
- code
This property is required. str - Expense sync message code if any.
- compute_
expense This property is required. float - Compute expense of the entity.
- last_
update_ time This property is required. str - Last expense sync time.
- message
This property is required. str - Expense sync message if any.
- network_
expense This property is required. float - Network expense of the entity.
- storage_
expense This property is required. float - Storage expense of the entity.
- total_
expense This property is required. float - Total expense of the entity.
- unit
This property is required. str - Monetary unit.
- additional
Expense This property is required. Number - Additional expense incurred for the resource.
- code
This property is required. String - Expense sync message code if any.
- compute
Expense This property is required. Number - Compute expense of the entity.
- last
Update Time This property is required. String - Last expense sync time.
- message
This property is required. String - Expense sync message if any.
- network
Expense This property is required. Number - Network expense of the entity.
- storage
Expense This property is required. Number - Storage expense of the entity.
- total
Expense This property is required. Number - Total expense of the entity.
- unit
This property is required. String - Monetary unit.
Package Details
- Repository
- vra vmware/terraform-provider-vra
- License
- Notes
- This Pulumi package is based on the
vra
Terraform Provider.