1. Packages
  2. Azure Native
  3. API Docs
  4. avs
  5. Cluster
This is the latest version of Azure Native. Use the Azure Native v1 docs if using the v1 version of this package.
Azure Native v2.37.0 published on Monday, Apr 15, 2024 by Pulumi

azure-native.avs.Cluster

Explore with Pulumi AI

azure-native logo
This is the latest version of Azure Native. Use the Azure Native v1 docs if using the v1 version of this package.
Azure Native v2.37.0 published on Monday, Apr 15, 2024 by Pulumi

    A cluster resource Azure REST API version: 2022-05-01. Prior API version in Azure Native 1.x: 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 (
    	"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 pulumi
    import pulumi_azure_native as azure_native
    
    cluster = azure_native.avs.Cluster("cluster",
        cluster_name="cluster1",
        cluster_size=3,
        private_cloud_name="cloud1",
        resource_group_name="group1",
        sku=azure_native.avs.SkuArgs(
            name="AV20",
        ))
    
    import * as pulumi from "@pulumi/pulumi";
    import * as azure_native from "@pulumi/azure-native";
    
    const cluster = new azure_native.avs.Cluster("cluster", {
        clusterName: "cluster1",
        clusterSize: 3,
        privateCloudName: "cloud1",
        resourceGroupName: "group1",
        sku: {
            name: "AV20",
        },
    });
    
    resources:
      cluster:
        type: azure-native:avs:Cluster
        properties:
          clusterName: cluster1
          clusterSize: 3
          privateCloudName: cloud1
          resourceGroupName: group1
          sku:
            name: AV20
    

    Create Cluster Resource

    Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

    Constructor syntax

    new Cluster(name: string, args: ClusterArgs, opts?: CustomResourceOptions);
    @overload
    def Cluster(resource_name: str,
                args: ClusterArgs,
                opts: Optional[ResourceOptions] = None)
    
    @overload
    def Cluster(resource_name: str,
                opts: Optional[ResourceOptions] = None,
                private_cloud_name: Optional[str] = None,
                resource_group_name: Optional[str] = None,
                sku: Optional[SkuArgs] = None,
                cluster_name: Optional[str] = None,
                cluster_size: Optional[int] = None,
                hosts: Optional[Sequence[str]] = None)
    func NewCluster(ctx *Context, name string, args ClusterArgs, opts ...ResourceOption) (*Cluster, error)
    public Cluster(string name, ClusterArgs args, CustomResourceOptions? opts = null)
    public Cluster(String name, ClusterArgs args)
    public Cluster(String name, ClusterArgs args, CustomResourceOptions options)
    
    type: azure-native:avs:Cluster
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    

    Parameters

    name string
    The unique name of the resource.
    args ClusterArgs
    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 ClusterArgs
    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 ClusterArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args ClusterArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args ClusterArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    Example

    The following reference example uses placeholder values for all input properties.

    var clusterResource = new AzureNative.AVS.Cluster("clusterResource", new()
    {
        PrivateCloudName = "string",
        ResourceGroupName = "string",
        Sku = new AzureNative.AVS.Inputs.SkuArgs
        {
            Name = "string",
        },
        ClusterName = "string",
        ClusterSize = 0,
        Hosts = new[]
        {
            "string",
        },
    });
    
    example, err := avs.NewCluster(ctx, "clusterResource", &avs.ClusterArgs{
    PrivateCloudName: pulumi.String("string"),
    ResourceGroupName: pulumi.String("string"),
    Sku: &avs.SkuArgs{
    Name: pulumi.String("string"),
    },
    ClusterName: pulumi.String("string"),
    ClusterSize: pulumi.Int(0),
    Hosts: pulumi.StringArray{
    pulumi.String("string"),
    },
    })
    
    var clusterResource = new Cluster("clusterResource", ClusterArgs.builder()        
        .privateCloudName("string")
        .resourceGroupName("string")
        .sku(SkuArgs.builder()
            .name("string")
            .build())
        .clusterName("string")
        .clusterSize(0)
        .hosts("string")
        .build());
    
    cluster_resource = azure_native.avs.Cluster("clusterResource",
        private_cloud_name="string",
        resource_group_name="string",
        sku=azure_native.avs.SkuArgs(
            name="string",
        ),
        cluster_name="string",
        cluster_size=0,
        hosts=["string"])
    
    const clusterResource = new azure_native.avs.Cluster("clusterResource", {
        privateCloudName: "string",
        resourceGroupName: "string",
        sku: {
            name: "string",
        },
        clusterName: "string",
        clusterSize: 0,
        hosts: ["string"],
    });
    
    type: azure-native:avs:Cluster
    properties:
        clusterName: string
        clusterSize: 0
        hosts:
            - string
        privateCloudName: string
        resourceGroupName: string
        sku:
            name: string
    

    Cluster 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 Cluster resource accepts the following input properties:

    PrivateCloudName string
    The name of the private cloud.
    ResourceGroupName string
    The name of the resource group. The name is case insensitive.
    Sku Pulumi.AzureNative.AVS.Inputs.Sku
    The cluster SKU
    ClusterName string
    Name of the cluster in the private cloud
    ClusterSize int
    The cluster size
    Hosts List<string>
    The hosts
    PrivateCloudName string
    The name of the private cloud.
    ResourceGroupName string
    The name of the resource group. The name is case insensitive.
    Sku SkuArgs
    The cluster SKU
    ClusterName string
    Name of the cluster in the private cloud
    ClusterSize int
    The cluster size
    Hosts []string
    The hosts
    privateCloudName String
    The name of the private cloud.
    resourceGroupName String
    The name of the resource group. The name is case insensitive.
    sku Sku
    The cluster SKU
    clusterName String
    Name of the cluster in the private cloud
    clusterSize Integer
    The cluster size
    hosts List<String>
    The hosts
    privateCloudName string
    The name of the private cloud.
    resourceGroupName string
    The name of the resource group. The name is case insensitive.
    sku Sku
    The cluster SKU
    clusterName string
    Name of the cluster in the private cloud
    clusterSize number
    The cluster size
    hosts string[]
    The hosts
    private_cloud_name str
    The name of the private cloud.
    resource_group_name str
    The name of the resource group. The name is case insensitive.
    sku SkuArgs
    The cluster SKU
    cluster_name str
    Name of the cluster in the private cloud
    cluster_size int
    The cluster size
    hosts Sequence[str]
    The hosts
    privateCloudName String
    The name of the private cloud.
    resourceGroupName String
    The name of the resource group. The name is case insensitive.
    sku Property Map
    The cluster SKU
    clusterName String
    Name of the cluster in the private cloud
    clusterSize Number
    The cluster size
    hosts List<String>
    The hosts

    Outputs

    All input properties are implicitly available as output properties. Additionally, the Cluster resource produces the following output properties:

    ClusterId int
    The identity
    Id string
    The provider-assigned unique ID for this managed resource.
    Name string
    Resource name.
    ProvisioningState string
    The state of the cluster provisioning
    Type string
    Resource type.
    ClusterId int
    The identity
    Id string
    The provider-assigned unique ID for this managed resource.
    Name string
    Resource name.
    ProvisioningState string
    The state of the cluster provisioning
    Type string
    Resource type.
    clusterId Integer
    The identity
    id String
    The provider-assigned unique ID for this managed resource.
    name String
    Resource name.
    provisioningState String
    The state of the cluster provisioning
    type String
    Resource type.
    clusterId number
    The identity
    id string
    The provider-assigned unique ID for this managed resource.
    name string
    Resource name.
    provisioningState string
    The state of the cluster provisioning
    type string
    Resource type.
    cluster_id int
    The identity
    id str
    The provider-assigned unique ID for this managed resource.
    name str
    Resource name.
    provisioning_state str
    The state of the cluster provisioning
    type str
    Resource type.
    clusterId Number
    The identity
    id String
    The provider-assigned unique ID for this managed resource.
    name String
    Resource name.
    provisioningState String
    The state of the cluster provisioning
    type String
    Resource type.

    Supporting Types

    Sku, SkuArgs

    Name string
    The name of the SKU.
    Name string
    The name of the SKU.
    name String
    The name of the SKU.
    name string
    The name of the SKU.
    name str
    The name of the SKU.
    name String
    The name of the SKU.

    SkuResponse, SkuResponseArgs

    Name string
    The name of the SKU.
    Name string
    The name of the SKU.
    name String
    The name of the SKU.
    name string
    The name of the SKU.
    name str
    The name of the SKU.
    name String
    The name of the SKU.

    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} 
    

    To learn more about importing existing cloud resources, see Importing resources.

    Package Details

    Repository
    Azure Native pulumi/pulumi-azure-native
    License
    Apache-2.0
    azure-native logo
    This is the latest version of Azure Native. Use the Azure Native v1 docs if using the v1 version of this package.
    Azure Native v2.37.0 published on Monday, Apr 15, 2024 by Pulumi