import * as pulumi from "@pulumi/pulumi"; import * as inputs from "../types/input"; import * as outputs from "../types/output"; /** * 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. * * ```typescript * 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", * }); * ``` * * ## API Providers * * * This resource uses the following Azure API Providers: * * * `Microsoft.AVS` - 2022-05-01 * * ## Import * * Azure VMware Solution Private Clouds can be imported using the `resource id`, e.g. * * ```sh * $ pulumi import azure:avs/privateCloud:PrivateCloud example /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/group1/providers/Microsoft.AVS/privateClouds/privateCloud1 * ``` */ export declare class PrivateCloud extends pulumi.CustomResource { /** * Get an existing PrivateCloud resource's state with the given name, ID, and optional extra * properties used to qualify the lookup. * * @param name The _unique_ name of the resulting resource. * @param id The _unique_ provider ID of the resource to lookup. * @param state Any extra arguments used during the lookup. * @param opts Optional settings to control the behavior of the CustomResource. */ static get(name: string, id: pulumi.Input, state?: PrivateCloudState, opts?: pulumi.CustomResourceOptions): PrivateCloud; /** * Returns true if the given object is an instance of PrivateCloud. This is designed to work even * when multiple copies of the Pulumi SDK have been loaded into the same process. */ static isInstance(obj: any): obj is PrivateCloud; /** * A `circuit` block as defined below. */ readonly circuits: pulumi.Output; /** * The endpoint for the VMware HCX Cloud Manager. */ readonly hcxCloudManagerEndpoint: pulumi.Output; /** * Is the Azure VMware Solution Private Cloud connected to the internet? This field can not be updated with `management_cluster[0].size` together. * > **Note:** `internetConnectionEnabled` and `management_cluster[0].size` cannot be updated at the same time. */ readonly internetConnectionEnabled: pulumi.Output; /** * 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. */ readonly location: pulumi.Output; /** * A `managementCluster` block as defined below. * > **Note:** `internetConnectionEnabled` and `management_cluster[0].size` cannot be updated at the same time. */ readonly managementCluster: pulumi.Output; /** * The network used to access VMware vCenter Server and NSX Manager. */ readonly managementSubnetCidr: pulumi.Output; /** * 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. */ readonly name: pulumi.Output; /** * 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. */ readonly networkSubnetCidr: pulumi.Output; /** * The thumbprint of the VMware NSX Manager SSL certificate. */ readonly nsxtCertificateThumbprint: pulumi.Output; /** * The endpoint for the VMware NSX Manager. */ readonly nsxtManagerEndpoint: pulumi.Output; /** * The password of the VMware NSX Manager cloudadmin. Changing this forces a new Azure VMware Solution Private Cloud to be created. */ readonly nsxtPassword: pulumi.Output; /** * The network which is used for virtual machine cold migration, cloning, and snapshot migration. */ readonly provisioningSubnetCidr: pulumi.Output; /** * 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. */ readonly resourceGroupName: pulumi.Output; /** * The Name of the SKU used for this Azure VMware Solution Private Cloud. Possible values are `av20`, `av36`, `av36t`, `av36p`, `av36pt`, `av48`, `av48t`, `av52`, `av52t`, and `av64`. Changing this forces a new Azure VMware Solution Private Cloud to be created. */ readonly skuName: pulumi.Output; /** * A mapping of tags which should be assigned to the Azure VMware Solution Private Cloud. */ readonly tags: pulumi.Output<{ [key: string]: string; } | undefined>; /** * The thumbprint of the VMware vCenter Server SSL certificate. */ readonly vcenterCertificateThumbprint: pulumi.Output; /** * The password of the VMware vCenter Server cloudadmin. Changing this forces a new Azure VMware Solution Private Cloud to be created. */ readonly vcenterPassword: pulumi.Output; /** * The endpoint for VMware vCenter Server Appliance. */ readonly vcsaEndpoint: pulumi.Output; /** * The network which is used for live migration of virtual machines. */ readonly vmotionSubnetCidr: pulumi.Output; /** * Create a PrivateCloud resource with the given unique name, arguments, and options. * * @param name The _unique_ name of the resource. * @param args The arguments to use to populate this resource's properties. * @param opts A bag of options that control this resource's behavior. */ constructor(name: string, args: PrivateCloudArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering PrivateCloud resources. */ export interface PrivateCloudState { /** * A `circuit` block as defined below. */ circuits?: pulumi.Input[]>; /** * The endpoint for the VMware HCX Cloud Manager. */ hcxCloudManagerEndpoint?: pulumi.Input; /** * Is the Azure VMware Solution Private Cloud connected to the internet? This field can not be updated with `management_cluster[0].size` together. * > **Note:** `internetConnectionEnabled` and `management_cluster[0].size` cannot be updated at the same time. */ internetConnectionEnabled?: pulumi.Input; /** * 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. */ location?: pulumi.Input; /** * A `managementCluster` block as defined below. * > **Note:** `internetConnectionEnabled` and `management_cluster[0].size` cannot be updated at the same time. */ managementCluster?: pulumi.Input; /** * The network used to access VMware vCenter Server and NSX Manager. */ managementSubnetCidr?: pulumi.Input; /** * 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. */ name?: pulumi.Input; /** * 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. */ networkSubnetCidr?: pulumi.Input; /** * The thumbprint of the VMware NSX Manager SSL certificate. */ nsxtCertificateThumbprint?: pulumi.Input; /** * The endpoint for the VMware NSX Manager. */ nsxtManagerEndpoint?: pulumi.Input; /** * The password of the VMware NSX Manager cloudadmin. Changing this forces a new Azure VMware Solution Private Cloud to be created. */ nsxtPassword?: pulumi.Input; /** * The network which is used for virtual machine cold migration, cloning, and snapshot migration. */ provisioningSubnetCidr?: pulumi.Input; /** * 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. */ resourceGroupName?: pulumi.Input; /** * The Name of the SKU used for this Azure VMware Solution Private Cloud. Possible values are `av20`, `av36`, `av36t`, `av36p`, `av36pt`, `av48`, `av48t`, `av52`, `av52t`, and `av64`. Changing this forces a new Azure VMware Solution Private Cloud to be created. */ skuName?: pulumi.Input; /** * A mapping of tags which should be assigned to the Azure VMware Solution Private Cloud. */ tags?: pulumi.Input<{ [key: string]: pulumi.Input; }>; /** * The thumbprint of the VMware vCenter Server SSL certificate. */ vcenterCertificateThumbprint?: pulumi.Input; /** * The password of the VMware vCenter Server cloudadmin. Changing this forces a new Azure VMware Solution Private Cloud to be created. */ vcenterPassword?: pulumi.Input; /** * The endpoint for VMware vCenter Server Appliance. */ vcsaEndpoint?: pulumi.Input; /** * The network which is used for live migration of virtual machines. */ vmotionSubnetCidr?: pulumi.Input; } /** * The set of arguments for constructing a PrivateCloud resource. */ export interface PrivateCloudArgs { /** * Is the Azure VMware Solution Private Cloud connected to the internet? This field can not be updated with `management_cluster[0].size` together. * > **Note:** `internetConnectionEnabled` and `management_cluster[0].size` cannot be updated at the same time. */ internetConnectionEnabled?: pulumi.Input; /** * 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. */ location?: pulumi.Input; /** * A `managementCluster` block as defined below. * > **Note:** `internetConnectionEnabled` and `management_cluster[0].size` cannot be updated at the same time. */ managementCluster: pulumi.Input; /** * 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. */ name?: pulumi.Input; /** * 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. */ networkSubnetCidr: pulumi.Input; /** * The password of the VMware NSX Manager cloudadmin. Changing this forces a new Azure VMware Solution Private Cloud to be created. */ nsxtPassword?: pulumi.Input; /** * 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. */ resourceGroupName: pulumi.Input; /** * The Name of the SKU used for this Azure VMware Solution Private Cloud. Possible values are `av20`, `av36`, `av36t`, `av36p`, `av36pt`, `av48`, `av48t`, `av52`, `av52t`, and `av64`. Changing this forces a new Azure VMware Solution Private Cloud to be created. */ skuName: pulumi.Input; /** * A mapping of tags which should be assigned to the Azure VMware Solution Private Cloud. */ tags?: pulumi.Input<{ [key: string]: pulumi.Input; }>; /** * The password of the VMware vCenter Server cloudadmin. Changing this forces a new Azure VMware Solution Private Cloud to be created. */ vcenterPassword?: pulumi.Input; }