ClusterArgs

data class ClusterArgs(val clusterName: Output<String>? = null, val clusterSize: Output<Int>? = null, val hosts: Output<List<String>>? = null, val privateCloudName: Output<String>? = null, val resourceGroupName: Output<String>? = null, val sku: Output<SkuArgs>? = null) : ConvertibleToJava<ClusterArgs>

A cluster resource Uses Azure REST API version 2022-05-01. In version 1.x of the Azure Native provider, it used API version 2020-03-20. Other available API versions: 2020-03-20, 2021-06-01, 2023-03-01, 2023-09-01.

Example Usage

Clusters_CreateOrUpdate

using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() =>
{
var cluster = new AzureNative.AVS.Cluster("cluster", new()
{
ClusterName = "cluster1",
ClusterSize = 3,
PrivateCloudName = "cloud1",
ResourceGroupName = "group1",
Sku = new AzureNative.AVS.Inputs.SkuArgs
{
Name = "AV20",
},
});
});
package main
import (
avs "github.com/pulumi/pulumi-azure-native-sdk/avs/v2"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := avs.NewCluster(ctx, "cluster", &avs.ClusterArgs{
ClusterName: pulumi.String("cluster1"),
ClusterSize: pulumi.Int(3),
PrivateCloudName: pulumi.String("cloud1"),
ResourceGroupName: pulumi.String("group1"),
Sku: &avs.SkuArgs{
Name: pulumi.String("AV20"),
},
})
if err != nil {
return err
}
return nil
})
}
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azurenative.avs.Cluster;
import com.pulumi.azurenative.avs.ClusterArgs;
import com.pulumi.azurenative.avs.inputs.SkuArgs;
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 cluster = new Cluster("cluster", ClusterArgs.builder()
.clusterName("cluster1")
.clusterSize(3)
.privateCloudName("cloud1")
.resourceGroupName("group1")
.sku(SkuArgs.builder()
.name("AV20")
.build())
.build());
}
}

Import

An existing resource can be imported using its type token, name, and identifier, e.g.

$ pulumi import azure-native:avs:Cluster cluster1 /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.AVS/privateClouds/{privateCloudName}/clusters/{clusterName}

Constructors

Link copied to clipboard
constructor(clusterName: Output<String>? = null, clusterSize: Output<Int>? = null, hosts: Output<List<String>>? = null, privateCloudName: Output<String>? = null, resourceGroupName: Output<String>? = null, sku: Output<SkuArgs>? = null)

Properties

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

Name of the cluster in the private cloud

Link copied to clipboard
val clusterSize: Output<Int>? = null

The cluster size

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

The hosts

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

The name of the private cloud.

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

The name of the resource group. The name is case insensitive.

Link copied to clipboard
val sku: Output<SkuArgs>? = null

The cluster SKU

Functions

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