1. Packages
  2. Azure Native
  3. API Docs
  4. cosmosdb
  5. GarnetCluster
This is the latest version of Azure Native. Use the Azure Native v2 docs if using the v2 version of this package.
Azure Native v3.13.0 published on Wednesday, Jan 28, 2026 by Pulumi
azure-native logo
This is the latest version of Azure Native. Use the Azure Native v2 docs if using the v2 version of this package.
Azure Native v3.13.0 published on Wednesday, Jan 28, 2026 by Pulumi

    Representation of a Garnet cache cluster.

    Uses Azure REST API version 2025-11-01-preview.

    Example Usage

    CosmosDBGarnetClusterCreate

    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using AzureNative = Pulumi.AzureNative;
    
    return await Deployment.RunAsync(() => 
    {
        var garnetCluster = new AzureNative.CosmosDB.GarnetCluster("garnetCluster", new()
        {
            ClusterName = "garnet-prod",
            Location = "West US",
            Properties = new AzureNative.CosmosDB.Inputs.ClusterResourcePropertiesArgs
            {
                NodeCount = 4,
                NodeSku = "Standard_DS13_v2",
                ReplicationFactor = 2,
                SubnetId = "/subscriptions/536e130b-d7d6-4ac7-98a5-de20d69588d2/resourceGroups/customer-vnet-rg/providers/Microsoft.Network/virtualNetworks/customer-vnet/subnets/management",
            },
            ResourceGroupName = "garnet-prod-rg",
            Tags = null,
        });
    
    });
    
    package main
    
    import (
    	cosmosdb "github.com/pulumi/pulumi-azure-native-sdk/cosmosdb/v3"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := cosmosdb.NewGarnetCluster(ctx, "garnetCluster", &cosmosdb.GarnetClusterArgs{
    			ClusterName: pulumi.String("garnet-prod"),
    			Location:    pulumi.String("West US"),
    			Properties: &cosmosdb.ClusterResourcePropertiesArgs{
    				NodeCount:         pulumi.Int(4),
    				NodeSku:           pulumi.String("Standard_DS13_v2"),
    				ReplicationFactor: pulumi.Int(2),
    				SubnetId:          pulumi.String("/subscriptions/536e130b-d7d6-4ac7-98a5-de20d69588d2/resourceGroups/customer-vnet-rg/providers/Microsoft.Network/virtualNetworks/customer-vnet/subnets/management"),
    			},
    			ResourceGroupName: pulumi.String("garnet-prod-rg"),
    			Tags:              pulumi.StringMap{},
    		})
    		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.cosmosdb.GarnetCluster;
    import com.pulumi.azurenative.cosmosdb.GarnetClusterArgs;
    import com.pulumi.azurenative.cosmosdb.inputs.ClusterResourcePropertiesArgs;
    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 garnetCluster = new GarnetCluster("garnetCluster", GarnetClusterArgs.builder()
                .clusterName("garnet-prod")
                .location("West US")
                .properties(ClusterResourcePropertiesArgs.builder()
                    .nodeCount(4)
                    .nodeSku("Standard_DS13_v2")
                    .replicationFactor(2)
                    .subnetId("/subscriptions/536e130b-d7d6-4ac7-98a5-de20d69588d2/resourceGroups/customer-vnet-rg/providers/Microsoft.Network/virtualNetworks/customer-vnet/subnets/management")
                    .build())
                .resourceGroupName("garnet-prod-rg")
                .tags(Map.ofEntries(
                ))
                .build());
    
        }
    }
    
    import * as pulumi from "@pulumi/pulumi";
    import * as azure_native from "@pulumi/azure-native";
    
    const garnetCluster = new azure_native.cosmosdb.GarnetCluster("garnetCluster", {
        clusterName: "garnet-prod",
        location: "West US",
        properties: {
            nodeCount: 4,
            nodeSku: "Standard_DS13_v2",
            replicationFactor: 2,
            subnetId: "/subscriptions/536e130b-d7d6-4ac7-98a5-de20d69588d2/resourceGroups/customer-vnet-rg/providers/Microsoft.Network/virtualNetworks/customer-vnet/subnets/management",
        },
        resourceGroupName: "garnet-prod-rg",
        tags: {},
    });
    
    import pulumi
    import pulumi_azure_native as azure_native
    
    garnet_cluster = azure_native.cosmosdb.GarnetCluster("garnetCluster",
        cluster_name="garnet-prod",
        location="West US",
        properties={
            "node_count": 4,
            "node_sku": "Standard_DS13_v2",
            "replication_factor": 2,
            "subnet_id": "/subscriptions/536e130b-d7d6-4ac7-98a5-de20d69588d2/resourceGroups/customer-vnet-rg/providers/Microsoft.Network/virtualNetworks/customer-vnet/subnets/management",
        },
        resource_group_name="garnet-prod-rg",
        tags={})
    
    resources:
      garnetCluster:
        type: azure-native:cosmosdb:GarnetCluster
        properties:
          clusterName: garnet-prod
          location: West US
          properties:
            nodeCount: 4
            nodeSku: Standard_DS13_v2
            replicationFactor: 2
            subnetId: /subscriptions/536e130b-d7d6-4ac7-98a5-de20d69588d2/resourceGroups/customer-vnet-rg/providers/Microsoft.Network/virtualNetworks/customer-vnet/subnets/management
          resourceGroupName: garnet-prod-rg
          tags: {}
    

    Create GarnetCluster Resource

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

    Constructor syntax

    new GarnetCluster(name: string, args: GarnetClusterArgs, opts?: CustomResourceOptions);
    @overload
    def GarnetCluster(resource_name: str,
                      args: GarnetClusterArgs,
                      opts: Optional[ResourceOptions] = None)
    
    @overload
    def GarnetCluster(resource_name: str,
                      opts: Optional[ResourceOptions] = None,
                      resource_group_name: Optional[str] = None,
                      cluster_name: Optional[str] = None,
                      location: Optional[str] = None,
                      properties: Optional[ClusterResourcePropertiesArgs] = None,
                      tags: Optional[Mapping[str, str]] = None)
    func NewGarnetCluster(ctx *Context, name string, args GarnetClusterArgs, opts ...ResourceOption) (*GarnetCluster, error)
    public GarnetCluster(string name, GarnetClusterArgs args, CustomResourceOptions? opts = null)
    public GarnetCluster(String name, GarnetClusterArgs args)
    public GarnetCluster(String name, GarnetClusterArgs args, CustomResourceOptions options)
    
    type: azure-native:cosmosdb:GarnetCluster
    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 GarnetClusterArgs
    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 GarnetClusterArgs
    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 GarnetClusterArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args GarnetClusterArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args GarnetClusterArgs
    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 garnetClusterResource = new AzureNative.CosmosDB.GarnetCluster("garnetClusterResource", new()
    {
        ResourceGroupName = "string",
        ClusterName = "string",
        Location = "string",
        Properties = new AzureNative.CosmosDB.Inputs.ClusterResourcePropertiesArgs
        {
            AllocationState = "string",
            AuthenticationMethod = "string",
            AvailabilityZone = false,
            AzureConnectionMethod = "string",
            CassandraAuditLoggingEnabled = false,
            CassandraVersion = "string",
            ClientCertificates = new[]
            {
                new AzureNative.CosmosDB.Inputs.CertificateArgs
                {
                    Pem = "string",
                },
            },
            ClusterNameOverride = "string",
            ClusterType = "string",
            Deallocated = false,
            DelegatedManagementSubnetId = "string",
            Extensions = new[]
            {
                "string",
            },
            ExternalGossipCertificates = new[]
            {
                new AzureNative.CosmosDB.Inputs.CertificateArgs
                {
                    Pem = "string",
                },
            },
            ExternalSeedNodes = new[]
            {
                new AzureNative.CosmosDB.Inputs.SeedNodeArgs
                {
                    IpAddress = "string",
                },
            },
            HoursBetweenBackups = 0,
            InitialCassandraAdminPassword = "string",
            NodeCount = 0,
            NodeSku = "string",
            PrometheusEndpoint = new AzureNative.CosmosDB.Inputs.SeedNodeArgs
            {
                IpAddress = "string",
            },
            ProvisionError = new AzureNative.CosmosDB.Inputs.CassandraErrorArgs
            {
                AdditionalErrorInfo = "string",
                Code = "string",
                Message = "string",
                Target = "string",
            },
            ProvisioningState = "string",
            RepairEnabled = false,
            ReplicationFactor = 0,
            RestoreFromBackupId = "string",
            SubnetId = "string",
        },
        Tags = 
        {
            { "string", "string" },
        },
    });
    
    example, err := cosmosdb.NewGarnetCluster(ctx, "garnetClusterResource", &cosmosdb.GarnetClusterArgs{
    	ResourceGroupName: pulumi.String("string"),
    	ClusterName:       pulumi.String("string"),
    	Location:          pulumi.String("string"),
    	Properties: &cosmosdb.ClusterResourcePropertiesArgs{
    		AllocationState:              pulumi.String("string"),
    		AuthenticationMethod:         pulumi.String("string"),
    		AvailabilityZone:             pulumi.Bool(false),
    		AzureConnectionMethod:        pulumi.String("string"),
    		CassandraAuditLoggingEnabled: pulumi.Bool(false),
    		CassandraVersion:             pulumi.String("string"),
    		ClientCertificates: cosmosdb.CertificateArray{
    			&cosmosdb.CertificateArgs{
    				Pem: pulumi.String("string"),
    			},
    		},
    		ClusterNameOverride:         pulumi.String("string"),
    		ClusterType:                 pulumi.String("string"),
    		Deallocated:                 pulumi.Bool(false),
    		DelegatedManagementSubnetId: pulumi.String("string"),
    		Extensions: pulumi.StringArray{
    			pulumi.String("string"),
    		},
    		ExternalGossipCertificates: cosmosdb.CertificateArray{
    			&cosmosdb.CertificateArgs{
    				Pem: pulumi.String("string"),
    			},
    		},
    		ExternalSeedNodes: cosmosdb.SeedNodeArray{
    			&cosmosdb.SeedNodeArgs{
    				IpAddress: pulumi.String("string"),
    			},
    		},
    		HoursBetweenBackups:           pulumi.Int(0),
    		InitialCassandraAdminPassword: pulumi.String("string"),
    		NodeCount:                     pulumi.Int(0),
    		NodeSku:                       pulumi.String("string"),
    		PrometheusEndpoint: &cosmosdb.SeedNodeArgs{
    			IpAddress: pulumi.String("string"),
    		},
    		ProvisionError: &cosmosdb.CassandraErrorArgs{
    			AdditionalErrorInfo: pulumi.String("string"),
    			Code:                pulumi.String("string"),
    			Message:             pulumi.String("string"),
    			Target:              pulumi.String("string"),
    		},
    		ProvisioningState:   pulumi.String("string"),
    		RepairEnabled:       pulumi.Bool(false),
    		ReplicationFactor:   pulumi.Int(0),
    		RestoreFromBackupId: pulumi.String("string"),
    		SubnetId:            pulumi.String("string"),
    	},
    	Tags: pulumi.StringMap{
    		"string": pulumi.String("string"),
    	},
    })
    
    var garnetClusterResource = new GarnetCluster("garnetClusterResource", GarnetClusterArgs.builder()
        .resourceGroupName("string")
        .clusterName("string")
        .location("string")
        .properties(ClusterResourcePropertiesArgs.builder()
            .allocationState("string")
            .authenticationMethod("string")
            .availabilityZone(false)
            .azureConnectionMethod("string")
            .cassandraAuditLoggingEnabled(false)
            .cassandraVersion("string")
            .clientCertificates(CertificateArgs.builder()
                .pem("string")
                .build())
            .clusterNameOverride("string")
            .clusterType("string")
            .deallocated(false)
            .delegatedManagementSubnetId("string")
            .extensions("string")
            .externalGossipCertificates(CertificateArgs.builder()
                .pem("string")
                .build())
            .externalSeedNodes(SeedNodeArgs.builder()
                .ipAddress("string")
                .build())
            .hoursBetweenBackups(0)
            .initialCassandraAdminPassword("string")
            .nodeCount(0)
            .nodeSku("string")
            .prometheusEndpoint(SeedNodeArgs.builder()
                .ipAddress("string")
                .build())
            .provisionError(CassandraErrorArgs.builder()
                .additionalErrorInfo("string")
                .code("string")
                .message("string")
                .target("string")
                .build())
            .provisioningState("string")
            .repairEnabled(false)
            .replicationFactor(0)
            .restoreFromBackupId("string")
            .subnetId("string")
            .build())
        .tags(Map.of("string", "string"))
        .build());
    
    garnet_cluster_resource = azure_native.cosmosdb.GarnetCluster("garnetClusterResource",
        resource_group_name="string",
        cluster_name="string",
        location="string",
        properties={
            "allocation_state": "string",
            "authentication_method": "string",
            "availability_zone": False,
            "azure_connection_method": "string",
            "cassandra_audit_logging_enabled": False,
            "cassandra_version": "string",
            "client_certificates": [{
                "pem": "string",
            }],
            "cluster_name_override": "string",
            "cluster_type": "string",
            "deallocated": False,
            "delegated_management_subnet_id": "string",
            "extensions": ["string"],
            "external_gossip_certificates": [{
                "pem": "string",
            }],
            "external_seed_nodes": [{
                "ip_address": "string",
            }],
            "hours_between_backups": 0,
            "initial_cassandra_admin_password": "string",
            "node_count": 0,
            "node_sku": "string",
            "prometheus_endpoint": {
                "ip_address": "string",
            },
            "provision_error": {
                "additional_error_info": "string",
                "code": "string",
                "message": "string",
                "target": "string",
            },
            "provisioning_state": "string",
            "repair_enabled": False,
            "replication_factor": 0,
            "restore_from_backup_id": "string",
            "subnet_id": "string",
        },
        tags={
            "string": "string",
        })
    
    const garnetClusterResource = new azure_native.cosmosdb.GarnetCluster("garnetClusterResource", {
        resourceGroupName: "string",
        clusterName: "string",
        location: "string",
        properties: {
            allocationState: "string",
            authenticationMethod: "string",
            availabilityZone: false,
            azureConnectionMethod: "string",
            cassandraAuditLoggingEnabled: false,
            cassandraVersion: "string",
            clientCertificates: [{
                pem: "string",
            }],
            clusterNameOverride: "string",
            clusterType: "string",
            deallocated: false,
            delegatedManagementSubnetId: "string",
            extensions: ["string"],
            externalGossipCertificates: [{
                pem: "string",
            }],
            externalSeedNodes: [{
                ipAddress: "string",
            }],
            hoursBetweenBackups: 0,
            initialCassandraAdminPassword: "string",
            nodeCount: 0,
            nodeSku: "string",
            prometheusEndpoint: {
                ipAddress: "string",
            },
            provisionError: {
                additionalErrorInfo: "string",
                code: "string",
                message: "string",
                target: "string",
            },
            provisioningState: "string",
            repairEnabled: false,
            replicationFactor: 0,
            restoreFromBackupId: "string",
            subnetId: "string",
        },
        tags: {
            string: "string",
        },
    });
    
    type: azure-native:cosmosdb:GarnetCluster
    properties:
        clusterName: string
        location: string
        properties:
            allocationState: string
            authenticationMethod: string
            availabilityZone: false
            azureConnectionMethod: string
            cassandraAuditLoggingEnabled: false
            cassandraVersion: string
            clientCertificates:
                - pem: string
            clusterNameOverride: string
            clusterType: string
            deallocated: false
            delegatedManagementSubnetId: string
            extensions:
                - string
            externalGossipCertificates:
                - pem: string
            externalSeedNodes:
                - ipAddress: string
            hoursBetweenBackups: 0
            initialCassandraAdminPassword: string
            nodeCount: 0
            nodeSku: string
            prometheusEndpoint:
                ipAddress: string
            provisionError:
                additionalErrorInfo: string
                code: string
                message: string
                target: string
            provisioningState: string
            repairEnabled: false
            replicationFactor: 0
            restoreFromBackupId: string
            subnetId: string
        resourceGroupName: string
        tags:
            string: string
    

    GarnetCluster Resource Properties

    To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

    Inputs

    In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.

    The GarnetCluster resource accepts the following input properties:

    ResourceGroupName string
    The name of the resource group. The name is case insensitive.
    ClusterName string
    Garnet cache cluster name.
    Location string
    The geo-location where the resource lives
    Properties Pulumi.AzureNative.CosmosDB.Inputs.ClusterResourceProperties
    Properties of a Garnet cache cluster.
    Tags Dictionary<string, string>
    Resource tags.
    ResourceGroupName string
    The name of the resource group. The name is case insensitive.
    ClusterName string
    Garnet cache cluster name.
    Location string
    The geo-location where the resource lives
    Properties ClusterResourcePropertiesArgs
    Properties of a Garnet cache cluster.
    Tags map[string]string
    Resource tags.
    resourceGroupName String
    The name of the resource group. The name is case insensitive.
    clusterName String
    Garnet cache cluster name.
    location String
    The geo-location where the resource lives
    properties ClusterResourceProperties
    Properties of a Garnet cache cluster.
    tags Map<String,String>
    Resource tags.
    resourceGroupName string
    The name of the resource group. The name is case insensitive.
    clusterName string
    Garnet cache cluster name.
    location string
    The geo-location where the resource lives
    properties ClusterResourceProperties
    Properties of a Garnet cache cluster.
    tags {[key: string]: string}
    Resource tags.
    resource_group_name str
    The name of the resource group. The name is case insensitive.
    cluster_name str
    Garnet cache cluster name.
    location str
    The geo-location where the resource lives
    properties ClusterResourcePropertiesArgs
    Properties of a Garnet cache cluster.
    tags Mapping[str, str]
    Resource tags.
    resourceGroupName String
    The name of the resource group. The name is case insensitive.
    clusterName String
    Garnet cache cluster name.
    location String
    The geo-location where the resource lives
    properties Property Map
    Properties of a Garnet cache cluster.
    tags Map<String>
    Resource tags.

    Outputs

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

    AzureApiVersion string
    The Azure API version of the resource.
    Id string
    The provider-assigned unique ID for this managed resource.
    Name string
    The name of the resource
    SystemData Pulumi.AzureNative.CosmosDB.Outputs.SystemDataResponse
    Azure Resource Manager metadata containing createdBy and modifiedBy information.
    Type string
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    AzureApiVersion string
    The Azure API version of the resource.
    Id string
    The provider-assigned unique ID for this managed resource.
    Name string
    The name of the resource
    SystemData SystemDataResponse
    Azure Resource Manager metadata containing createdBy and modifiedBy information.
    Type string
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    azureApiVersion String
    The Azure API version of the resource.
    id String
    The provider-assigned unique ID for this managed resource.
    name String
    The name of the resource
    systemData SystemDataResponse
    Azure Resource Manager metadata containing createdBy and modifiedBy information.
    type String
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    azureApiVersion string
    The Azure API version of the resource.
    id string
    The provider-assigned unique ID for this managed resource.
    name string
    The name of the resource
    systemData SystemDataResponse
    Azure Resource Manager metadata containing createdBy and modifiedBy information.
    type string
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    azure_api_version str
    The Azure API version of the resource.
    id str
    The provider-assigned unique ID for this managed resource.
    name str
    The name of the resource
    system_data SystemDataResponse
    Azure Resource Manager metadata containing createdBy and modifiedBy information.
    type str
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    azureApiVersion String
    The Azure API version of the resource.
    id String
    The provider-assigned unique ID for this managed resource.
    name String
    The name of the resource
    systemData Property Map
    Azure Resource Manager metadata containing createdBy and modifiedBy information.
    type String
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"

    Supporting Types

    AllocationState, AllocationStateArgs

    Active
    Active
    Deallocated
    Deallocated
    AllocationStateActive
    Active
    AllocationStateDeallocated
    Deallocated
    Active
    Active
    Deallocated
    Deallocated
    Active
    Active
    Deallocated
    Deallocated
    ACTIVE
    Active
    DEALLOCATED
    Deallocated
    "Active"
    Active
    "Deallocated"
    Deallocated

    AuthenticationMethod, AuthenticationMethodArgs

    None
    None
    Cassandra
    Cassandra
    Ldap
    Ldap
    AuthenticationMethodNone
    None
    AuthenticationMethodCassandra
    Cassandra
    AuthenticationMethodLdap
    Ldap
    None
    None
    Cassandra
    Cassandra
    Ldap
    Ldap
    None
    None
    Cassandra
    Cassandra
    Ldap
    Ldap
    NONE
    None
    CASSANDRA
    Cassandra
    LDAP
    Ldap
    "None"
    None
    "Cassandra"
    Cassandra
    "Ldap"
    Ldap

    AzureConnectionType, AzureConnectionTypeArgs

    None
    None
    VPN
    VPN
    AzureConnectionTypeNone
    None
    AzureConnectionTypeVPN
    VPN
    None
    None
    VPN
    VPN
    None
    None
    VPN
    VPN
    NONE
    None
    VPN
    VPN
    "None"
    None
    "VPN"
    VPN

    CassandraError, CassandraErrorArgs

    AdditionalErrorInfo string
    Additional information about the error.
    Code string
    The code of error that occurred.
    Message string
    The message of the error.
    Target string
    The target resource of the error.
    AdditionalErrorInfo string
    Additional information about the error.
    Code string
    The code of error that occurred.
    Message string
    The message of the error.
    Target string
    The target resource of the error.
    additionalErrorInfo String
    Additional information about the error.
    code String
    The code of error that occurred.
    message String
    The message of the error.
    target String
    The target resource of the error.
    additionalErrorInfo string
    Additional information about the error.
    code string
    The code of error that occurred.
    message string
    The message of the error.
    target string
    The target resource of the error.
    additional_error_info str
    Additional information about the error.
    code str
    The code of error that occurred.
    message str
    The message of the error.
    target str
    The target resource of the error.
    additionalErrorInfo String
    Additional information about the error.
    code String
    The code of error that occurred.
    message String
    The message of the error.
    target String
    The target resource of the error.

    Certificate, CertificateArgs

    Pem string
    PEM formatted public key.
    Pem string
    PEM formatted public key.
    pem String
    PEM formatted public key.
    pem string
    PEM formatted public key.
    pem str
    PEM formatted public key.
    pem String
    PEM formatted public key.

    ClusterResourceProperties, ClusterResourcePropertiesArgs

    Properties of a Garnet cache cluster.
    AllocationState string | Pulumi.AzureNative.CosmosDB.AllocationState
    Allocation state of the cluster and data center resources. Active implies the virtual machines of the cluster are allocated, deallocated implies virtual machines and resources are deallocated.
    AuthenticationMethod string | Pulumi.AzureNative.CosmosDB.AuthenticationMethod
    Which authentication method Cassandra should use to authenticate clients. 'None' turns off authentication, so should not be used except in emergencies. 'Cassandra' is the default password based authentication. The default is 'Cassandra'.
    AvailabilityZone bool
    If the data center has Availability Zone support, apply it to the Virtual Machine ScaleSet that host the garnet cluster virtual machines.
    AzureConnectionMethod string | Pulumi.AzureNative.CosmosDB.AzureConnectionType
    How to connect to the azure services needed for running the cluster
    CassandraAuditLoggingEnabled bool
    Whether Cassandra audit logging is enabled
    CassandraVersion string
    Which version of Cassandra should this cluster converge to running (e.g., 3.11). When updated, the cluster may take some time to migrate to the new version.
    ClientCertificates List<Pulumi.AzureNative.CosmosDB.Inputs.Certificate>
    List of TLS certificates used to authorize clients connecting to the cluster. All connections are TLS encrypted whether clientCertificates is set or not, but if clientCertificates is set, the managed Cassandra cluster will reject all connections not bearing a TLS client certificate that can be validated from one or more of the public certificates in this property.
    ClusterNameOverride string
    If you need to set the clusterName property in cassandra.yaml to something besides the resource name of the cluster, set the value to use on this property.
    ClusterType string | Pulumi.AzureNative.CosmosDB.ClusterType
    Type of the cluster. If set to Production, some operations might not be permitted on cluster.
    Deallocated bool
    Whether the cluster and associated data centers has been deallocated.
    DelegatedManagementSubnetId string
    Resource id of a subnet that this cluster's management service should have its network interface attached to. The subnet must be routable to all subnets that will be delegated to data centers. The resource id must be of the form '/subscriptions//resourceGroups//providers/Microsoft.Network/virtualNetworks//subnets/'
    Extensions List<string>
    Extensions to be added or updated on cluster.
    ExternalGossipCertificates List<Pulumi.AzureNative.CosmosDB.Inputs.Certificate>
    List of TLS certificates used to authorize gossip from unmanaged data centers. The TLS certificates of all nodes in unmanaged data centers must be verifiable using one of the certificates provided in this property.
    ExternalSeedNodes List<Pulumi.AzureNative.CosmosDB.Inputs.SeedNode>
    List of IP addresses of seed nodes in unmanaged data centers. These will be added to the seed node lists of all managed nodes.
    HoursBetweenBackups int
    (Deprecated) Number of hours to wait between taking a backup of the cluster.
    InitialCassandraAdminPassword string
    Initial password for clients connecting as admin to the cluster. Should be changed after cluster creation. Returns null on GET. This field only applies when the authenticationMethod field is 'Cassandra'.
    NodeCount int
    Number of nodes
    NodeSku string
    Virtual Machine SKU used for clusters. Default value is Standard_DS14_v2
    PrometheusEndpoint Pulumi.AzureNative.CosmosDB.Inputs.SeedNode
    Hostname or IP address where the Prometheus endpoint containing data about the managed Cassandra nodes can be reached.
    ProvisionError Pulumi.AzureNative.CosmosDB.Inputs.CassandraError
    Error related to resource provisioning.
    ProvisioningState string | Pulumi.AzureNative.CosmosDB.ManagedCassandraProvisioningState
    The status of the resource at the time the operation was called.
    RepairEnabled bool
    Should automatic repairs run on this cluster? If omitted, this is true, and should stay true unless you are running a hybrid cluster where you are already doing your own repairs.
    ReplicationFactor int
    Number of copies of data maintained by the cluster
    RestoreFromBackupId string
    To create an empty cluster, omit this field or set it to null. To restore a backup into a new cluster, set this field to the resource id of the backup.
    SubnetId string
    Resource id of a subnet that this cluster's management service should have its network interface attached to. The subnet must be routable to all subnets that will be delegated to data centers. The resource id must be of the form '/subscriptions//resourceGroups//providers/Microsoft.Network/virtualNetworks//subnets/'
    AllocationState string | AllocationState
    Allocation state of the cluster and data center resources. Active implies the virtual machines of the cluster are allocated, deallocated implies virtual machines and resources are deallocated.
    AuthenticationMethod string | AuthenticationMethod
    Which authentication method Cassandra should use to authenticate clients. 'None' turns off authentication, so should not be used except in emergencies. 'Cassandra' is the default password based authentication. The default is 'Cassandra'.
    AvailabilityZone bool
    If the data center has Availability Zone support, apply it to the Virtual Machine ScaleSet that host the garnet cluster virtual machines.
    AzureConnectionMethod string | AzureConnectionType
    How to connect to the azure services needed for running the cluster
    CassandraAuditLoggingEnabled bool
    Whether Cassandra audit logging is enabled
    CassandraVersion string
    Which version of Cassandra should this cluster converge to running (e.g., 3.11). When updated, the cluster may take some time to migrate to the new version.
    ClientCertificates []Certificate
    List of TLS certificates used to authorize clients connecting to the cluster. All connections are TLS encrypted whether clientCertificates is set or not, but if clientCertificates is set, the managed Cassandra cluster will reject all connections not bearing a TLS client certificate that can be validated from one or more of the public certificates in this property.
    ClusterNameOverride string
    If you need to set the clusterName property in cassandra.yaml to something besides the resource name of the cluster, set the value to use on this property.
    ClusterType string | ClusterType
    Type of the cluster. If set to Production, some operations might not be permitted on cluster.
    Deallocated bool
    Whether the cluster and associated data centers has been deallocated.
    DelegatedManagementSubnetId string
    Resource id of a subnet that this cluster's management service should have its network interface attached to. The subnet must be routable to all subnets that will be delegated to data centers. The resource id must be of the form '/subscriptions//resourceGroups//providers/Microsoft.Network/virtualNetworks//subnets/'
    Extensions []string
    Extensions to be added or updated on cluster.
    ExternalGossipCertificates []Certificate
    List of TLS certificates used to authorize gossip from unmanaged data centers. The TLS certificates of all nodes in unmanaged data centers must be verifiable using one of the certificates provided in this property.
    ExternalSeedNodes []SeedNode
    List of IP addresses of seed nodes in unmanaged data centers. These will be added to the seed node lists of all managed nodes.
    HoursBetweenBackups int
    (Deprecated) Number of hours to wait between taking a backup of the cluster.
    InitialCassandraAdminPassword string
    Initial password for clients connecting as admin to the cluster. Should be changed after cluster creation. Returns null on GET. This field only applies when the authenticationMethod field is 'Cassandra'.
    NodeCount int
    Number of nodes
    NodeSku string
    Virtual Machine SKU used for clusters. Default value is Standard_DS14_v2
    PrometheusEndpoint SeedNode
    Hostname or IP address where the Prometheus endpoint containing data about the managed Cassandra nodes can be reached.
    ProvisionError CassandraError
    Error related to resource provisioning.
    ProvisioningState string | ManagedCassandraProvisioningState
    The status of the resource at the time the operation was called.
    RepairEnabled bool
    Should automatic repairs run on this cluster? If omitted, this is true, and should stay true unless you are running a hybrid cluster where you are already doing your own repairs.
    ReplicationFactor int
    Number of copies of data maintained by the cluster
    RestoreFromBackupId string
    To create an empty cluster, omit this field or set it to null. To restore a backup into a new cluster, set this field to the resource id of the backup.
    SubnetId string
    Resource id of a subnet that this cluster's management service should have its network interface attached to. The subnet must be routable to all subnets that will be delegated to data centers. The resource id must be of the form '/subscriptions//resourceGroups//providers/Microsoft.Network/virtualNetworks//subnets/'
    allocationState String | AllocationState
    Allocation state of the cluster and data center resources. Active implies the virtual machines of the cluster are allocated, deallocated implies virtual machines and resources are deallocated.
    authenticationMethod String | AuthenticationMethod
    Which authentication method Cassandra should use to authenticate clients. 'None' turns off authentication, so should not be used except in emergencies. 'Cassandra' is the default password based authentication. The default is 'Cassandra'.
    availabilityZone Boolean
    If the data center has Availability Zone support, apply it to the Virtual Machine ScaleSet that host the garnet cluster virtual machines.
    azureConnectionMethod String | AzureConnectionType
    How to connect to the azure services needed for running the cluster
    cassandraAuditLoggingEnabled Boolean
    Whether Cassandra audit logging is enabled
    cassandraVersion String
    Which version of Cassandra should this cluster converge to running (e.g., 3.11). When updated, the cluster may take some time to migrate to the new version.
    clientCertificates List<Certificate>
    List of TLS certificates used to authorize clients connecting to the cluster. All connections are TLS encrypted whether clientCertificates is set or not, but if clientCertificates is set, the managed Cassandra cluster will reject all connections not bearing a TLS client certificate that can be validated from one or more of the public certificates in this property.
    clusterNameOverride String
    If you need to set the clusterName property in cassandra.yaml to something besides the resource name of the cluster, set the value to use on this property.
    clusterType String | ClusterType
    Type of the cluster. If set to Production, some operations might not be permitted on cluster.
    deallocated Boolean
    Whether the cluster and associated data centers has been deallocated.
    delegatedManagementSubnetId String
    Resource id of a subnet that this cluster's management service should have its network interface attached to. The subnet must be routable to all subnets that will be delegated to data centers. The resource id must be of the form '/subscriptions//resourceGroups//providers/Microsoft.Network/virtualNetworks//subnets/'
    extensions List<String>
    Extensions to be added or updated on cluster.
    externalGossipCertificates List<Certificate>
    List of TLS certificates used to authorize gossip from unmanaged data centers. The TLS certificates of all nodes in unmanaged data centers must be verifiable using one of the certificates provided in this property.
    externalSeedNodes List<SeedNode>
    List of IP addresses of seed nodes in unmanaged data centers. These will be added to the seed node lists of all managed nodes.
    hoursBetweenBackups Integer
    (Deprecated) Number of hours to wait between taking a backup of the cluster.
    initialCassandraAdminPassword String
    Initial password for clients connecting as admin to the cluster. Should be changed after cluster creation. Returns null on GET. This field only applies when the authenticationMethod field is 'Cassandra'.
    nodeCount Integer
    Number of nodes
    nodeSku String
    Virtual Machine SKU used for clusters. Default value is Standard_DS14_v2
    prometheusEndpoint SeedNode
    Hostname or IP address where the Prometheus endpoint containing data about the managed Cassandra nodes can be reached.
    provisionError CassandraError
    Error related to resource provisioning.
    provisioningState String | ManagedCassandraProvisioningState
    The status of the resource at the time the operation was called.
    repairEnabled Boolean
    Should automatic repairs run on this cluster? If omitted, this is true, and should stay true unless you are running a hybrid cluster where you are already doing your own repairs.
    replicationFactor Integer
    Number of copies of data maintained by the cluster
    restoreFromBackupId String
    To create an empty cluster, omit this field or set it to null. To restore a backup into a new cluster, set this field to the resource id of the backup.
    subnetId String
    Resource id of a subnet that this cluster's management service should have its network interface attached to. The subnet must be routable to all subnets that will be delegated to data centers. The resource id must be of the form '/subscriptions//resourceGroups//providers/Microsoft.Network/virtualNetworks//subnets/'
    allocationState string | AllocationState
    Allocation state of the cluster and data center resources. Active implies the virtual machines of the cluster are allocated, deallocated implies virtual machines and resources are deallocated.
    authenticationMethod string | AuthenticationMethod
    Which authentication method Cassandra should use to authenticate clients. 'None' turns off authentication, so should not be used except in emergencies. 'Cassandra' is the default password based authentication. The default is 'Cassandra'.
    availabilityZone boolean
    If the data center has Availability Zone support, apply it to the Virtual Machine ScaleSet that host the garnet cluster virtual machines.
    azureConnectionMethod string | AzureConnectionType
    How to connect to the azure services needed for running the cluster
    cassandraAuditLoggingEnabled boolean
    Whether Cassandra audit logging is enabled
    cassandraVersion string
    Which version of Cassandra should this cluster converge to running (e.g., 3.11). When updated, the cluster may take some time to migrate to the new version.
    clientCertificates Certificate[]
    List of TLS certificates used to authorize clients connecting to the cluster. All connections are TLS encrypted whether clientCertificates is set or not, but if clientCertificates is set, the managed Cassandra cluster will reject all connections not bearing a TLS client certificate that can be validated from one or more of the public certificates in this property.
    clusterNameOverride string
    If you need to set the clusterName property in cassandra.yaml to something besides the resource name of the cluster, set the value to use on this property.
    clusterType string | ClusterType
    Type of the cluster. If set to Production, some operations might not be permitted on cluster.
    deallocated boolean
    Whether the cluster and associated data centers has been deallocated.
    delegatedManagementSubnetId string
    Resource id of a subnet that this cluster's management service should have its network interface attached to. The subnet must be routable to all subnets that will be delegated to data centers. The resource id must be of the form '/subscriptions//resourceGroups//providers/Microsoft.Network/virtualNetworks//subnets/'
    extensions string[]
    Extensions to be added or updated on cluster.
    externalGossipCertificates Certificate[]
    List of TLS certificates used to authorize gossip from unmanaged data centers. The TLS certificates of all nodes in unmanaged data centers must be verifiable using one of the certificates provided in this property.
    externalSeedNodes SeedNode[]
    List of IP addresses of seed nodes in unmanaged data centers. These will be added to the seed node lists of all managed nodes.
    hoursBetweenBackups number
    (Deprecated) Number of hours to wait between taking a backup of the cluster.
    initialCassandraAdminPassword string
    Initial password for clients connecting as admin to the cluster. Should be changed after cluster creation. Returns null on GET. This field only applies when the authenticationMethod field is 'Cassandra'.
    nodeCount number
    Number of nodes
    nodeSku string
    Virtual Machine SKU used for clusters. Default value is Standard_DS14_v2
    prometheusEndpoint SeedNode
    Hostname or IP address where the Prometheus endpoint containing data about the managed Cassandra nodes can be reached.
    provisionError CassandraError
    Error related to resource provisioning.
    provisioningState string | ManagedCassandraProvisioningState
    The status of the resource at the time the operation was called.
    repairEnabled boolean
    Should automatic repairs run on this cluster? If omitted, this is true, and should stay true unless you are running a hybrid cluster where you are already doing your own repairs.
    replicationFactor number
    Number of copies of data maintained by the cluster
    restoreFromBackupId string
    To create an empty cluster, omit this field or set it to null. To restore a backup into a new cluster, set this field to the resource id of the backup.
    subnetId string
    Resource id of a subnet that this cluster's management service should have its network interface attached to. The subnet must be routable to all subnets that will be delegated to data centers. The resource id must be of the form '/subscriptions//resourceGroups//providers/Microsoft.Network/virtualNetworks//subnets/'
    allocation_state str | AllocationState
    Allocation state of the cluster and data center resources. Active implies the virtual machines of the cluster are allocated, deallocated implies virtual machines and resources are deallocated.
    authentication_method str | AuthenticationMethod
    Which authentication method Cassandra should use to authenticate clients. 'None' turns off authentication, so should not be used except in emergencies. 'Cassandra' is the default password based authentication. The default is 'Cassandra'.
    availability_zone bool
    If the data center has Availability Zone support, apply it to the Virtual Machine ScaleSet that host the garnet cluster virtual machines.
    azure_connection_method str | AzureConnectionType
    How to connect to the azure services needed for running the cluster
    cassandra_audit_logging_enabled bool
    Whether Cassandra audit logging is enabled
    cassandra_version str
    Which version of Cassandra should this cluster converge to running (e.g., 3.11). When updated, the cluster may take some time to migrate to the new version.
    client_certificates Sequence[Certificate]
    List of TLS certificates used to authorize clients connecting to the cluster. All connections are TLS encrypted whether clientCertificates is set or not, but if clientCertificates is set, the managed Cassandra cluster will reject all connections not bearing a TLS client certificate that can be validated from one or more of the public certificates in this property.
    cluster_name_override str
    If you need to set the clusterName property in cassandra.yaml to something besides the resource name of the cluster, set the value to use on this property.
    cluster_type str | ClusterType
    Type of the cluster. If set to Production, some operations might not be permitted on cluster.
    deallocated bool
    Whether the cluster and associated data centers has been deallocated.
    delegated_management_subnet_id str
    Resource id of a subnet that this cluster's management service should have its network interface attached to. The subnet must be routable to all subnets that will be delegated to data centers. The resource id must be of the form '/subscriptions//resourceGroups//providers/Microsoft.Network/virtualNetworks//subnets/'
    extensions Sequence[str]
    Extensions to be added or updated on cluster.
    external_gossip_certificates Sequence[Certificate]
    List of TLS certificates used to authorize gossip from unmanaged data centers. The TLS certificates of all nodes in unmanaged data centers must be verifiable using one of the certificates provided in this property.
    external_seed_nodes Sequence[SeedNode]
    List of IP addresses of seed nodes in unmanaged data centers. These will be added to the seed node lists of all managed nodes.
    hours_between_backups int
    (Deprecated) Number of hours to wait between taking a backup of the cluster.
    initial_cassandra_admin_password str
    Initial password for clients connecting as admin to the cluster. Should be changed after cluster creation. Returns null on GET. This field only applies when the authenticationMethod field is 'Cassandra'.
    node_count int
    Number of nodes
    node_sku str
    Virtual Machine SKU used for clusters. Default value is Standard_DS14_v2
    prometheus_endpoint SeedNode
    Hostname or IP address where the Prometheus endpoint containing data about the managed Cassandra nodes can be reached.
    provision_error CassandraError
    Error related to resource provisioning.
    provisioning_state str | ManagedCassandraProvisioningState
    The status of the resource at the time the operation was called.
    repair_enabled bool
    Should automatic repairs run on this cluster? If omitted, this is true, and should stay true unless you are running a hybrid cluster where you are already doing your own repairs.
    replication_factor int
    Number of copies of data maintained by the cluster
    restore_from_backup_id str
    To create an empty cluster, omit this field or set it to null. To restore a backup into a new cluster, set this field to the resource id of the backup.
    subnet_id str
    Resource id of a subnet that this cluster's management service should have its network interface attached to. The subnet must be routable to all subnets that will be delegated to data centers. The resource id must be of the form '/subscriptions//resourceGroups//providers/Microsoft.Network/virtualNetworks//subnets/'
    allocationState String | "Active" | "Deallocated"
    Allocation state of the cluster and data center resources. Active implies the virtual machines of the cluster are allocated, deallocated implies virtual machines and resources are deallocated.
    authenticationMethod String | "None" | "Cassandra" | "Ldap"
    Which authentication method Cassandra should use to authenticate clients. 'None' turns off authentication, so should not be used except in emergencies. 'Cassandra' is the default password based authentication. The default is 'Cassandra'.
    availabilityZone Boolean
    If the data center has Availability Zone support, apply it to the Virtual Machine ScaleSet that host the garnet cluster virtual machines.
    azureConnectionMethod String | "None" | "VPN"
    How to connect to the azure services needed for running the cluster
    cassandraAuditLoggingEnabled Boolean
    Whether Cassandra audit logging is enabled
    cassandraVersion String
    Which version of Cassandra should this cluster converge to running (e.g., 3.11). When updated, the cluster may take some time to migrate to the new version.
    clientCertificates List<Property Map>
    List of TLS certificates used to authorize clients connecting to the cluster. All connections are TLS encrypted whether clientCertificates is set or not, but if clientCertificates is set, the managed Cassandra cluster will reject all connections not bearing a TLS client certificate that can be validated from one or more of the public certificates in this property.
    clusterNameOverride String
    If you need to set the clusterName property in cassandra.yaml to something besides the resource name of the cluster, set the value to use on this property.
    clusterType String | "Production" | "NonProduction"
    Type of the cluster. If set to Production, some operations might not be permitted on cluster.
    deallocated Boolean
    Whether the cluster and associated data centers has been deallocated.
    delegatedManagementSubnetId String
    Resource id of a subnet that this cluster's management service should have its network interface attached to. The subnet must be routable to all subnets that will be delegated to data centers. The resource id must be of the form '/subscriptions//resourceGroups//providers/Microsoft.Network/virtualNetworks//subnets/'
    extensions List<String>
    Extensions to be added or updated on cluster.
    externalGossipCertificates List<Property Map>
    List of TLS certificates used to authorize gossip from unmanaged data centers. The TLS certificates of all nodes in unmanaged data centers must be verifiable using one of the certificates provided in this property.
    externalSeedNodes List<Property Map>
    List of IP addresses of seed nodes in unmanaged data centers. These will be added to the seed node lists of all managed nodes.
    hoursBetweenBackups Number
    (Deprecated) Number of hours to wait between taking a backup of the cluster.
    initialCassandraAdminPassword String
    Initial password for clients connecting as admin to the cluster. Should be changed after cluster creation. Returns null on GET. This field only applies when the authenticationMethod field is 'Cassandra'.
    nodeCount Number
    Number of nodes
    nodeSku String
    Virtual Machine SKU used for clusters. Default value is Standard_DS14_v2
    prometheusEndpoint Property Map
    Hostname or IP address where the Prometheus endpoint containing data about the managed Cassandra nodes can be reached.
    provisionError Property Map
    Error related to resource provisioning.
    provisioningState String | "Creating" | "Updating" | "Deleting" | "Succeeded" | "Failed" | "Canceled"
    The status of the resource at the time the operation was called.
    repairEnabled Boolean
    Should automatic repairs run on this cluster? If omitted, this is true, and should stay true unless you are running a hybrid cluster where you are already doing your own repairs.
    replicationFactor Number
    Number of copies of data maintained by the cluster
    restoreFromBackupId String
    To create an empty cluster, omit this field or set it to null. To restore a backup into a new cluster, set this field to the resource id of the backup.
    subnetId String
    Resource id of a subnet that this cluster's management service should have its network interface attached to. The subnet must be routable to all subnets that will be delegated to data centers. The resource id must be of the form '/subscriptions//resourceGroups//providers/Microsoft.Network/virtualNetworks//subnets/'

    ClusterResourceResponseEndPoints, ClusterResourceResponseEndPointsArgs

    IpAddress string
    Ipv4 address of the endpoint
    Port int
    Port number
    IpAddress string
    Ipv4 address of the endpoint
    Port int
    Port number
    ipAddress String
    Ipv4 address of the endpoint
    port Integer
    Port number
    ipAddress string
    Ipv4 address of the endpoint
    port number
    Port number
    ip_address str
    Ipv4 address of the endpoint
    port int
    Port number
    ipAddress String
    Ipv4 address of the endpoint
    port Number
    Port number

    ClusterResourceResponsePropertiesV1, ClusterResourceResponsePropertiesV1Args

    Properties of a Garnet cache cluster.
    EndPoints List<Pulumi.AzureNative.CosmosDB.Inputs.ClusterResourceResponseEndPoints>
    endpoints for clients to connect to the cluster.
    ProvisioningState string
    The status of the resource at the time the operation was called.
    AllocationState string
    Allocation state of the cluster and data center resources. Active implies the virtual machines of the cluster are allocated, deallocated implies virtual machines and resources are deallocated.
    AvailabilityZone bool
    If the data center has Availability Zone support, apply it to the Virtual Machine ScaleSet that host the garnet cluster virtual machines.
    ClusterType string
    Type of the cluster. If set to Production, some operations might not be permitted on cluster.
    Extensions List<string>
    Extensions to be added or updated on cluster.
    NodeCount int
    Number of nodes
    NodeSku string
    Virtual Machine SKU used for clusters. Default value is Standard_DS14_v2
    ProvisionError Pulumi.AzureNative.CosmosDB.Inputs.ErrorDetailResponse
    Error related to resource provisioning.
    ReplicationFactor int
    Number of copies of data maintained by the cluster
    SubnetId string
    Resource id of a subnet that this cluster's management service should have its network interface attached to. The subnet must be routable to all subnets that will be delegated to data centers. The resource id must be of the form '/subscriptions//resourceGroups//providers/Microsoft.Network/virtualNetworks//subnets/'
    EndPoints []ClusterResourceResponseEndPoints
    endpoints for clients to connect to the cluster.
    ProvisioningState string
    The status of the resource at the time the operation was called.
    AllocationState string
    Allocation state of the cluster and data center resources. Active implies the virtual machines of the cluster are allocated, deallocated implies virtual machines and resources are deallocated.
    AvailabilityZone bool
    If the data center has Availability Zone support, apply it to the Virtual Machine ScaleSet that host the garnet cluster virtual machines.
    ClusterType string
    Type of the cluster. If set to Production, some operations might not be permitted on cluster.
    Extensions []string
    Extensions to be added or updated on cluster.
    NodeCount int
    Number of nodes
    NodeSku string
    Virtual Machine SKU used for clusters. Default value is Standard_DS14_v2
    ProvisionError ErrorDetailResponse
    Error related to resource provisioning.
    ReplicationFactor int
    Number of copies of data maintained by the cluster
    SubnetId string
    Resource id of a subnet that this cluster's management service should have its network interface attached to. The subnet must be routable to all subnets that will be delegated to data centers. The resource id must be of the form '/subscriptions//resourceGroups//providers/Microsoft.Network/virtualNetworks//subnets/'
    endPoints List<ClusterResourceResponseEndPoints>
    endpoints for clients to connect to the cluster.
    provisioningState String
    The status of the resource at the time the operation was called.
    allocationState String
    Allocation state of the cluster and data center resources. Active implies the virtual machines of the cluster are allocated, deallocated implies virtual machines and resources are deallocated.
    availabilityZone Boolean
    If the data center has Availability Zone support, apply it to the Virtual Machine ScaleSet that host the garnet cluster virtual machines.
    clusterType String
    Type of the cluster. If set to Production, some operations might not be permitted on cluster.
    extensions List<String>
    Extensions to be added or updated on cluster.
    nodeCount Integer
    Number of nodes
    nodeSku String
    Virtual Machine SKU used for clusters. Default value is Standard_DS14_v2
    provisionError ErrorDetailResponse
    Error related to resource provisioning.
    replicationFactor Integer
    Number of copies of data maintained by the cluster
    subnetId String
    Resource id of a subnet that this cluster's management service should have its network interface attached to. The subnet must be routable to all subnets that will be delegated to data centers. The resource id must be of the form '/subscriptions//resourceGroups//providers/Microsoft.Network/virtualNetworks//subnets/'
    endPoints ClusterResourceResponseEndPoints[]
    endpoints for clients to connect to the cluster.
    provisioningState string
    The status of the resource at the time the operation was called.
    allocationState string
    Allocation state of the cluster and data center resources. Active implies the virtual machines of the cluster are allocated, deallocated implies virtual machines and resources are deallocated.
    availabilityZone boolean
    If the data center has Availability Zone support, apply it to the Virtual Machine ScaleSet that host the garnet cluster virtual machines.
    clusterType string
    Type of the cluster. If set to Production, some operations might not be permitted on cluster.
    extensions string[]
    Extensions to be added or updated on cluster.
    nodeCount number
    Number of nodes
    nodeSku string
    Virtual Machine SKU used for clusters. Default value is Standard_DS14_v2
    provisionError ErrorDetailResponse
    Error related to resource provisioning.
    replicationFactor number
    Number of copies of data maintained by the cluster
    subnetId string
    Resource id of a subnet that this cluster's management service should have its network interface attached to. The subnet must be routable to all subnets that will be delegated to data centers. The resource id must be of the form '/subscriptions//resourceGroups//providers/Microsoft.Network/virtualNetworks//subnets/'
    end_points Sequence[ClusterResourceResponseEndPoints]
    endpoints for clients to connect to the cluster.
    provisioning_state str
    The status of the resource at the time the operation was called.
    allocation_state str
    Allocation state of the cluster and data center resources. Active implies the virtual machines of the cluster are allocated, deallocated implies virtual machines and resources are deallocated.
    availability_zone bool
    If the data center has Availability Zone support, apply it to the Virtual Machine ScaleSet that host the garnet cluster virtual machines.
    cluster_type str
    Type of the cluster. If set to Production, some operations might not be permitted on cluster.
    extensions Sequence[str]
    Extensions to be added or updated on cluster.
    node_count int
    Number of nodes
    node_sku str
    Virtual Machine SKU used for clusters. Default value is Standard_DS14_v2
    provision_error ErrorDetailResponse
    Error related to resource provisioning.
    replication_factor int
    Number of copies of data maintained by the cluster
    subnet_id str
    Resource id of a subnet that this cluster's management service should have its network interface attached to. The subnet must be routable to all subnets that will be delegated to data centers. The resource id must be of the form '/subscriptions//resourceGroups//providers/Microsoft.Network/virtualNetworks//subnets/'
    endPoints List<Property Map>
    endpoints for clients to connect to the cluster.
    provisioningState String
    The status of the resource at the time the operation was called.
    allocationState String
    Allocation state of the cluster and data center resources. Active implies the virtual machines of the cluster are allocated, deallocated implies virtual machines and resources are deallocated.
    availabilityZone Boolean
    If the data center has Availability Zone support, apply it to the Virtual Machine ScaleSet that host the garnet cluster virtual machines.
    clusterType String
    Type of the cluster. If set to Production, some operations might not be permitted on cluster.
    extensions List<String>
    Extensions to be added or updated on cluster.
    nodeCount Number
    Number of nodes
    nodeSku String
    Virtual Machine SKU used for clusters. Default value is Standard_DS14_v2
    provisionError Property Map
    Error related to resource provisioning.
    replicationFactor Number
    Number of copies of data maintained by the cluster
    subnetId String
    Resource id of a subnet that this cluster's management service should have its network interface attached to. The subnet must be routable to all subnets that will be delegated to data centers. The resource id must be of the form '/subscriptions//resourceGroups//providers/Microsoft.Network/virtualNetworks//subnets/'

    ClusterType, ClusterTypeArgs

    Production
    Production
    NonProduction
    NonProduction
    ClusterTypeProduction
    Production
    ClusterTypeNonProduction
    NonProduction
    Production
    Production
    NonProduction
    NonProduction
    Production
    Production
    NonProduction
    NonProduction
    PRODUCTION
    Production
    NON_PRODUCTION
    NonProduction
    "Production"
    Production
    "NonProduction"
    NonProduction

    ErrorAdditionalInfoResponse, ErrorAdditionalInfoResponseArgs

    The resource management error additional info.
    Info object
    The additional info.
    Type string
    The additional info type.
    Info interface{}
    The additional info.
    Type string
    The additional info type.
    info Object
    The additional info.
    type String
    The additional info type.
    info any
    The additional info.
    type string
    The additional info type.
    info Any
    The additional info.
    type str
    The additional info type.
    info Any
    The additional info.
    type String
    The additional info type.

    ErrorDetailResponse, ErrorDetailResponseArgs

    The error detail.
    AdditionalInfo List<Pulumi.AzureNative.CosmosDB.Inputs.ErrorAdditionalInfoResponse>
    The error additional info.
    Code string
    The error code.
    Details List<Pulumi.AzureNative.CosmosDB.Inputs.ErrorDetailResponse>
    The error details.
    Message string
    The error message.
    Target string
    The error target.
    AdditionalInfo []ErrorAdditionalInfoResponse
    The error additional info.
    Code string
    The error code.
    Details []ErrorDetailResponse
    The error details.
    Message string
    The error message.
    Target string
    The error target.
    additionalInfo List<ErrorAdditionalInfoResponse>
    The error additional info.
    code String
    The error code.
    details List<ErrorDetailResponse>
    The error details.
    message String
    The error message.
    target String
    The error target.
    additionalInfo ErrorAdditionalInfoResponse[]
    The error additional info.
    code string
    The error code.
    details ErrorDetailResponse[]
    The error details.
    message string
    The error message.
    target string
    The error target.
    additional_info Sequence[ErrorAdditionalInfoResponse]
    The error additional info.
    code str
    The error code.
    details Sequence[ErrorDetailResponse]
    The error details.
    message str
    The error message.
    target str
    The error target.
    additionalInfo List<Property Map>
    The error additional info.
    code String
    The error code.
    details List<Property Map>
    The error details.
    message String
    The error message.
    target String
    The error target.

    ManagedCassandraProvisioningState, ManagedCassandraProvisioningStateArgs

    Creating
    Creating
    Updating
    Updating
    Deleting
    Deleting
    Succeeded
    Succeeded
    Failed
    Failed
    Canceled
    Canceled
    ManagedCassandraProvisioningStateCreating
    Creating
    ManagedCassandraProvisioningStateUpdating
    Updating
    ManagedCassandraProvisioningStateDeleting
    Deleting
    ManagedCassandraProvisioningStateSucceeded
    Succeeded
    ManagedCassandraProvisioningStateFailed
    Failed
    ManagedCassandraProvisioningStateCanceled
    Canceled
    Creating
    Creating
    Updating
    Updating
    Deleting
    Deleting
    Succeeded
    Succeeded
    Failed
    Failed
    Canceled
    Canceled
    Creating
    Creating
    Updating
    Updating
    Deleting
    Deleting
    Succeeded
    Succeeded
    Failed
    Failed
    Canceled
    Canceled
    CREATING
    Creating
    UPDATING
    Updating
    DELETING
    Deleting
    SUCCEEDED
    Succeeded
    FAILED
    Failed
    CANCELED
    Canceled
    "Creating"
    Creating
    "Updating"
    Updating
    "Deleting"
    Deleting
    "Succeeded"
    Succeeded
    "Failed"
    Failed
    "Canceled"
    Canceled

    SeedNode, SeedNodeArgs

    IpAddress string
    IP address of this seed node.
    IpAddress string
    IP address of this seed node.
    ipAddress String
    IP address of this seed node.
    ipAddress string
    IP address of this seed node.
    ip_address str
    IP address of this seed node.
    ipAddress String
    IP address of this seed node.

    SystemDataResponse, SystemDataResponseArgs

    Metadata pertaining to creation and last modification of the resource.
    CreatedAt string
    The timestamp of resource creation (UTC).
    CreatedBy string
    The identity that created the resource.
    CreatedByType string
    The type of identity that created the resource.
    LastModifiedAt string
    The timestamp of resource last modification (UTC)
    LastModifiedBy string
    The identity that last modified the resource.
    LastModifiedByType string
    The type of identity that last modified the resource.
    CreatedAt string
    The timestamp of resource creation (UTC).
    CreatedBy string
    The identity that created the resource.
    CreatedByType string
    The type of identity that created the resource.
    LastModifiedAt string
    The timestamp of resource last modification (UTC)
    LastModifiedBy string
    The identity that last modified the resource.
    LastModifiedByType string
    The type of identity that last modified the resource.
    createdAt String
    The timestamp of resource creation (UTC).
    createdBy String
    The identity that created the resource.
    createdByType String
    The type of identity that created the resource.
    lastModifiedAt String
    The timestamp of resource last modification (UTC)
    lastModifiedBy String
    The identity that last modified the resource.
    lastModifiedByType String
    The type of identity that last modified the resource.
    createdAt string
    The timestamp of resource creation (UTC).
    createdBy string
    The identity that created the resource.
    createdByType string
    The type of identity that created the resource.
    lastModifiedAt string
    The timestamp of resource last modification (UTC)
    lastModifiedBy string
    The identity that last modified the resource.
    lastModifiedByType string
    The type of identity that last modified the resource.
    created_at str
    The timestamp of resource creation (UTC).
    created_by str
    The identity that created the resource.
    created_by_type str
    The type of identity that created the resource.
    last_modified_at str
    The timestamp of resource last modification (UTC)
    last_modified_by str
    The identity that last modified the resource.
    last_modified_by_type str
    The type of identity that last modified the resource.
    createdAt String
    The timestamp of resource creation (UTC).
    createdBy String
    The identity that created the resource.
    createdByType String
    The type of identity that created the resource.
    lastModifiedAt String
    The timestamp of resource last modification (UTC)
    lastModifiedBy String
    The identity that last modified the resource.
    lastModifiedByType String
    The type of identity that last modified the resource.

    Import

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

    $ pulumi import azure-native:cosmosdb:GarnetCluster garnet-prod /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DocumentDB/garnetClusters/{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 v2 docs if using the v2 version of this package.
    Azure Native v3.13.0 published on Wednesday, Jan 28, 2026 by Pulumi
      Meet Neo: Your AI Platform Teammate