import * as pulumi from "@pulumi/pulumi"; /** * Manages an Azure VMware Solution Cluster. * * ## Example Usage * * ```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", * }); * const exampleCluster = new azure.avs.Cluster("example", { * name: "example-Cluster", * vmwareCloudId: examplePrivateCloud.id, * clusterNodeCount: 3, * skuName: "av36", * }); * ``` * * ## API Providers * * * This resource uses the following Azure API Providers: * * * `Microsoft.AVS` - 2022-05-01 * * ## Import * * Azure VMware Solution Clusters can be imported using the `resource id`, e.g. * * ```sh * $ pulumi import azure:avs/cluster:Cluster example /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mygroup1/providers/Microsoft.AVS/privateClouds/privateCloud1/clusters/cluster1 * ``` */ export declare class Cluster extends pulumi.CustomResource { /** * Get an existing Cluster 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?: ClusterState, opts?: pulumi.CustomResourceOptions): Cluster; /** * Returns true if the given object is an instance of Cluster. 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 Cluster; /** * The count of the Azure VMware Solution Cluster nodes. */ readonly clusterNodeCount: pulumi.Output; /** * A number that identifies this Cluster in its Azure VMware Solution Private Cloud. */ readonly clusterNumber: pulumi.Output; /** * A list of hosts in the Azure VMware Solution Cluster. */ readonly hosts: pulumi.Output; /** * The name which should be used for this Azure VMware Solution Cluster. Changing this forces a new Azure VMware Solution Cluster to be created. */ readonly name: pulumi.Output; /** * The Cluster SKU to use. Possible values are `av20`, `av36`, `av36t`, `av36p`, `av48`, `av48t`, `av36pt`, `av52`, `av52t`, and `av64`. Changing this forces a new Azure VMware Solution Cluster to be created. */ readonly skuName: pulumi.Output; /** * The ID of the Azure VMware Solution Private Cloud in which to create this Cluster. Changing this forces a new Azure VMware Solution Cluster to be created. */ readonly vmwareCloudId: pulumi.Output; /** * Create a Cluster 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: ClusterArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering Cluster resources. */ export interface ClusterState { /** * The count of the Azure VMware Solution Cluster nodes. */ clusterNodeCount?: pulumi.Input; /** * A number that identifies this Cluster in its Azure VMware Solution Private Cloud. */ clusterNumber?: pulumi.Input; /** * A list of hosts in the Azure VMware Solution Cluster. */ hosts?: pulumi.Input[]>; /** * The name which should be used for this Azure VMware Solution Cluster. Changing this forces a new Azure VMware Solution Cluster to be created. */ name?: pulumi.Input; /** * The Cluster SKU to use. Possible values are `av20`, `av36`, `av36t`, `av36p`, `av48`, `av48t`, `av36pt`, `av52`, `av52t`, and `av64`. Changing this forces a new Azure VMware Solution Cluster to be created. */ skuName?: pulumi.Input; /** * The ID of the Azure VMware Solution Private Cloud in which to create this Cluster. Changing this forces a new Azure VMware Solution Cluster to be created. */ vmwareCloudId?: pulumi.Input; } /** * The set of arguments for constructing a Cluster resource. */ export interface ClusterArgs { /** * The count of the Azure VMware Solution Cluster nodes. */ clusterNodeCount: pulumi.Input; /** * The name which should be used for this Azure VMware Solution Cluster. Changing this forces a new Azure VMware Solution Cluster to be created. */ name?: pulumi.Input; /** * The Cluster SKU to use. Possible values are `av20`, `av36`, `av36t`, `av36p`, `av48`, `av48t`, `av36pt`, `av52`, `av52t`, and `av64`. Changing this forces a new Azure VMware Solution Cluster to be created. */ skuName: pulumi.Input; /** * The ID of the Azure VMware Solution Private Cloud in which to create this Cluster. Changing this forces a new Azure VMware Solution Cluster to be created. */ vmwareCloudId: pulumi.Input; }