VappContainer

The vsphere..VappContainer resource can be used to create and manage vApps.

For more information on vSphere vApps, see this page.

Example Usage

using Pulumi;
using VSphere = Pulumi.VSphere;

class MyStack : Stack
{
    public MyStack()
    {
        var config = new Config();
        var datacenter = config.Get("datacenter") ?? "dc1";
        var cluster = config.Get("cluster") ?? "cluster1";
        var dc = Output.Create(VSphere.GetDatacenter.InvokeAsync(new VSphere.GetDatacenterArgs
        {
            Name = datacenter,
        }));
        var computeCluster = dc.Apply(dc => Output.Create(VSphere.GetComputeCluster.InvokeAsync(new VSphere.GetComputeClusterArgs
        {
            DatacenterId = dc.Id,
            Name = cluster,
        })));
        var vappContainer = new VSphere.VappContainer("vappContainer", new VSphere.VappContainerArgs
        {
            ParentResourcePoolId = computeCluster.Apply(computeCluster => computeCluster.Id),
        });
    }

}

Coming soon!

import pulumi
import pulumi_vsphere as vsphere

config = pulumi.Config()
datacenter = config.get("datacenter")
if datacenter is None:
    datacenter = "dc1"
cluster = config.get("cluster")
if cluster is None:
    cluster = "cluster1"
dc = vsphere.get_datacenter(name=datacenter)
compute_cluster = vsphere.get_compute_cluster(datacenter_id=dc.id,
    name=cluster)
vapp_container = vsphere.VappContainer("vappContainer", parent_resource_pool_id=compute_cluster.id)
import * as pulumi from "@pulumi/pulumi";
import * as vsphere from "@pulumi/vsphere";

const config = new pulumi.Config();
const datacenter = config.get("datacenter") || "dc1";
const cluster = config.get("cluster") || "cluster1";

const dc = pulumi.output(vsphere.getDatacenter({
    name: datacenter,
}, { async: true }));
const computeCluster = dc.apply(dc => vsphere.getComputeCluster({
    datacenterId: dc.id,
    name: cluster,
}, { async: true }));
const vappContainer = new vsphere.VappContainer("vapp_container", {
    parentResourcePoolId: computeCluster.id,
});

Example with virtual machine

using Pulumi;
using VSphere = Pulumi.VSphere;

class MyStack : Stack
{
    public MyStack()
    {
        var config = new Config();
        var datacenter = config.Get("datacenter") ?? "dc1";
        var cluster = config.Get("cluster") ?? "cluster1";
        var dc = Output.Create(VSphere.GetDatacenter.InvokeAsync(new VSphere.GetDatacenterArgs
        {
            Name = datacenter,
        }));
        var computeCluster = dc.Apply(dc => Output.Create(VSphere.GetComputeCluster.InvokeAsync(new VSphere.GetComputeClusterArgs
        {
            DatacenterId = dc.Id,
            Name = cluster,
        })));
        var network = dc.Apply(dc => Output.Create(VSphere.GetNetwork.InvokeAsync(new VSphere.GetNetworkArgs
        {
            DatacenterId = dc.Id,
            Name = "network1",
        })));
        var datastore = dc.Apply(dc => Output.Create(VSphere.GetDatastore.InvokeAsync(new VSphere.GetDatastoreArgs
        {
            DatacenterId = dc.Id,
            Name = "datastore1",
        })));
        var vappContainer = new VSphere.VappContainer("vappContainer", new VSphere.VappContainerArgs
        {
            ParentResourcePoolId = computeCluster.Apply(computeCluster => computeCluster.Id),
        });
        var vm = new VSphere.VirtualMachine("vm", new VSphere.VirtualMachineArgs
        {
            DatastoreId = datastore.Apply(datastore => datastore.Id),
            Disks = 
            {
                new VSphere.Inputs.VirtualMachineDiskArgs
                {
                    Label = "disk0",
                    Size = 1,
                },
            },
            GuestId = "ubuntu64Guest",
            Memory = 1024,
            NetworkInterfaces = 
            {
                new VSphere.Inputs.VirtualMachineNetworkInterfaceArgs
                {
                    NetworkId = network.Apply(network => network.Id),
                },
            },
            NumCpus = 2,
            ResourcePoolId = vappContainer.Id,
        });
    }

}

Coming soon!

import pulumi
import pulumi_vsphere as vsphere

config = pulumi.Config()
datacenter = config.get("datacenter")
if datacenter is None:
    datacenter = "dc1"
cluster = config.get("cluster")
if cluster is None:
    cluster = "cluster1"
dc = vsphere.get_datacenter(name=datacenter)
compute_cluster = vsphere.get_compute_cluster(datacenter_id=dc.id,
    name=cluster)
network = vsphere.get_network(datacenter_id=dc.id,
    name="network1")
datastore = vsphere.get_datastore(datacenter_id=dc.id,
    name="datastore1")
vapp_container = vsphere.VappContainer("vappContainer", parent_resource_pool_id=compute_cluster.id)
vm = vsphere.VirtualMachine("vm",
    datastore_id=datastore.id,
    disks=[{
        "label": "disk0",
        "size": 1,
    }],
    guest_id="ubuntu64Guest",
    memory=1024,
    network_interfaces=[{
        "networkId": network.id,
    }],
    num_cpus=2,
    resource_pool_id=vapp_container.id)
import * as pulumi from "@pulumi/pulumi";
import * as vsphere from "@pulumi/vsphere";

const config = new pulumi.Config();
const datacenter = config.get("datacenter") || "dc1";
const cluster = config.get("cluster") || "cluster1";

const dc = pulumi.output(vsphere.getDatacenter({
    name: datacenter,
}, { async: true }));
const computeCluster = dc.apply(dc => vsphere.getComputeCluster({
    datacenterId: dc.id,
    name: cluster,
}, { async: true }));
const network = dc.apply(dc => vsphere.getNetwork({
    datacenterId: dc.id,
    name: "network1",
}, { async: true }));
const datastore = dc.apply(dc => vsphere.getDatastore({
    datacenterId: dc.id,
    name: "datastore1",
}, { async: true }));
const vappContainer = new vsphere.VappContainer("vapp_container", {
    parentResourcePoolId: computeCluster.id,
});
const vm = new vsphere.VirtualMachine("vm", {
    datastoreId: datastore.id,
    disks: [{
        label: "disk0",
        size: 1,
    }],
    guestId: "ubuntu64Guest",
    memory: 1024,
    networkInterfaces: [{
        networkId: network.id,
    }],
    numCpus: 2,
    resourcePoolId: vappContainer.id,
});

Create a VappContainer Resource

def VappContainer(resource_name, opts=None, cpu_expandable=None, cpu_limit=None, cpu_reservation=None, cpu_share_level=None, cpu_shares=None, custom_attributes=None, memory_expandable=None, memory_limit=None, memory_reservation=None, memory_share_level=None, memory_shares=None, name=None, parent_folder_id=None, parent_resource_pool_id=None, tags=None, __props__=None);
name string
The unique name of the resource.
args VappContainerArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name str
The unique name of the resource.
opts ResourceOptions
A bag of options that control this resource's behavior.
ctx Context
Context object for the current deployment.
name string
The unique name of the resource.
args VappContainerArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name string
The unique name of the resource.
args VappContainerArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.

VappContainer Resource Properties

To learn more about resource properties and how to use them, see Inputs and Outputs in the Programming Model docs.

Inputs

The VappContainer resource accepts the following input properties:

ParentResourcePoolId string

The managed object ID of the parent resource pool. This can be the root resource pool for a cluster or standalone host, or a resource pool itself. When moving a vApp container from one parent resource pool to another, both must share a common root resource pool or the move will fail.

CpuExpandable bool

Determines if the reservation on a vApp container can grow beyond the specified value if the parent resource pool has unreserved resources. Default: true

CpuLimit int

The CPU utilization of a vApp container will not exceed this limit, even if there are available resources. Set to -1 for unlimited. Default: -1

CpuReservation int

Amount of CPU (MHz) that is guaranteed available to the vApp container. Default: 0

CpuShareLevel string

The CPU allocation level. The level is a simplified view of shares. Levels map to a pre-determined set of numeric values for shares. Can be one of low, normal, high, or custom. When low, normal, or high are specified values in cpu_shares will be ignored. Default: normal

CpuShares int

The number of shares allocated for CPU. Used to determine resource allocation in case of resource contention. If this is set, cpu_share_level must be custom.

CustomAttributes Dictionary<string, string>

A list of custom attributes to set on this resource.

MemoryExpandable bool

Determines if the reservation on a vApp container can grow beyond the specified value if the parent resource pool has unreserved resources. Default: true

MemoryLimit int

The CPU utilization of a vApp container will not exceed this limit, even if there are available resources. Set to -1 for unlimited. Default: -1

MemoryReservation int

Amount of CPU (MHz) that is guaranteed available to the vApp container. Default: 0

MemoryShareLevel string

The CPU allocation level. The level is a simplified view of shares. Levels map to a pre-determined set of numeric values for shares. Can be one of low, normal, high, or custom. When low, normal, or high are specified values in memory_shares will be ignored. Default: normal

MemoryShares int

The number of shares allocated for CPU. Used to determine resource allocation in case of resource contention. If this is set, memory_share_level must be custom.

Name string

The name of the vApp container.

ParentFolderId string

The managed object ID of the vApp container’s parent folder.

Tags List<string>

The IDs of any tags to attach to this resource.

ParentResourcePoolId string

The managed object ID of the parent resource pool. This can be the root resource pool for a cluster or standalone host, or a resource pool itself. When moving a vApp container from one parent resource pool to another, both must share a common root resource pool or the move will fail.

CpuExpandable bool

Determines if the reservation on a vApp container can grow beyond the specified value if the parent resource pool has unreserved resources. Default: true

CpuLimit int

The CPU utilization of a vApp container will not exceed this limit, even if there are available resources. Set to -1 for unlimited. Default: -1

CpuReservation int

Amount of CPU (MHz) that is guaranteed available to the vApp container. Default: 0

CpuShareLevel string

The CPU allocation level. The level is a simplified view of shares. Levels map to a pre-determined set of numeric values for shares. Can be one of low, normal, high, or custom. When low, normal, or high are specified values in cpu_shares will be ignored. Default: normal

CpuShares int

The number of shares allocated for CPU. Used to determine resource allocation in case of resource contention. If this is set, cpu_share_level must be custom.

CustomAttributes map[string]string

A list of custom attributes to set on this resource.

MemoryExpandable bool

Determines if the reservation on a vApp container can grow beyond the specified value if the parent resource pool has unreserved resources. Default: true

MemoryLimit int

The CPU utilization of a vApp container will not exceed this limit, even if there are available resources. Set to -1 for unlimited. Default: -1

MemoryReservation int

Amount of CPU (MHz) that is guaranteed available to the vApp container. Default: 0

MemoryShareLevel string

The CPU allocation level. The level is a simplified view of shares. Levels map to a pre-determined set of numeric values for shares. Can be one of low, normal, high, or custom. When low, normal, or high are specified values in memory_shares will be ignored. Default: normal

MemoryShares int

The number of shares allocated for CPU. Used to determine resource allocation in case of resource contention. If this is set, memory_share_level must be custom.

Name string

The name of the vApp container.

ParentFolderId string

The managed object ID of the vApp container’s parent folder.

Tags []string

The IDs of any tags to attach to this resource.

parentResourcePoolId string

The managed object ID of the parent resource pool. This can be the root resource pool for a cluster or standalone host, or a resource pool itself. When moving a vApp container from one parent resource pool to another, both must share a common root resource pool or the move will fail.

cpuExpandable boolean

Determines if the reservation on a vApp container can grow beyond the specified value if the parent resource pool has unreserved resources. Default: true

cpuLimit number

The CPU utilization of a vApp container will not exceed this limit, even if there are available resources. Set to -1 for unlimited. Default: -1

cpuReservation number

Amount of CPU (MHz) that is guaranteed available to the vApp container. Default: 0

cpuShareLevel string

The CPU allocation level. The level is a simplified view of shares. Levels map to a pre-determined set of numeric values for shares. Can be one of low, normal, high, or custom. When low, normal, or high are specified values in cpu_shares will be ignored. Default: normal

cpuShares number

The number of shares allocated for CPU. Used to determine resource allocation in case of resource contention. If this is set, cpu_share_level must be custom.

customAttributes {[key: string]: string}

A list of custom attributes to set on this resource.

memoryExpandable boolean

Determines if the reservation on a vApp container can grow beyond the specified value if the parent resource pool has unreserved resources. Default: true

memoryLimit number

The CPU utilization of a vApp container will not exceed this limit, even if there are available resources. Set to -1 for unlimited. Default: -1

memoryReservation number

Amount of CPU (MHz) that is guaranteed available to the vApp container. Default: 0

memoryShareLevel string

The CPU allocation level. The level is a simplified view of shares. Levels map to a pre-determined set of numeric values for shares. Can be one of low, normal, high, or custom. When low, normal, or high are specified values in memory_shares will be ignored. Default: normal

memoryShares number

The number of shares allocated for CPU. Used to determine resource allocation in case of resource contention. If this is set, memory_share_level must be custom.

name string

The name of the vApp container.

parentFolderId string

The managed object ID of the vApp container’s parent folder.

tags string[]

The IDs of any tags to attach to this resource.

parent_resource_pool_id str

The managed object ID of the parent resource pool. This can be the root resource pool for a cluster or standalone host, or a resource pool itself. When moving a vApp container from one parent resource pool to another, both must share a common root resource pool or the move will fail.

cpu_expandable bool

Determines if the reservation on a vApp container can grow beyond the specified value if the parent resource pool has unreserved resources. Default: true

cpu_limit float

The CPU utilization of a vApp container will not exceed this limit, even if there are available resources. Set to -1 for unlimited. Default: -1

cpu_reservation float

Amount of CPU (MHz) that is guaranteed available to the vApp container. Default: 0

cpu_share_level str

The CPU allocation level. The level is a simplified view of shares. Levels map to a pre-determined set of numeric values for shares. Can be one of low, normal, high, or custom. When low, normal, or high are specified values in cpu_shares will be ignored. Default: normal

cpu_shares float

The number of shares allocated for CPU. Used to determine resource allocation in case of resource contention. If this is set, cpu_share_level must be custom.

custom_attributes Dict[str, str]

A list of custom attributes to set on this resource.

memory_expandable bool

Determines if the reservation on a vApp container can grow beyond the specified value if the parent resource pool has unreserved resources. Default: true

memory_limit float

The CPU utilization of a vApp container will not exceed this limit, even if there are available resources. Set to -1 for unlimited. Default: -1

memory_reservation float

Amount of CPU (MHz) that is guaranteed available to the vApp container. Default: 0

memory_share_level str

The CPU allocation level. The level is a simplified view of shares. Levels map to a pre-determined set of numeric values for shares. Can be one of low, normal, high, or custom. When low, normal, or high are specified values in memory_shares will be ignored. Default: normal

memory_shares float

The number of shares allocated for CPU. Used to determine resource allocation in case of resource contention. If this is set, memory_share_level must be custom.

name str

The name of the vApp container.

parent_folder_id str

The managed object ID of the vApp container’s parent folder.

tags List[str]

The IDs of any tags to attach to this resource.

Outputs

All input properties are implicitly available as output properties. Additionally, the VappContainer resource produces the following output properties:

Id string
The provider-assigned unique ID for this managed resource.
Id string
The provider-assigned unique ID for this managed resource.
id string
The provider-assigned unique ID for this managed resource.
id str
The provider-assigned unique ID for this managed resource.

Look up an Existing VappContainer Resource

Get an existing VappContainer 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?: VappContainerState, opts?: CustomResourceOptions): VappContainer
static get(resource_name, id, opts=None, cpu_expandable=None, cpu_limit=None, cpu_reservation=None, cpu_share_level=None, cpu_shares=None, custom_attributes=None, memory_expandable=None, memory_limit=None, memory_reservation=None, memory_share_level=None, memory_shares=None, name=None, parent_folder_id=None, parent_resource_pool_id=None, tags=None, __props__=None);
func GetVappContainer(ctx *Context, name string, id IDInput, state *VappContainerState, opts ...ResourceOption) (*VappContainer, error)
public static VappContainer Get(string name, Input<string> id, VappContainerState? state, CustomResourceOptions? opts = null)
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.

The following state arguments are supported:

CpuExpandable bool

Determines if the reservation on a vApp container can grow beyond the specified value if the parent resource pool has unreserved resources. Default: true

CpuLimit int

The CPU utilization of a vApp container will not exceed this limit, even if there are available resources. Set to -1 for unlimited. Default: -1

CpuReservation int

Amount of CPU (MHz) that is guaranteed available to the vApp container. Default: 0

CpuShareLevel string

The CPU allocation level. The level is a simplified view of shares. Levels map to a pre-determined set of numeric values for shares. Can be one of low, normal, high, or custom. When low, normal, or high are specified values in cpu_shares will be ignored. Default: normal

CpuShares int

The number of shares allocated for CPU. Used to determine resource allocation in case of resource contention. If this is set, cpu_share_level must be custom.

CustomAttributes Dictionary<string, string>

A list of custom attributes to set on this resource.

MemoryExpandable bool

Determines if the reservation on a vApp container can grow beyond the specified value if the parent resource pool has unreserved resources. Default: true

MemoryLimit int

The CPU utilization of a vApp container will not exceed this limit, even if there are available resources. Set to -1 for unlimited. Default: -1

MemoryReservation int

Amount of CPU (MHz) that is guaranteed available to the vApp container. Default: 0

MemoryShareLevel string

The CPU allocation level. The level is a simplified view of shares. Levels map to a pre-determined set of numeric values for shares. Can be one of low, normal, high, or custom. When low, normal, or high are specified values in memory_shares will be ignored. Default: normal

MemoryShares int

The number of shares allocated for CPU. Used to determine resource allocation in case of resource contention. If this is set, memory_share_level must be custom.

Name string

The name of the vApp container.

ParentFolderId string

The managed object ID of the vApp container’s parent folder.

ParentResourcePoolId string

The managed object ID of the parent resource pool. This can be the root resource pool for a cluster or standalone host, or a resource pool itself. When moving a vApp container from one parent resource pool to another, both must share a common root resource pool or the move will fail.

Tags List<string>

The IDs of any tags to attach to this resource.

CpuExpandable bool

Determines if the reservation on a vApp container can grow beyond the specified value if the parent resource pool has unreserved resources. Default: true

CpuLimit int

The CPU utilization of a vApp container will not exceed this limit, even if there are available resources. Set to -1 for unlimited. Default: -1

CpuReservation int

Amount of CPU (MHz) that is guaranteed available to the vApp container. Default: 0

CpuShareLevel string

The CPU allocation level. The level is a simplified view of shares. Levels map to a pre-determined set of numeric values for shares. Can be one of low, normal, high, or custom. When low, normal, or high are specified values in cpu_shares will be ignored. Default: normal

CpuShares int

The number of shares allocated for CPU. Used to determine resource allocation in case of resource contention. If this is set, cpu_share_level must be custom.

CustomAttributes map[string]string

A list of custom attributes to set on this resource.

MemoryExpandable bool

Determines if the reservation on a vApp container can grow beyond the specified value if the parent resource pool has unreserved resources. Default: true

MemoryLimit int

The CPU utilization of a vApp container will not exceed this limit, even if there are available resources. Set to -1 for unlimited. Default: -1

MemoryReservation int

Amount of CPU (MHz) that is guaranteed available to the vApp container. Default: 0

MemoryShareLevel string

The CPU allocation level. The level is a simplified view of shares. Levels map to a pre-determined set of numeric values for shares. Can be one of low, normal, high, or custom. When low, normal, or high are specified values in memory_shares will be ignored. Default: normal

MemoryShares int

The number of shares allocated for CPU. Used to determine resource allocation in case of resource contention. If this is set, memory_share_level must be custom.

Name string

The name of the vApp container.

ParentFolderId string

The managed object ID of the vApp container’s parent folder.

ParentResourcePoolId string

The managed object ID of the parent resource pool. This can be the root resource pool for a cluster or standalone host, or a resource pool itself. When moving a vApp container from one parent resource pool to another, both must share a common root resource pool or the move will fail.

Tags []string

The IDs of any tags to attach to this resource.

cpuExpandable boolean

Determines if the reservation on a vApp container can grow beyond the specified value if the parent resource pool has unreserved resources. Default: true

cpuLimit number

The CPU utilization of a vApp container will not exceed this limit, even if there are available resources. Set to -1 for unlimited. Default: -1

cpuReservation number

Amount of CPU (MHz) that is guaranteed available to the vApp container. Default: 0

cpuShareLevel string

The CPU allocation level. The level is a simplified view of shares. Levels map to a pre-determined set of numeric values for shares. Can be one of low, normal, high, or custom. When low, normal, or high are specified values in cpu_shares will be ignored. Default: normal

cpuShares number

The number of shares allocated for CPU. Used to determine resource allocation in case of resource contention. If this is set, cpu_share_level must be custom.

customAttributes {[key: string]: string}

A list of custom attributes to set on this resource.

memoryExpandable boolean

Determines if the reservation on a vApp container can grow beyond the specified value if the parent resource pool has unreserved resources. Default: true

memoryLimit number

The CPU utilization of a vApp container will not exceed this limit, even if there are available resources. Set to -1 for unlimited. Default: -1

memoryReservation number

Amount of CPU (MHz) that is guaranteed available to the vApp container. Default: 0

memoryShareLevel string

The CPU allocation level. The level is a simplified view of shares. Levels map to a pre-determined set of numeric values for shares. Can be one of low, normal, high, or custom. When low, normal, or high are specified values in memory_shares will be ignored. Default: normal

memoryShares number

The number of shares allocated for CPU. Used to determine resource allocation in case of resource contention. If this is set, memory_share_level must be custom.

name string

The name of the vApp container.

parentFolderId string

The managed object ID of the vApp container’s parent folder.

parentResourcePoolId string

The managed object ID of the parent resource pool. This can be the root resource pool for a cluster or standalone host, or a resource pool itself. When moving a vApp container from one parent resource pool to another, both must share a common root resource pool or the move will fail.

tags string[]

The IDs of any tags to attach to this resource.

cpu_expandable bool

Determines if the reservation on a vApp container can grow beyond the specified value if the parent resource pool has unreserved resources. Default: true

cpu_limit float

The CPU utilization of a vApp container will not exceed this limit, even if there are available resources. Set to -1 for unlimited. Default: -1

cpu_reservation float

Amount of CPU (MHz) that is guaranteed available to the vApp container. Default: 0

cpu_share_level str

The CPU allocation level. The level is a simplified view of shares. Levels map to a pre-determined set of numeric values for shares. Can be one of low, normal, high, or custom. When low, normal, or high are specified values in cpu_shares will be ignored. Default: normal

cpu_shares float

The number of shares allocated for CPU. Used to determine resource allocation in case of resource contention. If this is set, cpu_share_level must be custom.

custom_attributes Dict[str, str]

A list of custom attributes to set on this resource.

memory_expandable bool

Determines if the reservation on a vApp container can grow beyond the specified value if the parent resource pool has unreserved resources. Default: true

memory_limit float

The CPU utilization of a vApp container will not exceed this limit, even if there are available resources. Set to -1 for unlimited. Default: -1

memory_reservation float

Amount of CPU (MHz) that is guaranteed available to the vApp container. Default: 0

memory_share_level str

The CPU allocation level. The level is a simplified view of shares. Levels map to a pre-determined set of numeric values for shares. Can be one of low, normal, high, or custom. When low, normal, or high are specified values in memory_shares will be ignored. Default: normal

memory_shares float

The number of shares allocated for CPU. Used to determine resource allocation in case of resource contention. If this is set, memory_share_level must be custom.

name str

The name of the vApp container.

parent_folder_id str

The managed object ID of the vApp container’s parent folder.

parent_resource_pool_id str

The managed object ID of the parent resource pool. This can be the root resource pool for a cluster or standalone host, or a resource pool itself. When moving a vApp container from one parent resource pool to another, both must share a common root resource pool or the move will fail.

tags List[str]

The IDs of any tags to attach to this resource.

Package Details

Repository
https://github.com/pulumi/pulumi-vsphere
License
Apache-2.0
Notes
This Pulumi package is based on the vsphere Terraform Provider.