PrivateCloudArgs

data class PrivateCloudArgs(val internetConnectionEnabled: Output<Boolean>? = null, val location: Output<String>? = null, val managementCluster: Output<PrivateCloudManagementClusterArgs>? = null, val name: Output<String>? = null, val networkSubnetCidr: Output<String>? = null, val nsxtPassword: Output<String>? = null, val resourceGroupName: Output<String>? = null, val skuName: Output<String>? = null, val tags: Output<Map<String, String>>? = null, val vcenterPassword: Output<String>? = null) : ConvertibleToJava<PrivateCloudArgs>

Manages a VMware 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.

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 exampleResourceGroup = new ResourceGroup("exampleResourceGroup", ResourceGroupArgs.builder()
.location("West Europe")
.build());
var examplePrivateCloud = new PrivateCloud("examplePrivateCloud", PrivateCloudArgs.builder()
.resourceGroupName(exampleResourceGroup.name())
.location(exampleResourceGroup.location())
.skuName("av36")
.managementCluster(PrivateCloudManagementClusterArgs.builder()
.size(3)
.build())
.networkSubnetCidr("192.168.48.0/22")
.internetConnectionEnabled(false)
.nsxtPassword("QazWsx13$Edc")
.vcenterPassword("WsxEdc23$Rfv")
.build());
}
}

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

Constructors

Link copied to clipboard
fun PrivateCloudArgs(internetConnectionEnabled: Output<Boolean>? = null, location: Output<String>? = null, managementCluster: Output<PrivateCloudManagementClusterArgs>? = null, name: Output<String>? = null, networkSubnetCidr: Output<String>? = null, nsxtPassword: Output<String>? = null, resourceGroupName: Output<String>? = null, skuName: Output<String>? = null, tags: Output<Map<String, String>>? = null, vcenterPassword: Output<String>? = null)

Functions

Link copied to clipboard
open override fun toJava(): PrivateCloudArgs

Properties

Link copied to clipboard
val internetConnectionEnabled: Output<Boolean>? = null

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

Link copied to clipboard
val location: Output<String>? = null

The Azure Region where the VMware Private Cloud should exist. Changing this forces a new VMware Private Cloud to be created.

Link copied to clipboard

A management_cluster block as defined below.

Link copied to clipboard
val name: Output<String>? = null

The name which should be used for this VMware Private Cloud. Changing this forces a new VMware Private Cloud to be created.

Link copied to clipboard
val networkSubnetCidr: Output<String>? = null

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.

Link copied to clipboard
val nsxtPassword: Output<String>? = null

The password of the NSX-T Manager. Changing this forces a new VMware Private Cloud to be created.

Link copied to clipboard
val resourceGroupName: Output<String>? = null

The name of the Resource Group where the VMware Private Cloud should exist. Changing this forces a new VMware Private Cloud to be created.

Link copied to clipboard
val skuName: Output<String>? = null

The Name of the SKU used for this Private Cloud. Possible values are av20, av36, av36t, av36p and av52. Changing this forces a new VMware Private Cloud to be created.

Link copied to clipboard
val tags: Output<Map<String, String>>? = null

A mapping of tags which should be assigned to the VMware Private Cloud.

Link copied to clipboard
val vcenterPassword: Output<String>? = null

The password of the vCenter admin. Changing this forces a new VMware Private Cloud to be created.