azure-native.avs.Cluster
Explore with Pulumi AI
A cluster resource API Version: 2020-03-20.
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"
"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 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(Map.of("name", "AV20"))
.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,
cluster_size: Optional[int] = None,
private_cloud_name: Optional[str] = None,
resource_group_name: Optional[str] = None,
sku: Optional[SkuArgs] = None,
cluster_name: Optional[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.
Constructor example
The following reference example uses placeholder values for all input properties.
var clusterResource = new AzureNative.Avs.Cluster("clusterResource", new()
{
ClusterSize = 0,
PrivateCloudName = "string",
ResourceGroupName = "string",
Sku =
{
{ "name", "string" },
},
ClusterName = "string",
});
example, err := avs.NewCluster(ctx, "clusterResource", &avs.ClusterArgs{
ClusterSize: 0,
PrivateCloudName: "string",
ResourceGroupName: "string",
Sku: map[string]interface{}{
"name": "string",
},
ClusterName: "string",
})
var clusterResource = new Cluster("clusterResource", ClusterArgs.builder()
.clusterSize(0)
.privateCloudName("string")
.resourceGroupName("string")
.sku(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
.clusterName("string")
.build());
cluster_resource = azure_native.avs.Cluster("clusterResource",
cluster_size=0,
private_cloud_name=string,
resource_group_name=string,
sku={
name: string,
},
cluster_name=string)
const clusterResource = new azure_native.avs.Cluster("clusterResource", {
clusterSize: 0,
privateCloudName: "string",
resourceGroupName: "string",
sku: {
name: "string",
},
clusterName: "string",
});
type: azure-native:avs:Cluster
properties:
clusterName: string
clusterSize: 0
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:
- Cluster
Size int - The cluster size
- Private
Cloud stringName - The name of the private cloud.
- Resource
Group stringName - The name of the resource group. The name is case insensitive.
- Sku
Pulumi.
Azure Native. AVS. Inputs. Sku - The cluster SKU
- Cluster
Name string - Name of the cluster in the private cloud
- Cluster
Size int - The cluster size
- Private
Cloud stringName - The name of the private cloud.
- Resource
Group stringName - The name of the resource group. The name is case insensitive.
- Sku
Sku
Args - The cluster SKU
- Cluster
Name string - Name of the cluster in the private cloud
- cluster
Size Integer - The cluster size
- private
Cloud StringName - The name of the private cloud.
- resource
Group StringName - The name of the resource group. The name is case insensitive.
- sku Sku
- The cluster SKU
- cluster
Name String - Name of the cluster in the private cloud
- cluster
Size number - The cluster size
- private
Cloud stringName - The name of the private cloud.
- resource
Group stringName - The name of the resource group. The name is case insensitive.
- sku Sku
- The cluster SKU
- cluster
Name string - Name of the cluster in the private cloud
- cluster_
size int - The cluster size
- private_
cloud_ strname - The name of the private cloud.
- resource_
group_ strname - The name of the resource group. The name is case insensitive.
- sku
Sku
Args - The cluster SKU
- cluster_
name str - Name of the cluster in the private cloud
- cluster
Size Number - The cluster size
- private
Cloud StringName - The name of the private cloud.
- resource
Group StringName - The name of the resource group. The name is case insensitive.
- sku Property Map
- The cluster SKU
- cluster
Name String - Name of the cluster in the private cloud
Outputs
All input properties are implicitly available as output properties. Additionally, the Cluster resource produces the following output properties:
- cluster_
id int - The identity
- hosts Sequence[str]
- The hosts
- 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.
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/{subscription-id}/resourceGroups/group1/providers/Microsoft.AVS/privateClouds/cloud1/clusters/cluster1
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- azure-native-v1 pulumi/pulumi-azure-native
- License
- Apache-2.0