1. Packages
  2. Packages
  3. Azure Classic
  4. API Docs
  5. avs
  6. PrivateCloud

We recommend using Azure Native.

Viewing docs for Azure v4.42.0 (Older version)
published on Monday, Mar 9, 2026 by Pulumi
azure logo

We recommend using Azure Native.

Viewing docs for Azure v4.42.0 (Older version)
published on Monday, Mar 9, 2026 by Pulumi

    Import

    Vmware Private Clouds can be imported using the resource id, e.g.

     $ pulumi import azure:avs/privateCloud:PrivateCloud example /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/group1/providers/Microsoft.AVS/PrivateClouds/privateCloud1
    

    Create PrivateCloud Resource

    Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

    Constructor syntax

    new PrivateCloud(name: string, args: PrivateCloudArgs, opts?: CustomResourceOptions);
    @overload
    def PrivateCloud(resource_name: str,
                     args: PrivateCloudArgs,
                     opts: Optional[ResourceOptions] = None)
    
    @overload
    def PrivateCloud(resource_name: str,
                     opts: Optional[ResourceOptions] = None,
                     management_cluster: Optional[PrivateCloudManagementClusterArgs] = None,
                     network_subnet_cidr: Optional[str] = None,
                     resource_group_name: Optional[str] = None,
                     sku_name: Optional[str] = None,
                     internet_connection_enabled: Optional[bool] = None,
                     location: Optional[str] = None,
                     name: Optional[str] = None,
                     nsxt_password: Optional[str] = None,
                     tags: Optional[Mapping[str, str]] = None,
                     vcenter_password: Optional[str] = None)
    func NewPrivateCloud(ctx *Context, name string, args PrivateCloudArgs, opts ...ResourceOption) (*PrivateCloud, error)
    public PrivateCloud(string name, PrivateCloudArgs args, CustomResourceOptions? opts = null)
    public PrivateCloud(String name, PrivateCloudArgs args)
    public PrivateCloud(String name, PrivateCloudArgs args, CustomResourceOptions options)
    
    type: azure:avs:PrivateCloud
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    

    Parameters

    name string
    The unique name of the resource.
    args PrivateCloudArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    resource_name str
    The unique name of the resource.
    args PrivateCloudArgs
    The arguments to resource properties.
    opts ResourceOptions
    Bag of options to control resource's behavior.
    ctx Context
    Context object for the current deployment.
    name string
    The unique name of the resource.
    args PrivateCloudArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args PrivateCloudArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args PrivateCloudArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    Constructor example

    The following reference example uses placeholder values for all input properties.

    var privateCloudResource = new Azure.Avs.PrivateCloud("privateCloudResource", new()
    {
        ManagementCluster = new Azure.Avs.Inputs.PrivateCloudManagementClusterArgs
        {
            Size = 0,
            Hosts = new[]
            {
                "string",
            },
            Id = 0,
        },
        NetworkSubnetCidr = "string",
        ResourceGroupName = "string",
        SkuName = "string",
        InternetConnectionEnabled = false,
        Location = "string",
        Name = "string",
        NsxtPassword = "string",
        Tags = 
        {
            { "string", "string" },
        },
        VcenterPassword = "string",
    });
    
    example, err := avs.NewPrivateCloud(ctx, "privateCloudResource", &avs.PrivateCloudArgs{
    	ManagementCluster: &avs.PrivateCloudManagementClusterArgs{
    		Size: pulumi.Int(0),
    		Hosts: pulumi.StringArray{
    			pulumi.String("string"),
    		},
    		Id: pulumi.Int(0),
    	},
    	NetworkSubnetCidr:         pulumi.String("string"),
    	ResourceGroupName:         pulumi.String("string"),
    	SkuName:                   pulumi.String("string"),
    	InternetConnectionEnabled: pulumi.Bool(false),
    	Location:                  pulumi.String("string"),
    	Name:                      pulumi.String("string"),
    	NsxtPassword:              pulumi.String("string"),
    	Tags: pulumi.StringMap{
    		"string": pulumi.String("string"),
    	},
    	VcenterPassword: pulumi.String("string"),
    })
    
    var privateCloudResource = new PrivateCloud("privateCloudResource", PrivateCloudArgs.builder()
        .managementCluster(PrivateCloudManagementClusterArgs.builder()
            .size(0)
            .hosts("string")
            .id(0)
            .build())
        .networkSubnetCidr("string")
        .resourceGroupName("string")
        .skuName("string")
        .internetConnectionEnabled(false)
        .location("string")
        .name("string")
        .nsxtPassword("string")
        .tags(Map.of("string", "string"))
        .vcenterPassword("string")
        .build());
    
    private_cloud_resource = azure.avs.PrivateCloud("privateCloudResource",
        management_cluster={
            "size": 0,
            "hosts": ["string"],
            "id": 0,
        },
        network_subnet_cidr="string",
        resource_group_name="string",
        sku_name="string",
        internet_connection_enabled=False,
        location="string",
        name="string",
        nsxt_password="string",
        tags={
            "string": "string",
        },
        vcenter_password="string")
    
    const privateCloudResource = new azure.avs.PrivateCloud("privateCloudResource", {
        managementCluster: {
            size: 0,
            hosts: ["string"],
            id: 0,
        },
        networkSubnetCidr: "string",
        resourceGroupName: "string",
        skuName: "string",
        internetConnectionEnabled: false,
        location: "string",
        name: "string",
        nsxtPassword: "string",
        tags: {
            string: "string",
        },
        vcenterPassword: "string",
    });
    
    type: azure:avs:PrivateCloud
    properties:
        internetConnectionEnabled: false
        location: string
        managementCluster:
            hosts:
                - string
            id: 0
            size: 0
        name: string
        networkSubnetCidr: string
        nsxtPassword: string
        resourceGroupName: string
        skuName: string
        tags:
            string: string
        vcenterPassword: string
    

    PrivateCloud Resource Properties

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

    Inputs

    In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.

    The PrivateCloud resource accepts the following input properties:

    ManagementCluster PrivateCloudManagementCluster

    A management_cluster block as defined below.

    NOTE : internet_connection_enabled and management_cluster.0.size cannot be updated at the same time.

    NetworkSubnetCidr string
    The subnet which should be unique across virtual network in your subscription as well as on-premise. Changing this forces a new Vmware Private Cloud to be created.
    ResourceGroupName string
    The name of the Resource Group where the Vmware Private Cloud should exist. Changing this forces a new Vmware Private Cloud to be created.
    SkuName string
    The Name of the SKU used for this Private Cloud. Possible values are av20, av36 and av36t. Changing this forces a new Vmware Private Cloud to be created.
    InternetConnectionEnabled bool

    Is the Private Cluster connected to the internet? This field can not updated with management_cluster.0.size together.

    NOTE : internet_connection_enabled and management_cluster.0.size cannot be updated at the same time.

    Location string
    The Azure Region where the Vmware Private Cloud should exist. Changing this forces a new Vmware Private Cloud to be created.
    Name string
    The name which should be used for this Vmware Private Cloud. Changing this forces a new Vmware Private Cloud to be created.
    NsxtPassword string
    The password of the NSX-T Manager. Changing this forces a new Vmware Private Cloud to be created.
    Tags Dictionary<string, string>
    A mapping of tags which should be assigned to the Vmware Private Cloud.
    VcenterPassword string
    The password of the vCenter admin. Changing this forces a new Vmware Private Cloud to be created.
    ManagementCluster PrivateCloudManagementClusterArgs

    A management_cluster block as defined below.

    NOTE : internet_connection_enabled and management_cluster.0.size cannot be updated at the same time.

    NetworkSubnetCidr string
    The subnet which should be unique across virtual network in your subscription as well as on-premise. Changing this forces a new Vmware Private Cloud to be created.
    ResourceGroupName string
    The name of the Resource Group where the Vmware Private Cloud should exist. Changing this forces a new Vmware Private Cloud to be created.
    SkuName string
    The Name of the SKU used for this Private Cloud. Possible values are av20, av36 and av36t. Changing this forces a new Vmware Private Cloud to be created.
    InternetConnectionEnabled bool

    Is the Private Cluster connected to the internet? This field can not updated with management_cluster.0.size together.

    NOTE : internet_connection_enabled and management_cluster.0.size cannot be updated at the same time.

    Location string
    The Azure Region where the Vmware Private Cloud should exist. Changing this forces a new Vmware Private Cloud to be created.
    Name string
    The name which should be used for this Vmware Private Cloud. Changing this forces a new Vmware Private Cloud to be created.
    NsxtPassword string
    The password of the NSX-T Manager. Changing this forces a new Vmware Private Cloud to be created.
    Tags map[string]string
    A mapping of tags which should be assigned to the Vmware Private Cloud.
    VcenterPassword string
    The password of the vCenter admin. Changing this forces a new Vmware Private Cloud to be created.
    managementCluster PrivateCloudManagementCluster

    A management_cluster block as defined below.

    NOTE : internet_connection_enabled and management_cluster.0.size cannot be updated at the same time.

    networkSubnetCidr String
    The subnet which should be unique across virtual network in your subscription as well as on-premise. Changing this forces a new Vmware Private Cloud to be created.
    resourceGroupName String
    The name of the Resource Group where the Vmware Private Cloud should exist. Changing this forces a new Vmware Private Cloud to be created.
    skuName String
    The Name of the SKU used for this Private Cloud. Possible values are av20, av36 and av36t. Changing this forces a new Vmware Private Cloud to be created.
    internetConnectionEnabled Boolean

    Is the Private Cluster connected to the internet? This field can not updated with management_cluster.0.size together.

    NOTE : internet_connection_enabled and management_cluster.0.size cannot be updated at the same time.

    location String
    The Azure Region where the Vmware Private Cloud should exist. Changing this forces a new Vmware Private Cloud to be created.
    name String
    The name which should be used for this Vmware Private Cloud. Changing this forces a new Vmware Private Cloud to be created.
    nsxtPassword String
    The password of the NSX-T Manager. Changing this forces a new Vmware Private Cloud to be created.
    tags Map<String,String>
    A mapping of tags which should be assigned to the Vmware Private Cloud.
    vcenterPassword String
    The password of the vCenter admin. Changing this forces a new Vmware Private Cloud to be created.
    managementCluster PrivateCloudManagementCluster

    A management_cluster block as defined below.

    NOTE : internet_connection_enabled and management_cluster.0.size cannot be updated at the same time.

    networkSubnetCidr string
    The subnet which should be unique across virtual network in your subscription as well as on-premise. Changing this forces a new Vmware Private Cloud to be created.
    resourceGroupName string
    The name of the Resource Group where the Vmware Private Cloud should exist. Changing this forces a new Vmware Private Cloud to be created.
    skuName string
    The Name of the SKU used for this Private Cloud. Possible values are av20, av36 and av36t. Changing this forces a new Vmware Private Cloud to be created.
    internetConnectionEnabled boolean

    Is the Private Cluster connected to the internet? This field can not updated with management_cluster.0.size together.

    NOTE : internet_connection_enabled and management_cluster.0.size cannot be updated at the same time.

    location string
    The Azure Region where the Vmware Private Cloud should exist. Changing this forces a new Vmware Private Cloud to be created.
    name string
    The name which should be used for this Vmware Private Cloud. Changing this forces a new Vmware Private Cloud to be created.
    nsxtPassword string
    The password of the NSX-T Manager. Changing this forces a new Vmware Private Cloud to be created.
    tags {[key: string]: string}
    A mapping of tags which should be assigned to the Vmware Private Cloud.
    vcenterPassword string
    The password of the vCenter admin. Changing this forces a new Vmware Private Cloud to be created.
    management_cluster PrivateCloudManagementClusterArgs

    A management_cluster block as defined below.

    NOTE : internet_connection_enabled and management_cluster.0.size cannot be updated at the same time.

    network_subnet_cidr str
    The subnet which should be unique across virtual network in your subscription as well as on-premise. Changing this forces a new Vmware Private Cloud to be created.
    resource_group_name str
    The name of the Resource Group where the Vmware Private Cloud should exist. Changing this forces a new Vmware Private Cloud to be created.
    sku_name str
    The Name of the SKU used for this Private Cloud. Possible values are av20, av36 and av36t. Changing this forces a new Vmware Private Cloud to be created.
    internet_connection_enabled bool

    Is the Private Cluster connected to the internet? This field can not updated with management_cluster.0.size together.

    NOTE : internet_connection_enabled and management_cluster.0.size cannot be updated at the same time.

    location str
    The Azure Region where the Vmware Private Cloud should exist. Changing this forces a new Vmware Private Cloud to be created.
    name str
    The name which should be used for this Vmware Private Cloud. Changing this forces a new Vmware Private Cloud to be created.
    nsxt_password str
    The password of the NSX-T Manager. Changing this forces a new Vmware Private Cloud to be created.
    tags Mapping[str, str]
    A mapping of tags which should be assigned to the Vmware Private Cloud.
    vcenter_password str
    The password of the vCenter admin. Changing this forces a new Vmware Private Cloud to be created.
    managementCluster Property Map

    A management_cluster block as defined below.

    NOTE : internet_connection_enabled and management_cluster.0.size cannot be updated at the same time.

    networkSubnetCidr String
    The subnet which should be unique across virtual network in your subscription as well as on-premise. Changing this forces a new Vmware Private Cloud to be created.
    resourceGroupName String
    The name of the Resource Group where the Vmware Private Cloud should exist. Changing this forces a new Vmware Private Cloud to be created.
    skuName String
    The Name of the SKU used for this Private Cloud. Possible values are av20, av36 and av36t. Changing this forces a new Vmware Private Cloud to be created.
    internetConnectionEnabled Boolean

    Is the Private Cluster connected to the internet? This field can not updated with management_cluster.0.size together.

    NOTE : internet_connection_enabled and management_cluster.0.size cannot be updated at the same time.

    location String
    The Azure Region where the Vmware Private Cloud should exist. Changing this forces a new Vmware Private Cloud to be created.
    name String
    The name which should be used for this Vmware Private Cloud. Changing this forces a new Vmware Private Cloud to be created.
    nsxtPassword String
    The password of the NSX-T Manager. Changing this forces a new Vmware Private Cloud to be created.
    tags Map<String>
    A mapping of tags which should be assigned to the Vmware Private Cloud.
    vcenterPassword String
    The password of the vCenter admin. Changing this forces a new Vmware Private Cloud to be created.

    Outputs

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

    Circuits List<PrivateCloudCircuit>
    A circuit block as defined below.
    HcxCloudManagerEndpoint string
    The endpoint for the HCX Cloud Manager.
    Id string
    The provider-assigned unique ID for this managed resource.
    ManagementSubnetCidr string
    The network used to access vCenter Server and NSX-T Manager.
    NsxtCertificateThumbprint string
    The thumbprint of the NSX-T Manager SSL certificate.
    NsxtManagerEndpoint string
    The endpoint for the NSX-T Data Center manager.
    ProvisioningSubnetCidr string
    The network which is used for virtual machine cold migration, cloning, and snapshot migration.
    VcenterCertificateThumbprint string
    The thumbprint of the vCenter Server SSL certificate.
    VcsaEndpoint string
    The endpoint for Virtual Center Server Appliance.
    VmotionSubnetCidr string
    The network which is used for live migration of virtual machines.
    Circuits []PrivateCloudCircuit
    A circuit block as defined below.
    HcxCloudManagerEndpoint string
    The endpoint for the HCX Cloud Manager.
    Id string
    The provider-assigned unique ID for this managed resource.
    ManagementSubnetCidr string
    The network used to access vCenter Server and NSX-T Manager.
    NsxtCertificateThumbprint string
    The thumbprint of the NSX-T Manager SSL certificate.
    NsxtManagerEndpoint string
    The endpoint for the NSX-T Data Center manager.
    ProvisioningSubnetCidr string
    The network which is used for virtual machine cold migration, cloning, and snapshot migration.
    VcenterCertificateThumbprint string
    The thumbprint of the vCenter Server SSL certificate.
    VcsaEndpoint string
    The endpoint for Virtual Center Server Appliance.
    VmotionSubnetCidr string
    The network which is used for live migration of virtual machines.
    circuits List<PrivateCloudCircuit>
    A circuit block as defined below.
    hcxCloudManagerEndpoint String
    The endpoint for the HCX Cloud Manager.
    id String
    The provider-assigned unique ID for this managed resource.
    managementSubnetCidr String
    The network used to access vCenter Server and NSX-T Manager.
    nsxtCertificateThumbprint String
    The thumbprint of the NSX-T Manager SSL certificate.
    nsxtManagerEndpoint String
    The endpoint for the NSX-T Data Center manager.
    provisioningSubnetCidr String
    The network which is used for virtual machine cold migration, cloning, and snapshot migration.
    vcenterCertificateThumbprint String
    The thumbprint of the vCenter Server SSL certificate.
    vcsaEndpoint String
    The endpoint for Virtual Center Server Appliance.
    vmotionSubnetCidr String
    The network which is used for live migration of virtual machines.
    circuits PrivateCloudCircuit[]
    A circuit block as defined below.
    hcxCloudManagerEndpoint string
    The endpoint for the HCX Cloud Manager.
    id string
    The provider-assigned unique ID for this managed resource.
    managementSubnetCidr string
    The network used to access vCenter Server and NSX-T Manager.
    nsxtCertificateThumbprint string
    The thumbprint of the NSX-T Manager SSL certificate.
    nsxtManagerEndpoint string
    The endpoint for the NSX-T Data Center manager.
    provisioningSubnetCidr string
    The network which is used for virtual machine cold migration, cloning, and snapshot migration.
    vcenterCertificateThumbprint string
    The thumbprint of the vCenter Server SSL certificate.
    vcsaEndpoint string
    The endpoint for Virtual Center Server Appliance.
    vmotionSubnetCidr string
    The network which is used for live migration of virtual machines.
    circuits Sequence[PrivateCloudCircuit]
    A circuit block as defined below.
    hcx_cloud_manager_endpoint str
    The endpoint for the HCX Cloud Manager.
    id str
    The provider-assigned unique ID for this managed resource.
    management_subnet_cidr str
    The network used to access vCenter Server and NSX-T Manager.
    nsxt_certificate_thumbprint str
    The thumbprint of the NSX-T Manager SSL certificate.
    nsxt_manager_endpoint str
    The endpoint for the NSX-T Data Center manager.
    provisioning_subnet_cidr str
    The network which is used for virtual machine cold migration, cloning, and snapshot migration.
    vcenter_certificate_thumbprint str
    The thumbprint of the vCenter Server SSL certificate.
    vcsa_endpoint str
    The endpoint for Virtual Center Server Appliance.
    vmotion_subnet_cidr str
    The network which is used for live migration of virtual machines.
    circuits List<Property Map>
    A circuit block as defined below.
    hcxCloudManagerEndpoint String
    The endpoint for the HCX Cloud Manager.
    id String
    The provider-assigned unique ID for this managed resource.
    managementSubnetCidr String
    The network used to access vCenter Server and NSX-T Manager.
    nsxtCertificateThumbprint String
    The thumbprint of the NSX-T Manager SSL certificate.
    nsxtManagerEndpoint String
    The endpoint for the NSX-T Data Center manager.
    provisioningSubnetCidr String
    The network which is used for virtual machine cold migration, cloning, and snapshot migration.
    vcenterCertificateThumbprint String
    The thumbprint of the vCenter Server SSL certificate.
    vcsaEndpoint String
    The endpoint for Virtual Center Server Appliance.
    vmotionSubnetCidr String
    The network which is used for live migration of virtual machines.

    Look up Existing PrivateCloud Resource

    Get an existing PrivateCloud 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?: PrivateCloudState, opts?: CustomResourceOptions): PrivateCloud
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            circuits: Optional[Sequence[PrivateCloudCircuitArgs]] = None,
            hcx_cloud_manager_endpoint: Optional[str] = None,
            internet_connection_enabled: Optional[bool] = None,
            location: Optional[str] = None,
            management_cluster: Optional[PrivateCloudManagementClusterArgs] = None,
            management_subnet_cidr: Optional[str] = None,
            name: Optional[str] = None,
            network_subnet_cidr: Optional[str] = None,
            nsxt_certificate_thumbprint: Optional[str] = None,
            nsxt_manager_endpoint: Optional[str] = None,
            nsxt_password: Optional[str] = None,
            provisioning_subnet_cidr: Optional[str] = None,
            resource_group_name: Optional[str] = None,
            sku_name: Optional[str] = None,
            tags: Optional[Mapping[str, str]] = None,
            vcenter_certificate_thumbprint: Optional[str] = None,
            vcenter_password: Optional[str] = None,
            vcsa_endpoint: Optional[str] = None,
            vmotion_subnet_cidr: Optional[str] = None) -> PrivateCloud
    func GetPrivateCloud(ctx *Context, name string, id IDInput, state *PrivateCloudState, opts ...ResourceOption) (*PrivateCloud, error)
    public static PrivateCloud Get(string name, Input<string> id, PrivateCloudState? state, CustomResourceOptions? opts = null)
    public static PrivateCloud get(String name, Output<String> id, PrivateCloudState state, CustomResourceOptions options)
    resources:  _:    type: azure:avs:PrivateCloud    get:      id: ${id}
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    resource_name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    The following state arguments are supported:
    Circuits List<PrivateCloudCircuit>
    A circuit block as defined below.
    HcxCloudManagerEndpoint string
    The endpoint for the HCX Cloud Manager.
    InternetConnectionEnabled bool

    Is the Private Cluster connected to the internet? This field can not updated with management_cluster.0.size together.

    NOTE : internet_connection_enabled and management_cluster.0.size cannot be updated at the same time.

    Location string
    The Azure Region where the Vmware Private Cloud should exist. Changing this forces a new Vmware Private Cloud to be created.
    ManagementCluster PrivateCloudManagementCluster

    A management_cluster block as defined below.

    NOTE : internet_connection_enabled and management_cluster.0.size cannot be updated at the same time.

    ManagementSubnetCidr string
    The network used to access vCenter Server and NSX-T Manager.
    Name string
    The name which should be used for this Vmware Private Cloud. Changing this forces a new Vmware Private Cloud to be created.
    NetworkSubnetCidr string
    The subnet which should be unique across virtual network in your subscription as well as on-premise. Changing this forces a new Vmware Private Cloud to be created.
    NsxtCertificateThumbprint string
    The thumbprint of the NSX-T Manager SSL certificate.
    NsxtManagerEndpoint string
    The endpoint for the NSX-T Data Center manager.
    NsxtPassword string
    The password of the NSX-T Manager. Changing this forces a new Vmware Private Cloud to be created.
    ProvisioningSubnetCidr string
    The network which is used for virtual machine cold migration, cloning, and snapshot migration.
    ResourceGroupName string
    The name of the Resource Group where the Vmware Private Cloud should exist. Changing this forces a new Vmware Private Cloud to be created.
    SkuName string
    The Name of the SKU used for this Private Cloud. Possible values are av20, av36 and av36t. Changing this forces a new Vmware Private Cloud to be created.
    Tags Dictionary<string, string>
    A mapping of tags which should be assigned to the Vmware Private Cloud.
    VcenterCertificateThumbprint string
    The thumbprint of the vCenter Server SSL certificate.
    VcenterPassword string
    The password of the vCenter admin. Changing this forces a new Vmware Private Cloud to be created.
    VcsaEndpoint string
    The endpoint for Virtual Center Server Appliance.
    VmotionSubnetCidr string
    The network which is used for live migration of virtual machines.
    Circuits []PrivateCloudCircuitArgs
    A circuit block as defined below.
    HcxCloudManagerEndpoint string
    The endpoint for the HCX Cloud Manager.
    InternetConnectionEnabled bool

    Is the Private Cluster connected to the internet? This field can not updated with management_cluster.0.size together.

    NOTE : internet_connection_enabled and management_cluster.0.size cannot be updated at the same time.

    Location string
    The Azure Region where the Vmware Private Cloud should exist. Changing this forces a new Vmware Private Cloud to be created.
    ManagementCluster PrivateCloudManagementClusterArgs

    A management_cluster block as defined below.

    NOTE : internet_connection_enabled and management_cluster.0.size cannot be updated at the same time.

    ManagementSubnetCidr string
    The network used to access vCenter Server and NSX-T Manager.
    Name string
    The name which should be used for this Vmware Private Cloud. Changing this forces a new Vmware Private Cloud to be created.
    NetworkSubnetCidr string
    The subnet which should be unique across virtual network in your subscription as well as on-premise. Changing this forces a new Vmware Private Cloud to be created.
    NsxtCertificateThumbprint string
    The thumbprint of the NSX-T Manager SSL certificate.
    NsxtManagerEndpoint string
    The endpoint for the NSX-T Data Center manager.
    NsxtPassword string
    The password of the NSX-T Manager. Changing this forces a new Vmware Private Cloud to be created.
    ProvisioningSubnetCidr string
    The network which is used for virtual machine cold migration, cloning, and snapshot migration.
    ResourceGroupName string
    The name of the Resource Group where the Vmware Private Cloud should exist. Changing this forces a new Vmware Private Cloud to be created.
    SkuName string
    The Name of the SKU used for this Private Cloud. Possible values are av20, av36 and av36t. Changing this forces a new Vmware Private Cloud to be created.
    Tags map[string]string
    A mapping of tags which should be assigned to the Vmware Private Cloud.
    VcenterCertificateThumbprint string
    The thumbprint of the vCenter Server SSL certificate.
    VcenterPassword string
    The password of the vCenter admin. Changing this forces a new Vmware Private Cloud to be created.
    VcsaEndpoint string
    The endpoint for Virtual Center Server Appliance.
    VmotionSubnetCidr string
    The network which is used for live migration of virtual machines.
    circuits List<PrivateCloudCircuit>
    A circuit block as defined below.
    hcxCloudManagerEndpoint String
    The endpoint for the HCX Cloud Manager.
    internetConnectionEnabled Boolean

    Is the Private Cluster connected to the internet? This field can not updated with management_cluster.0.size together.

    NOTE : internet_connection_enabled and management_cluster.0.size cannot be updated at the same time.

    location String
    The Azure Region where the Vmware Private Cloud should exist. Changing this forces a new Vmware Private Cloud to be created.
    managementCluster PrivateCloudManagementCluster

    A management_cluster block as defined below.

    NOTE : internet_connection_enabled and management_cluster.0.size cannot be updated at the same time.

    managementSubnetCidr String
    The network used to access vCenter Server and NSX-T Manager.
    name String
    The name which should be used for this Vmware Private Cloud. Changing this forces a new Vmware Private Cloud to be created.
    networkSubnetCidr String
    The subnet which should be unique across virtual network in your subscription as well as on-premise. Changing this forces a new Vmware Private Cloud to be created.
    nsxtCertificateThumbprint String
    The thumbprint of the NSX-T Manager SSL certificate.
    nsxtManagerEndpoint String
    The endpoint for the NSX-T Data Center manager.
    nsxtPassword String
    The password of the NSX-T Manager. Changing this forces a new Vmware Private Cloud to be created.
    provisioningSubnetCidr String
    The network which is used for virtual machine cold migration, cloning, and snapshot migration.
    resourceGroupName String
    The name of the Resource Group where the Vmware Private Cloud should exist. Changing this forces a new Vmware Private Cloud to be created.
    skuName String
    The Name of the SKU used for this Private Cloud. Possible values are av20, av36 and av36t. Changing this forces a new Vmware Private Cloud to be created.
    tags Map<String,String>
    A mapping of tags which should be assigned to the Vmware Private Cloud.
    vcenterCertificateThumbprint String
    The thumbprint of the vCenter Server SSL certificate.
    vcenterPassword String
    The password of the vCenter admin. Changing this forces a new Vmware Private Cloud to be created.
    vcsaEndpoint String
    The endpoint for Virtual Center Server Appliance.
    vmotionSubnetCidr String
    The network which is used for live migration of virtual machines.
    circuits PrivateCloudCircuit[]
    A circuit block as defined below.
    hcxCloudManagerEndpoint string
    The endpoint for the HCX Cloud Manager.
    internetConnectionEnabled boolean

    Is the Private Cluster connected to the internet? This field can not updated with management_cluster.0.size together.

    NOTE : internet_connection_enabled and management_cluster.0.size cannot be updated at the same time.

    location string
    The Azure Region where the Vmware Private Cloud should exist. Changing this forces a new Vmware Private Cloud to be created.
    managementCluster PrivateCloudManagementCluster

    A management_cluster block as defined below.

    NOTE : internet_connection_enabled and management_cluster.0.size cannot be updated at the same time.

    managementSubnetCidr string
    The network used to access vCenter Server and NSX-T Manager.
    name string
    The name which should be used for this Vmware Private Cloud. Changing this forces a new Vmware Private Cloud to be created.
    networkSubnetCidr string
    The subnet which should be unique across virtual network in your subscription as well as on-premise. Changing this forces a new Vmware Private Cloud to be created.
    nsxtCertificateThumbprint string
    The thumbprint of the NSX-T Manager SSL certificate.
    nsxtManagerEndpoint string
    The endpoint for the NSX-T Data Center manager.
    nsxtPassword string
    The password of the NSX-T Manager. Changing this forces a new Vmware Private Cloud to be created.
    provisioningSubnetCidr string
    The network which is used for virtual machine cold migration, cloning, and snapshot migration.
    resourceGroupName string
    The name of the Resource Group where the Vmware Private Cloud should exist. Changing this forces a new Vmware Private Cloud to be created.
    skuName string
    The Name of the SKU used for this Private Cloud. Possible values are av20, av36 and av36t. Changing this forces a new Vmware Private Cloud to be created.
    tags {[key: string]: string}
    A mapping of tags which should be assigned to the Vmware Private Cloud.
    vcenterCertificateThumbprint string
    The thumbprint of the vCenter Server SSL certificate.
    vcenterPassword string
    The password of the vCenter admin. Changing this forces a new Vmware Private Cloud to be created.
    vcsaEndpoint string
    The endpoint for Virtual Center Server Appliance.
    vmotionSubnetCidr string
    The network which is used for live migration of virtual machines.
    circuits Sequence[PrivateCloudCircuitArgs]
    A circuit block as defined below.
    hcx_cloud_manager_endpoint str
    The endpoint for the HCX Cloud Manager.
    internet_connection_enabled bool

    Is the Private Cluster connected to the internet? This field can not updated with management_cluster.0.size together.

    NOTE : internet_connection_enabled and management_cluster.0.size cannot be updated at the same time.

    location str
    The Azure Region where the Vmware Private Cloud should exist. Changing this forces a new Vmware Private Cloud to be created.
    management_cluster PrivateCloudManagementClusterArgs

    A management_cluster block as defined below.

    NOTE : internet_connection_enabled and management_cluster.0.size cannot be updated at the same time.

    management_subnet_cidr str
    The network used to access vCenter Server and NSX-T Manager.
    name str
    The name which should be used for this Vmware Private Cloud. Changing this forces a new Vmware Private Cloud to be created.
    network_subnet_cidr str
    The subnet which should be unique across virtual network in your subscription as well as on-premise. Changing this forces a new Vmware Private Cloud to be created.
    nsxt_certificate_thumbprint str
    The thumbprint of the NSX-T Manager SSL certificate.
    nsxt_manager_endpoint str
    The endpoint for the NSX-T Data Center manager.
    nsxt_password str
    The password of the NSX-T Manager. Changing this forces a new Vmware Private Cloud to be created.
    provisioning_subnet_cidr str
    The network which is used for virtual machine cold migration, cloning, and snapshot migration.
    resource_group_name str
    The name of the Resource Group where the Vmware Private Cloud should exist. Changing this forces a new Vmware Private Cloud to be created.
    sku_name str
    The Name of the SKU used for this Private Cloud. Possible values are av20, av36 and av36t. Changing this forces a new Vmware Private Cloud to be created.
    tags Mapping[str, str]
    A mapping of tags which should be assigned to the Vmware Private Cloud.
    vcenter_certificate_thumbprint str
    The thumbprint of the vCenter Server SSL certificate.
    vcenter_password str
    The password of the vCenter admin. Changing this forces a new Vmware Private Cloud to be created.
    vcsa_endpoint str
    The endpoint for Virtual Center Server Appliance.
    vmotion_subnet_cidr str
    The network which is used for live migration of virtual machines.
    circuits List<Property Map>
    A circuit block as defined below.
    hcxCloudManagerEndpoint String
    The endpoint for the HCX Cloud Manager.
    internetConnectionEnabled Boolean

    Is the Private Cluster connected to the internet? This field can not updated with management_cluster.0.size together.

    NOTE : internet_connection_enabled and management_cluster.0.size cannot be updated at the same time.

    location String
    The Azure Region where the Vmware Private Cloud should exist. Changing this forces a new Vmware Private Cloud to be created.
    managementCluster Property Map

    A management_cluster block as defined below.

    NOTE : internet_connection_enabled and management_cluster.0.size cannot be updated at the same time.

    managementSubnetCidr String
    The network used to access vCenter Server and NSX-T Manager.
    name String
    The name which should be used for this Vmware Private Cloud. Changing this forces a new Vmware Private Cloud to be created.
    networkSubnetCidr String
    The subnet which should be unique across virtual network in your subscription as well as on-premise. Changing this forces a new Vmware Private Cloud to be created.
    nsxtCertificateThumbprint String
    The thumbprint of the NSX-T Manager SSL certificate.
    nsxtManagerEndpoint String
    The endpoint for the NSX-T Data Center manager.
    nsxtPassword String
    The password of the NSX-T Manager. Changing this forces a new Vmware Private Cloud to be created.
    provisioningSubnetCidr String
    The network which is used for virtual machine cold migration, cloning, and snapshot migration.
    resourceGroupName String
    The name of the Resource Group where the Vmware Private Cloud should exist. Changing this forces a new Vmware Private Cloud to be created.
    skuName String
    The Name of the SKU used for this Private Cloud. Possible values are av20, av36 and av36t. Changing this forces a new Vmware Private Cloud to be created.
    tags Map<String>
    A mapping of tags which should be assigned to the Vmware Private Cloud.
    vcenterCertificateThumbprint String
    The thumbprint of the vCenter Server SSL certificate.
    vcenterPassword String
    The password of the vCenter admin. Changing this forces a new Vmware Private Cloud to be created.
    vcsaEndpoint String
    The endpoint for Virtual Center Server Appliance.
    vmotionSubnetCidr String
    The network which is used for live migration of virtual machines.

    Supporting Types

    PrivateCloudCircuit, PrivateCloudCircuitArgs

    ExpressRouteId string
    The ID of the ExpressRoute Circuit.
    ExpressRoutePrivatePeeringId string
    The ID of the ExpressRoute Circuit private peering.
    PrimarySubnetCidr string
    The CIDR of the primary subnet.
    SecondarySubnetCidr string
    The CIDR of the secondary subnet.
    ExpressRouteId string
    The ID of the ExpressRoute Circuit.
    ExpressRoutePrivatePeeringId string
    The ID of the ExpressRoute Circuit private peering.
    PrimarySubnetCidr string
    The CIDR of the primary subnet.
    SecondarySubnetCidr string
    The CIDR of the secondary subnet.
    expressRouteId String
    The ID of the ExpressRoute Circuit.
    expressRoutePrivatePeeringId String
    The ID of the ExpressRoute Circuit private peering.
    primarySubnetCidr String
    The CIDR of the primary subnet.
    secondarySubnetCidr String
    The CIDR of the secondary subnet.
    expressRouteId string
    The ID of the ExpressRoute Circuit.
    expressRoutePrivatePeeringId string
    The ID of the ExpressRoute Circuit private peering.
    primarySubnetCidr string
    The CIDR of the primary subnet.
    secondarySubnetCidr string
    The CIDR of the secondary subnet.
    express_route_id str
    The ID of the ExpressRoute Circuit.
    express_route_private_peering_id str
    The ID of the ExpressRoute Circuit private peering.
    primary_subnet_cidr str
    The CIDR of the primary subnet.
    secondary_subnet_cidr str
    The CIDR of the secondary subnet.
    expressRouteId String
    The ID of the ExpressRoute Circuit.
    expressRoutePrivatePeeringId String
    The ID of the ExpressRoute Circuit private peering.
    primarySubnetCidr String
    The CIDR of the primary subnet.
    secondarySubnetCidr String
    The CIDR of the secondary subnet.

    PrivateCloudManagementCluster, PrivateCloudManagementClusterArgs

    Size int
    The size of the management cluster. This field can not updated with internet_connection_enabled together.
    Hosts List<string>
    A list of hosts in the management cluster.
    Id int
    The ID of the management cluster.
    Size int
    The size of the management cluster. This field can not updated with internet_connection_enabled together.
    Hosts []string
    A list of hosts in the management cluster.
    Id int
    The ID of the management cluster.
    size Integer
    The size of the management cluster. This field can not updated with internet_connection_enabled together.
    hosts List<String>
    A list of hosts in the management cluster.
    id Integer
    The ID of the management cluster.
    size number
    The size of the management cluster. This field can not updated with internet_connection_enabled together.
    hosts string[]
    A list of hosts in the management cluster.
    id number
    The ID of the management cluster.
    size int
    The size of the management cluster. This field can not updated with internet_connection_enabled together.
    hosts Sequence[str]
    A list of hosts in the management cluster.
    id int
    The ID of the management cluster.
    size Number
    The size of the management cluster. This field can not updated with internet_connection_enabled together.
    hosts List<String>
    A list of hosts in the management cluster.
    id Number
    The ID of the management cluster.

    Package Details

    Repository
    Azure Classic pulumi/pulumi-azure
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the azurerm Terraform Provider.
    azure logo

    We recommend using Azure Native.

    Viewing docs for Azure v4.42.0 (Older version)
    published on Monday, Mar 9, 2026 by Pulumi
      Try Pulumi Cloud free. Your team will thank you.