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

We recommend using Azure Native.

Azure Classic v5.70.0 published on Wednesday, Mar 27, 2024 by Pulumi

azure.avs.PrivateCloud

Explore with Pulumi AI

azure logo

We recommend using Azure Native.

Azure Classic v5.70.0 published on Wednesday, Mar 27, 2024 by Pulumi

    Manages an Azure VMware Solution Private Cloud.

    Example Usage

    NOTE : Normal pulumi up could ignore this note. Please disable correlation request id for continuous operations in one build (like acctest). The continuous operations like update or delete could not be triggered when it shares the same correlation-id with its previous operation.

    import * as pulumi from "@pulumi/pulumi";
    import * as azure from "@pulumi/azure";
    
    const example = new azure.core.ResourceGroup("example", {
        name: "example-resources",
        location: "West Europe",
    });
    const examplePrivateCloud = new azure.avs.PrivateCloud("example", {
        name: "example-vmware-private-cloud",
        resourceGroupName: example.name,
        location: example.location,
        skuName: "av36",
        managementCluster: {
            size: 3,
        },
        networkSubnetCidr: "192.168.48.0/22",
        internetConnectionEnabled: false,
        nsxtPassword: "QazWsx13$Edc",
        vcenterPassword: "WsxEdc23$Rfv",
    });
    
    import pulumi
    import pulumi_azure as azure
    
    example = azure.core.ResourceGroup("example",
        name="example-resources",
        location="West Europe")
    example_private_cloud = azure.avs.PrivateCloud("example",
        name="example-vmware-private-cloud",
        resource_group_name=example.name,
        location=example.location,
        sku_name="av36",
        management_cluster=azure.avs.PrivateCloudManagementClusterArgs(
            size=3,
        ),
        network_subnet_cidr="192.168.48.0/22",
        internet_connection_enabled=False,
        nsxt_password="QazWsx13$Edc",
        vcenter_password="WsxEdc23$Rfv")
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-azure/sdk/v5/go/azure/avs"
    	"github.com/pulumi/pulumi-azure/sdk/v5/go/azure/core"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		example, err := core.NewResourceGroup(ctx, "example", &core.ResourceGroupArgs{
    			Name:     pulumi.String("example-resources"),
    			Location: pulumi.String("West Europe"),
    		})
    		if err != nil {
    			return err
    		}
    		_, err = avs.NewPrivateCloud(ctx, "example", &avs.PrivateCloudArgs{
    			Name:              pulumi.String("example-vmware-private-cloud"),
    			ResourceGroupName: example.Name,
    			Location:          example.Location,
    			SkuName:           pulumi.String("av36"),
    			ManagementCluster: &avs.PrivateCloudManagementClusterArgs{
    				Size: pulumi.Int(3),
    			},
    			NetworkSubnetCidr:         pulumi.String("192.168.48.0/22"),
    			InternetConnectionEnabled: pulumi.Bool(false),
    			NsxtPassword:              pulumi.String("QazWsx13$Edc"),
    			VcenterPassword:           pulumi.String("WsxEdc23$Rfv"),
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Azure = Pulumi.Azure;
    
    return await Deployment.RunAsync(() => 
    {
        var example = new Azure.Core.ResourceGroup("example", new()
        {
            Name = "example-resources",
            Location = "West Europe",
        });
    
        var examplePrivateCloud = new Azure.Avs.PrivateCloud("example", new()
        {
            Name = "example-vmware-private-cloud",
            ResourceGroupName = example.Name,
            Location = example.Location,
            SkuName = "av36",
            ManagementCluster = new Azure.Avs.Inputs.PrivateCloudManagementClusterArgs
            {
                Size = 3,
            },
            NetworkSubnetCidr = "192.168.48.0/22",
            InternetConnectionEnabled = false,
            NsxtPassword = "QazWsx13$Edc",
            VcenterPassword = "WsxEdc23$Rfv",
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.azure.core.ResourceGroup;
    import com.pulumi.azure.core.ResourceGroupArgs;
    import com.pulumi.azure.avs.PrivateCloud;
    import com.pulumi.azure.avs.PrivateCloudArgs;
    import com.pulumi.azure.avs.inputs.PrivateCloudManagementClusterArgs;
    import java.util.List;
    import java.util.ArrayList;
    import java.util.Map;
    import java.io.File;
    import java.nio.file.Files;
    import java.nio.file.Paths;
    
    public class App {
        public static void main(String[] args) {
            Pulumi.run(App::stack);
        }
    
        public static void stack(Context ctx) {
            var example = new ResourceGroup("example", ResourceGroupArgs.builder()        
                .name("example-resources")
                .location("West Europe")
                .build());
    
            var examplePrivateCloud = new PrivateCloud("examplePrivateCloud", PrivateCloudArgs.builder()        
                .name("example-vmware-private-cloud")
                .resourceGroupName(example.name())
                .location(example.location())
                .skuName("av36")
                .managementCluster(PrivateCloudManagementClusterArgs.builder()
                    .size(3)
                    .build())
                .networkSubnetCidr("192.168.48.0/22")
                .internetConnectionEnabled(false)
                .nsxtPassword("QazWsx13$Edc")
                .vcenterPassword("WsxEdc23$Rfv")
                .build());
    
        }
    }
    
    resources:
      example:
        type: azure:core:ResourceGroup
        properties:
          name: example-resources
          location: West Europe
      examplePrivateCloud:
        type: azure:avs:PrivateCloud
        name: example
        properties:
          name: example-vmware-private-cloud
          resourceGroupName: ${example.name}
          location: ${example.location}
          skuName: av36
          managementCluster:
            size: 3
          networkSubnetCidr: 192.168.48.0/22
          internetConnectionEnabled: false
          nsxtPassword: QazWsx13$Edc
          vcenterPassword: WsxEdc23$Rfv
    

    Create PrivateCloud Resource

    new PrivateCloud(name: string, args: PrivateCloudArgs, opts?: CustomResourceOptions);
    @overload
    def PrivateCloud(resource_name: str,
                     opts: Optional[ResourceOptions] = None,
                     internet_connection_enabled: Optional[bool] = None,
                     location: Optional[str] = None,
                     management_cluster: Optional[PrivateCloudManagementClusterArgs] = None,
                     name: Optional[str] = None,
                     network_subnet_cidr: Optional[str] = None,
                     nsxt_password: Optional[str] = None,
                     resource_group_name: Optional[str] = None,
                     sku_name: Optional[str] = None,
                     tags: Optional[Mapping[str, str]] = None,
                     vcenter_password: Optional[str] = None)
    @overload
    def PrivateCloud(resource_name: str,
                     args: PrivateCloudArgs,
                     opts: Optional[ResourceOptions] = 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.
    
    
    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.

    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

    The PrivateCloud resource accepts the following input properties:

    ManagementCluster Pulumi.Azure.Avs.Inputs.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 Azure VMware Solution Private Cloud to be created.
    ResourceGroupName string
    The name of the Resource Group where the Azure VMware Solution Private Cloud should exist. Changing this forces a new Azure VMware Solution Private Cloud to be created.
    SkuName string
    The Name of the SKU used for this Azure VMware Solution Private Cloud. Possible values are av20, av36, av36t, av36p, av36pt, av52, av52t, and av64. Changing this forces a new Azure VMware Solution Private Cloud to be created.
    InternetConnectionEnabled bool

    Is the Azure VMware Solution Private Cloud connected to the internet? This field can not be 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 Azure VMware Solution Private Cloud should exist. Changing this forces a new Azure VMware Solution Private Cloud to be created.
    Name string
    The name which should be used for this Azure VMware Solution Private Cloud. Changing this forces a new Azure VMware Solution Private Cloud to be created.
    NsxtPassword string
    The password of the VMware NSX Manager cloudadmin. Changing this forces a new Azure VMware Solution Private Cloud to be created.
    Tags Dictionary<string, string>
    A mapping of tags which should be assigned to the Azure VMware Solution Private Cloud.
    VcenterPassword string
    The password of the VMware vCenter Server cloudadmin. Changing this forces a new Azure VMware Solution 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 Azure VMware Solution Private Cloud to be created.
    ResourceGroupName string
    The name of the Resource Group where the Azure VMware Solution Private Cloud should exist. Changing this forces a new Azure VMware Solution Private Cloud to be created.
    SkuName string
    The Name of the SKU used for this Azure VMware Solution Private Cloud. Possible values are av20, av36, av36t, av36p, av36pt, av52, av52t, and av64. Changing this forces a new Azure VMware Solution Private Cloud to be created.
    InternetConnectionEnabled bool

    Is the Azure VMware Solution Private Cloud connected to the internet? This field can not be 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 Azure VMware Solution Private Cloud should exist. Changing this forces a new Azure VMware Solution Private Cloud to be created.
    Name string
    The name which should be used for this Azure VMware Solution Private Cloud. Changing this forces a new Azure VMware Solution Private Cloud to be created.
    NsxtPassword string
    The password of the VMware NSX Manager cloudadmin. Changing this forces a new Azure VMware Solution Private Cloud to be created.
    Tags map[string]string
    A mapping of tags which should be assigned to the Azure VMware Solution Private Cloud.
    VcenterPassword string
    The password of the VMware vCenter Server cloudadmin. Changing this forces a new Azure VMware Solution 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 Azure VMware Solution Private Cloud to be created.
    resourceGroupName String
    The name of the Resource Group where the Azure VMware Solution Private Cloud should exist. Changing this forces a new Azure VMware Solution Private Cloud to be created.
    skuName String
    The Name of the SKU used for this Azure VMware Solution Private Cloud. Possible values are av20, av36, av36t, av36p, av36pt, av52, av52t, and av64. Changing this forces a new Azure VMware Solution Private Cloud to be created.
    internetConnectionEnabled Boolean

    Is the Azure VMware Solution Private Cloud connected to the internet? This field can not be 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 Azure VMware Solution Private Cloud should exist. Changing this forces a new Azure VMware Solution Private Cloud to be created.
    name String
    The name which should be used for this Azure VMware Solution Private Cloud. Changing this forces a new Azure VMware Solution Private Cloud to be created.
    nsxtPassword String
    The password of the VMware NSX Manager cloudadmin. Changing this forces a new Azure VMware Solution Private Cloud to be created.
    tags Map<String,String>
    A mapping of tags which should be assigned to the Azure VMware Solution Private Cloud.
    vcenterPassword String
    The password of the VMware vCenter Server cloudadmin. Changing this forces a new Azure VMware Solution 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 Azure VMware Solution Private Cloud to be created.
    resourceGroupName string
    The name of the Resource Group where the Azure VMware Solution Private Cloud should exist. Changing this forces a new Azure VMware Solution Private Cloud to be created.
    skuName string
    The Name of the SKU used for this Azure VMware Solution Private Cloud. Possible values are av20, av36, av36t, av36p, av36pt, av52, av52t, and av64. Changing this forces a new Azure VMware Solution Private Cloud to be created.
    internetConnectionEnabled boolean

    Is the Azure VMware Solution Private Cloud connected to the internet? This field can not be 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 Azure VMware Solution Private Cloud should exist. Changing this forces a new Azure VMware Solution Private Cloud to be created.
    name string
    The name which should be used for this Azure VMware Solution Private Cloud. Changing this forces a new Azure VMware Solution Private Cloud to be created.
    nsxtPassword string
    The password of the VMware NSX Manager cloudadmin. Changing this forces a new Azure VMware Solution Private Cloud to be created.
    tags {[key: string]: string}
    A mapping of tags which should be assigned to the Azure VMware Solution Private Cloud.
    vcenterPassword string
    The password of the VMware vCenter Server cloudadmin. Changing this forces a new Azure VMware Solution 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 Azure VMware Solution Private Cloud to be created.
    resource_group_name str
    The name of the Resource Group where the Azure VMware Solution Private Cloud should exist. Changing this forces a new Azure VMware Solution Private Cloud to be created.
    sku_name str
    The Name of the SKU used for this Azure VMware Solution Private Cloud. Possible values are av20, av36, av36t, av36p, av36pt, av52, av52t, and av64. Changing this forces a new Azure VMware Solution Private Cloud to be created.
    internet_connection_enabled bool

    Is the Azure VMware Solution Private Cloud connected to the internet? This field can not be 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 Azure VMware Solution Private Cloud should exist. Changing this forces a new Azure VMware Solution Private Cloud to be created.
    name str
    The name which should be used for this Azure VMware Solution Private Cloud. Changing this forces a new Azure VMware Solution Private Cloud to be created.
    nsxt_password str
    The password of the VMware NSX Manager cloudadmin. Changing this forces a new Azure VMware Solution Private Cloud to be created.
    tags Mapping[str, str]
    A mapping of tags which should be assigned to the Azure VMware Solution Private Cloud.
    vcenter_password str
    The password of the VMware vCenter Server cloudadmin. Changing this forces a new Azure VMware Solution 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 Azure VMware Solution Private Cloud to be created.
    resourceGroupName String
    The name of the Resource Group where the Azure VMware Solution Private Cloud should exist. Changing this forces a new Azure VMware Solution Private Cloud to be created.
    skuName String
    The Name of the SKU used for this Azure VMware Solution Private Cloud. Possible values are av20, av36, av36t, av36p, av36pt, av52, av52t, and av64. Changing this forces a new Azure VMware Solution Private Cloud to be created.
    internetConnectionEnabled Boolean

    Is the Azure VMware Solution Private Cloud connected to the internet? This field can not be 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 Azure VMware Solution Private Cloud should exist. Changing this forces a new Azure VMware Solution Private Cloud to be created.
    name String
    The name which should be used for this Azure VMware Solution Private Cloud. Changing this forces a new Azure VMware Solution Private Cloud to be created.
    nsxtPassword String
    The password of the VMware NSX Manager cloudadmin. Changing this forces a new Azure VMware Solution Private Cloud to be created.
    tags Map<String>
    A mapping of tags which should be assigned to the Azure VMware Solution Private Cloud.
    vcenterPassword String
    The password of the VMware vCenter Server cloudadmin. Changing this forces a new Azure VMware Solution 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<Pulumi.Azure.Avs.Outputs.PrivateCloudCircuit>
    A circuit block as defined below.
    HcxCloudManagerEndpoint string
    The endpoint for the VMware HCX Cloud Manager.
    Id string
    The provider-assigned unique ID for this managed resource.
    ManagementSubnetCidr string
    The network used to access VMware vCenter Server and NSX Manager.
    NsxtCertificateThumbprint string
    The thumbprint of the VMware NSX Manager SSL certificate.
    NsxtManagerEndpoint string
    The endpoint for the VMware NSX Manager.
    ProvisioningSubnetCidr string
    The network which is used for virtual machine cold migration, cloning, and snapshot migration.
    VcenterCertificateThumbprint string
    The thumbprint of the VMware vCenter Server SSL certificate.
    VcsaEndpoint string
    The endpoint for VMware vCenter 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 VMware HCX Cloud Manager.
    Id string
    The provider-assigned unique ID for this managed resource.
    ManagementSubnetCidr string
    The network used to access VMware vCenter Server and NSX Manager.
    NsxtCertificateThumbprint string
    The thumbprint of the VMware NSX Manager SSL certificate.
    NsxtManagerEndpoint string
    The endpoint for the VMware NSX Manager.
    ProvisioningSubnetCidr string
    The network which is used for virtual machine cold migration, cloning, and snapshot migration.
    VcenterCertificateThumbprint string
    The thumbprint of the VMware vCenter Server SSL certificate.
    VcsaEndpoint string
    The endpoint for VMware vCenter 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 VMware HCX Cloud Manager.
    id String
    The provider-assigned unique ID for this managed resource.
    managementSubnetCidr String
    The network used to access VMware vCenter Server and NSX Manager.
    nsxtCertificateThumbprint String
    The thumbprint of the VMware NSX Manager SSL certificate.
    nsxtManagerEndpoint String
    The endpoint for the VMware NSX Manager.
    provisioningSubnetCidr String
    The network which is used for virtual machine cold migration, cloning, and snapshot migration.
    vcenterCertificateThumbprint String
    The thumbprint of the VMware vCenter Server SSL certificate.
    vcsaEndpoint String
    The endpoint for VMware vCenter 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 VMware HCX Cloud Manager.
    id string
    The provider-assigned unique ID for this managed resource.
    managementSubnetCidr string
    The network used to access VMware vCenter Server and NSX Manager.
    nsxtCertificateThumbprint string
    The thumbprint of the VMware NSX Manager SSL certificate.
    nsxtManagerEndpoint string
    The endpoint for the VMware NSX Manager.
    provisioningSubnetCidr string
    The network which is used for virtual machine cold migration, cloning, and snapshot migration.
    vcenterCertificateThumbprint string
    The thumbprint of the VMware vCenter Server SSL certificate.
    vcsaEndpoint string
    The endpoint for VMware vCenter 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 VMware HCX Cloud Manager.
    id str
    The provider-assigned unique ID for this managed resource.
    management_subnet_cidr str
    The network used to access VMware vCenter Server and NSX Manager.
    nsxt_certificate_thumbprint str
    The thumbprint of the VMware NSX Manager SSL certificate.
    nsxt_manager_endpoint str
    The endpoint for the VMware NSX 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 VMware vCenter Server SSL certificate.
    vcsa_endpoint str
    The endpoint for VMware vCenter 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 VMware HCX Cloud Manager.
    id String
    The provider-assigned unique ID for this managed resource.
    managementSubnetCidr String
    The network used to access VMware vCenter Server and NSX Manager.
    nsxtCertificateThumbprint String
    The thumbprint of the VMware NSX Manager SSL certificate.
    nsxtManagerEndpoint String
    The endpoint for the VMware NSX Manager.
    provisioningSubnetCidr String
    The network which is used for virtual machine cold migration, cloning, and snapshot migration.
    vcenterCertificateThumbprint String
    The thumbprint of the VMware vCenter Server SSL certificate.
    vcsaEndpoint String
    The endpoint for VMware vCenter 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)
    Resource lookup is not supported in YAML
    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<Pulumi.Azure.Avs.Inputs.PrivateCloudCircuit>
    A circuit block as defined below.
    HcxCloudManagerEndpoint string
    The endpoint for the VMware HCX Cloud Manager.
    InternetConnectionEnabled bool

    Is the Azure VMware Solution Private Cloud connected to the internet? This field can not be 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 Azure VMware Solution Private Cloud should exist. Changing this forces a new Azure VMware Solution Private Cloud to be created.
    ManagementCluster Pulumi.Azure.Avs.Inputs.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 VMware vCenter Server and NSX Manager.
    Name string
    The name which should be used for this Azure VMware Solution Private Cloud. Changing this forces a new Azure VMware Solution 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 Azure VMware Solution Private Cloud to be created.
    NsxtCertificateThumbprint string
    The thumbprint of the VMware NSX Manager SSL certificate.
    NsxtManagerEndpoint string
    The endpoint for the VMware NSX Manager.
    NsxtPassword string
    The password of the VMware NSX Manager cloudadmin. Changing this forces a new Azure VMware Solution 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 Azure VMware Solution Private Cloud should exist. Changing this forces a new Azure VMware Solution Private Cloud to be created.
    SkuName string
    The Name of the SKU used for this Azure VMware Solution Private Cloud. Possible values are av20, av36, av36t, av36p, av36pt, av52, av52t, and av64. Changing this forces a new Azure VMware Solution Private Cloud to be created.
    Tags Dictionary<string, string>
    A mapping of tags which should be assigned to the Azure VMware Solution Private Cloud.
    VcenterCertificateThumbprint string
    The thumbprint of the VMware vCenter Server SSL certificate.
    VcenterPassword string
    The password of the VMware vCenter Server cloudadmin. Changing this forces a new Azure VMware Solution Private Cloud to be created.
    VcsaEndpoint string
    The endpoint for VMware vCenter 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 VMware HCX Cloud Manager.
    InternetConnectionEnabled bool

    Is the Azure VMware Solution Private Cloud connected to the internet? This field can not be 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 Azure VMware Solution Private Cloud should exist. Changing this forces a new Azure VMware Solution 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 VMware vCenter Server and NSX Manager.
    Name string
    The name which should be used for this Azure VMware Solution Private Cloud. Changing this forces a new Azure VMware Solution 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 Azure VMware Solution Private Cloud to be created.
    NsxtCertificateThumbprint string
    The thumbprint of the VMware NSX Manager SSL certificate.
    NsxtManagerEndpoint string
    The endpoint for the VMware NSX Manager.
    NsxtPassword string
    The password of the VMware NSX Manager cloudadmin. Changing this forces a new Azure VMware Solution 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 Azure VMware Solution Private Cloud should exist. Changing this forces a new Azure VMware Solution Private Cloud to be created.
    SkuName string
    The Name of the SKU used for this Azure VMware Solution Private Cloud. Possible values are av20, av36, av36t, av36p, av36pt, av52, av52t, and av64. Changing this forces a new Azure VMware Solution Private Cloud to be created.
    Tags map[string]string
    A mapping of tags which should be assigned to the Azure VMware Solution Private Cloud.
    VcenterCertificateThumbprint string
    The thumbprint of the VMware vCenter Server SSL certificate.
    VcenterPassword string
    The password of the VMware vCenter Server cloudadmin. Changing this forces a new Azure VMware Solution Private Cloud to be created.
    VcsaEndpoint string
    The endpoint for VMware vCenter 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 VMware HCX Cloud Manager.
    internetConnectionEnabled Boolean

    Is the Azure VMware Solution Private Cloud connected to the internet? This field can not be 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 Azure VMware Solution Private Cloud should exist. Changing this forces a new Azure VMware Solution 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 VMware vCenter Server and NSX Manager.
    name String
    The name which should be used for this Azure VMware Solution Private Cloud. Changing this forces a new Azure VMware Solution 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 Azure VMware Solution Private Cloud to be created.
    nsxtCertificateThumbprint String
    The thumbprint of the VMware NSX Manager SSL certificate.
    nsxtManagerEndpoint String
    The endpoint for the VMware NSX Manager.
    nsxtPassword String
    The password of the VMware NSX Manager cloudadmin. Changing this forces a new Azure VMware Solution 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 Azure VMware Solution Private Cloud should exist. Changing this forces a new Azure VMware Solution Private Cloud to be created.
    skuName String
    The Name of the SKU used for this Azure VMware Solution Private Cloud. Possible values are av20, av36, av36t, av36p, av36pt, av52, av52t, and av64. Changing this forces a new Azure VMware Solution Private Cloud to be created.
    tags Map<String,String>
    A mapping of tags which should be assigned to the Azure VMware Solution Private Cloud.
    vcenterCertificateThumbprint String
    The thumbprint of the VMware vCenter Server SSL certificate.
    vcenterPassword String
    The password of the VMware vCenter Server cloudadmin. Changing this forces a new Azure VMware Solution Private Cloud to be created.
    vcsaEndpoint String
    The endpoint for VMware vCenter 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 VMware HCX Cloud Manager.
    internetConnectionEnabled boolean

    Is the Azure VMware Solution Private Cloud connected to the internet? This field can not be 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 Azure VMware Solution Private Cloud should exist. Changing this forces a new Azure VMware Solution 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 VMware vCenter Server and NSX Manager.
    name string
    The name which should be used for this Azure VMware Solution Private Cloud. Changing this forces a new Azure VMware Solution 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 Azure VMware Solution Private Cloud to be created.
    nsxtCertificateThumbprint string
    The thumbprint of the VMware NSX Manager SSL certificate.
    nsxtManagerEndpoint string
    The endpoint for the VMware NSX Manager.
    nsxtPassword string
    The password of the VMware NSX Manager cloudadmin. Changing this forces a new Azure VMware Solution 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 Azure VMware Solution Private Cloud should exist. Changing this forces a new Azure VMware Solution Private Cloud to be created.
    skuName string
    The Name of the SKU used for this Azure VMware Solution Private Cloud. Possible values are av20, av36, av36t, av36p, av36pt, av52, av52t, and av64. Changing this forces a new Azure VMware Solution Private Cloud to be created.
    tags {[key: string]: string}
    A mapping of tags which should be assigned to the Azure VMware Solution Private Cloud.
    vcenterCertificateThumbprint string
    The thumbprint of the VMware vCenter Server SSL certificate.
    vcenterPassword string
    The password of the VMware vCenter Server cloudadmin. Changing this forces a new Azure VMware Solution Private Cloud to be created.
    vcsaEndpoint string
    The endpoint for VMware vCenter 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 VMware HCX Cloud Manager.
    internet_connection_enabled bool

    Is the Azure VMware Solution Private Cloud connected to the internet? This field can not be 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 Azure VMware Solution Private Cloud should exist. Changing this forces a new Azure VMware Solution 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 VMware vCenter Server and NSX Manager.
    name str
    The name which should be used for this Azure VMware Solution Private Cloud. Changing this forces a new Azure VMware Solution 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 Azure VMware Solution Private Cloud to be created.
    nsxt_certificate_thumbprint str
    The thumbprint of the VMware NSX Manager SSL certificate.
    nsxt_manager_endpoint str
    The endpoint for the VMware NSX Manager.
    nsxt_password str
    The password of the VMware NSX Manager cloudadmin. Changing this forces a new Azure VMware Solution 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 Azure VMware Solution Private Cloud should exist. Changing this forces a new Azure VMware Solution Private Cloud to be created.
    sku_name str
    The Name of the SKU used for this Azure VMware Solution Private Cloud. Possible values are av20, av36, av36t, av36p, av36pt, av52, av52t, and av64. Changing this forces a new Azure VMware Solution Private Cloud to be created.
    tags Mapping[str, str]
    A mapping of tags which should be assigned to the Azure VMware Solution Private Cloud.
    vcenter_certificate_thumbprint str
    The thumbprint of the VMware vCenter Server SSL certificate.
    vcenter_password str
    The password of the VMware vCenter Server cloudadmin. Changing this forces a new Azure VMware Solution Private Cloud to be created.
    vcsa_endpoint str
    The endpoint for VMware vCenter 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 VMware HCX Cloud Manager.
    internetConnectionEnabled Boolean

    Is the Azure VMware Solution Private Cloud connected to the internet? This field can not be 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 Azure VMware Solution Private Cloud should exist. Changing this forces a new Azure VMware Solution 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 VMware vCenter Server and NSX Manager.
    name String
    The name which should be used for this Azure VMware Solution Private Cloud. Changing this forces a new Azure VMware Solution 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 Azure VMware Solution Private Cloud to be created.
    nsxtCertificateThumbprint String
    The thumbprint of the VMware NSX Manager SSL certificate.
    nsxtManagerEndpoint String
    The endpoint for the VMware NSX Manager.
    nsxtPassword String
    The password of the VMware NSX Manager cloudadmin. Changing this forces a new Azure VMware Solution 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 Azure VMware Solution Private Cloud should exist. Changing this forces a new Azure VMware Solution Private Cloud to be created.
    skuName String
    The Name of the SKU used for this Azure VMware Solution Private Cloud. Possible values are av20, av36, av36t, av36p, av36pt, av52, av52t, and av64. Changing this forces a new Azure VMware Solution Private Cloud to be created.
    tags Map<String>
    A mapping of tags which should be assigned to the Azure VMware Solution Private Cloud.
    vcenterCertificateThumbprint String
    The thumbprint of the VMware vCenter Server SSL certificate.
    vcenterPassword String
    The password of the VMware vCenter Server cloudadmin. Changing this forces a new Azure VMware Solution Private Cloud to be created.
    vcsaEndpoint String
    The endpoint for VMware vCenter 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.

    Import

    Azure VMware Solution 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
    

    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.

    Azure Classic v5.70.0 published on Wednesday, Mar 27, 2024 by Pulumi