1. Packages
  2. Azure Classic
  3. API Docs
  4. cosmosdb
  5. CassandraDatacenter

We recommend using Azure Native.

Viewing docs for Azure v4.42.0 (Older version)
published on Monday, Mar 9, 2026 by Pulumi
azure logo

We recommend using Azure Native.

Viewing docs for Azure v4.42.0 (Older version)
published on Monday, Mar 9, 2026 by Pulumi

    Manages a Cassandra Datacenter.

    Example Usage

    using Pulumi;
    using Azure = Pulumi.Azure;
    
    class MyStack : Stack
    {
        public MyStack()
        {
            var exampleResourceGroup = new Azure.Core.ResourceGroup("exampleResourceGroup", new Azure.Core.ResourceGroupArgs
            {
                Location = "West Europe",
            });
            var exampleVirtualNetwork = new Azure.Network.VirtualNetwork("exampleVirtualNetwork", new Azure.Network.VirtualNetworkArgs
            {
                Location = exampleResourceGroup.Location,
                ResourceGroupName = exampleResourceGroup.Name,
                AddressSpaces = 
                {
                    "10.0.0.0/16",
                },
            });
            var exampleSubnet = new Azure.Network.Subnet("exampleSubnet", new Azure.Network.SubnetArgs
            {
                ResourceGroupName = exampleResourceGroup.Name,
                VirtualNetworkName = exampleVirtualNetwork.Name,
                AddressPrefixes = 
                {
                    "10.0.1.0/24",
                },
            });
            var exampleAssignment = new Azure.Authorization.Assignment("exampleAssignment", new Azure.Authorization.AssignmentArgs
            {
                Scope = exampleVirtualNetwork.Id,
                RoleDefinitionName = "Network Contributor",
                PrincipalId = "e5007d2c-4b13-4a74-9b6a-605d99f03501",
            });
            var exampleCassandraCluster = new Azure.CosmosDB.CassandraCluster("exampleCassandraCluster", new Azure.CosmosDB.CassandraClusterArgs
            {
                ResourceGroupName = exampleResourceGroup.Name,
                Location = exampleResourceGroup.Location,
                DelegatedManagementSubnetId = exampleSubnet.Id,
                DefaultAdminPassword = "Password1234",
            });
            var exampleCassandraDatacenter = new Azure.CosmosDB.CassandraDatacenter("exampleCassandraDatacenter", new Azure.CosmosDB.CassandraDatacenterArgs
            {
                Location = exampleCassandraCluster.Location,
                CassandraClusterId = exampleCassandraCluster.Id,
                DelegatedManagementSubnetId = exampleSubnet.Id,
                NodeCount = 3,
                DiskCount = 4,
                SkuName = "Standard_DS14_v2",
                AvailabilityZonesEnabled = false,
            });
        }
    
    }
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-azure/sdk/v4/go/azure/authorization"
    	"github.com/pulumi/pulumi-azure/sdk/v4/go/azure/core"
    	"github.com/pulumi/pulumi-azure/sdk/v4/go/azure/cosmosdb"
    	"github.com/pulumi/pulumi-azure/sdk/v4/go/azure/network"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		exampleResourceGroup, err := core.NewResourceGroup(ctx, "exampleResourceGroup", &core.ResourceGroupArgs{
    			Location: pulumi.String("West Europe"),
    		})
    		if err != nil {
    			return err
    		}
    		exampleVirtualNetwork, err := network.NewVirtualNetwork(ctx, "exampleVirtualNetwork", &network.VirtualNetworkArgs{
    			Location:          exampleResourceGroup.Location,
    			ResourceGroupName: exampleResourceGroup.Name,
    			AddressSpaces: pulumi.StringArray{
    				pulumi.String("10.0.0.0/16"),
    			},
    		})
    		if err != nil {
    			return err
    		}
    		exampleSubnet, err := network.NewSubnet(ctx, "exampleSubnet", &network.SubnetArgs{
    			ResourceGroupName:  exampleResourceGroup.Name,
    			VirtualNetworkName: exampleVirtualNetwork.Name,
    			AddressPrefixes: pulumi.StringArray{
    				pulumi.String("10.0.1.0/24"),
    			},
    		})
    		if err != nil {
    			return err
    		}
    		_, err = authorization.NewAssignment(ctx, "exampleAssignment", &authorization.AssignmentArgs{
    			Scope:              exampleVirtualNetwork.ID(),
    			RoleDefinitionName: pulumi.String("Network Contributor"),
    			PrincipalId:        pulumi.String("e5007d2c-4b13-4a74-9b6a-605d99f03501"),
    		})
    		if err != nil {
    			return err
    		}
    		exampleCassandraCluster, err := cosmosdb.NewCassandraCluster(ctx, "exampleCassandraCluster", &cosmosdb.CassandraClusterArgs{
    			ResourceGroupName:           exampleResourceGroup.Name,
    			Location:                    exampleResourceGroup.Location,
    			DelegatedManagementSubnetId: exampleSubnet.ID(),
    			DefaultAdminPassword:        pulumi.String("Password1234"),
    		})
    		if err != nil {
    			return err
    		}
    		_, err = cosmosdb.NewCassandraDatacenter(ctx, "exampleCassandraDatacenter", &cosmosdb.CassandraDatacenterArgs{
    			Location:                    exampleCassandraCluster.Location,
    			CassandraClusterId:          exampleCassandraCluster.ID(),
    			DelegatedManagementSubnetId: exampleSubnet.ID(),
    			NodeCount:                   pulumi.Int(3),
    			DiskCount:                   pulumi.Int(4),
    			SkuName:                     pulumi.String("Standard_DS14_v2"),
    			AvailabilityZonesEnabled:    pulumi.Bool(false),
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    

    Example coming soon!

    import * as pulumi from "@pulumi/pulumi";
    import * as azure from "@pulumi/azure";
    
    const exampleResourceGroup = new azure.core.ResourceGroup("exampleResourceGroup", {location: "West Europe"});
    const exampleVirtualNetwork = new azure.network.VirtualNetwork("exampleVirtualNetwork", {
        location: exampleResourceGroup.location,
        resourceGroupName: exampleResourceGroup.name,
        addressSpaces: ["10.0.0.0/16"],
    });
    const exampleSubnet = new azure.network.Subnet("exampleSubnet", {
        resourceGroupName: exampleResourceGroup.name,
        virtualNetworkName: exampleVirtualNetwork.name,
        addressPrefixes: ["10.0.1.0/24"],
    });
    const exampleAssignment = new azure.authorization.Assignment("exampleAssignment", {
        scope: exampleVirtualNetwork.id,
        roleDefinitionName: "Network Contributor",
        principalId: "e5007d2c-4b13-4a74-9b6a-605d99f03501",
    });
    const exampleCassandraCluster = new azure.cosmosdb.CassandraCluster("exampleCassandraCluster", {
        resourceGroupName: exampleResourceGroup.name,
        location: exampleResourceGroup.location,
        delegatedManagementSubnetId: exampleSubnet.id,
        defaultAdminPassword: "Password1234",
    });
    const exampleCassandraDatacenter = new azure.cosmosdb.CassandraDatacenter("exampleCassandraDatacenter", {
        location: exampleCassandraCluster.location,
        cassandraClusterId: exampleCassandraCluster.id,
        delegatedManagementSubnetId: exampleSubnet.id,
        nodeCount: 3,
        diskCount: 4,
        skuName: "Standard_DS14_v2",
        availabilityZonesEnabled: false,
    });
    
    import pulumi
    import pulumi_azure as azure
    
    example_resource_group = azure.core.ResourceGroup("exampleResourceGroup", location="West Europe")
    example_virtual_network = azure.network.VirtualNetwork("exampleVirtualNetwork",
        location=example_resource_group.location,
        resource_group_name=example_resource_group.name,
        address_spaces=["10.0.0.0/16"])
    example_subnet = azure.network.Subnet("exampleSubnet",
        resource_group_name=example_resource_group.name,
        virtual_network_name=example_virtual_network.name,
        address_prefixes=["10.0.1.0/24"])
    example_assignment = azure.authorization.Assignment("exampleAssignment",
        scope=example_virtual_network.id,
        role_definition_name="Network Contributor",
        principal_id="e5007d2c-4b13-4a74-9b6a-605d99f03501")
    example_cassandra_cluster = azure.cosmosdb.CassandraCluster("exampleCassandraCluster",
        resource_group_name=example_resource_group.name,
        location=example_resource_group.location,
        delegated_management_subnet_id=example_subnet.id,
        default_admin_password="Password1234")
    example_cassandra_datacenter = azure.cosmosdb.CassandraDatacenter("exampleCassandraDatacenter",
        location=example_cassandra_cluster.location,
        cassandra_cluster_id=example_cassandra_cluster.id,
        delegated_management_subnet_id=example_subnet.id,
        node_count=3,
        disk_count=4,
        sku_name="Standard_DS14_v2",
        availability_zones_enabled=False)
    

    Example coming soon!

    Create CassandraDatacenter Resource

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

    Constructor syntax

    new CassandraDatacenter(name: string, args: CassandraDatacenterArgs, opts?: CustomResourceOptions);
    @overload
    def CassandraDatacenter(resource_name: str,
                            args: CassandraDatacenterArgs,
                            opts: Optional[ResourceOptions] = None)
    
    @overload
    def CassandraDatacenter(resource_name: str,
                            opts: Optional[ResourceOptions] = None,
                            cassandra_cluster_id: Optional[str] = None,
                            delegated_management_subnet_id: Optional[str] = None,
                            availability_zones_enabled: Optional[bool] = None,
                            disk_count: Optional[int] = None,
                            location: Optional[str] = None,
                            name: Optional[str] = None,
                            node_count: Optional[int] = None,
                            sku_name: Optional[str] = None)
    func NewCassandraDatacenter(ctx *Context, name string, args CassandraDatacenterArgs, opts ...ResourceOption) (*CassandraDatacenter, error)
    public CassandraDatacenter(string name, CassandraDatacenterArgs args, CustomResourceOptions? opts = null)
    public CassandraDatacenter(String name, CassandraDatacenterArgs args)
    public CassandraDatacenter(String name, CassandraDatacenterArgs args, CustomResourceOptions options)
    
    type: azure:cosmosdb:CassandraDatacenter
    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 CassandraDatacenterArgs
    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 CassandraDatacenterArgs
    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 CassandraDatacenterArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args CassandraDatacenterArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args CassandraDatacenterArgs
    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 cassandraDatacenterResource = new Azure.CosmosDB.CassandraDatacenter("cassandraDatacenterResource", new()
    {
        CassandraClusterId = "string",
        DelegatedManagementSubnetId = "string",
        AvailabilityZonesEnabled = false,
        DiskCount = 0,
        Location = "string",
        Name = "string",
        NodeCount = 0,
        SkuName = "string",
    });
    
    example, err := cosmosdb.NewCassandraDatacenter(ctx, "cassandraDatacenterResource", &cosmosdb.CassandraDatacenterArgs{
    	CassandraClusterId:          pulumi.String("string"),
    	DelegatedManagementSubnetId: pulumi.String("string"),
    	AvailabilityZonesEnabled:    pulumi.Bool(false),
    	DiskCount:                   pulumi.Int(0),
    	Location:                    pulumi.String("string"),
    	Name:                        pulumi.String("string"),
    	NodeCount:                   pulumi.Int(0),
    	SkuName:                     pulumi.String("string"),
    })
    
    var cassandraDatacenterResource = new CassandraDatacenter("cassandraDatacenterResource", CassandraDatacenterArgs.builder()
        .cassandraClusterId("string")
        .delegatedManagementSubnetId("string")
        .availabilityZonesEnabled(false)
        .diskCount(0)
        .location("string")
        .name("string")
        .nodeCount(0)
        .skuName("string")
        .build());
    
    cassandra_datacenter_resource = azure.cosmosdb.CassandraDatacenter("cassandraDatacenterResource",
        cassandra_cluster_id="string",
        delegated_management_subnet_id="string",
        availability_zones_enabled=False,
        disk_count=0,
        location="string",
        name="string",
        node_count=0,
        sku_name="string")
    
    const cassandraDatacenterResource = new azure.cosmosdb.CassandraDatacenter("cassandraDatacenterResource", {
        cassandraClusterId: "string",
        delegatedManagementSubnetId: "string",
        availabilityZonesEnabled: false,
        diskCount: 0,
        location: "string",
        name: "string",
        nodeCount: 0,
        skuName: "string",
    });
    
    type: azure:cosmosdb:CassandraDatacenter
    properties:
        availabilityZonesEnabled: false
        cassandraClusterId: string
        delegatedManagementSubnetId: string
        diskCount: 0
        location: string
        name: string
        nodeCount: 0
        skuName: string
    

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

    CassandraClusterId string
    The ID of the Cassandra Cluster. Changing this forces a new Cassandra Datacenter to be created.
    DelegatedManagementSubnetId string
    The ID of the delegated management subnet for this Cassandra Datacenter. Changing this forces a new Cassandra Datacenter to be created.
    AvailabilityZonesEnabled bool
    Determines whether availability zones are enabled. Defaults to true.
    DiskCount int
    Determines the number of p30 disks that are attached to each node. Defaults to 4.
    Location string
    The Azure Region where the Cassandra Datacenter should exist. Changing this forces a new Cassandra Datacenter to be created.
    Name string
    The name which should be used for this Cassandra Datacenter. Changing this forces a new Cassandra Datacenter to be created.
    NodeCount int
    The number of nodes the Cassandra Datacenter should have. The number should be equal or greater than 3. Defaults to 3.
    SkuName string
    Determines the selected sku. Defaults to Standard_DS14_v2.
    CassandraClusterId string
    The ID of the Cassandra Cluster. Changing this forces a new Cassandra Datacenter to be created.
    DelegatedManagementSubnetId string
    The ID of the delegated management subnet for this Cassandra Datacenter. Changing this forces a new Cassandra Datacenter to be created.
    AvailabilityZonesEnabled bool
    Determines whether availability zones are enabled. Defaults to true.
    DiskCount int
    Determines the number of p30 disks that are attached to each node. Defaults to 4.
    Location string
    The Azure Region where the Cassandra Datacenter should exist. Changing this forces a new Cassandra Datacenter to be created.
    Name string
    The name which should be used for this Cassandra Datacenter. Changing this forces a new Cassandra Datacenter to be created.
    NodeCount int
    The number of nodes the Cassandra Datacenter should have. The number should be equal or greater than 3. Defaults to 3.
    SkuName string
    Determines the selected sku. Defaults to Standard_DS14_v2.
    cassandraClusterId String
    The ID of the Cassandra Cluster. Changing this forces a new Cassandra Datacenter to be created.
    delegatedManagementSubnetId String
    The ID of the delegated management subnet for this Cassandra Datacenter. Changing this forces a new Cassandra Datacenter to be created.
    availabilityZonesEnabled Boolean
    Determines whether availability zones are enabled. Defaults to true.
    diskCount Integer
    Determines the number of p30 disks that are attached to each node. Defaults to 4.
    location String
    The Azure Region where the Cassandra Datacenter should exist. Changing this forces a new Cassandra Datacenter to be created.
    name String
    The name which should be used for this Cassandra Datacenter. Changing this forces a new Cassandra Datacenter to be created.
    nodeCount Integer
    The number of nodes the Cassandra Datacenter should have. The number should be equal or greater than 3. Defaults to 3.
    skuName String
    Determines the selected sku. Defaults to Standard_DS14_v2.
    cassandraClusterId string
    The ID of the Cassandra Cluster. Changing this forces a new Cassandra Datacenter to be created.
    delegatedManagementSubnetId string
    The ID of the delegated management subnet for this Cassandra Datacenter. Changing this forces a new Cassandra Datacenter to be created.
    availabilityZonesEnabled boolean
    Determines whether availability zones are enabled. Defaults to true.
    diskCount number
    Determines the number of p30 disks that are attached to each node. Defaults to 4.
    location string
    The Azure Region where the Cassandra Datacenter should exist. Changing this forces a new Cassandra Datacenter to be created.
    name string
    The name which should be used for this Cassandra Datacenter. Changing this forces a new Cassandra Datacenter to be created.
    nodeCount number
    The number of nodes the Cassandra Datacenter should have. The number should be equal or greater than 3. Defaults to 3.
    skuName string
    Determines the selected sku. Defaults to Standard_DS14_v2.
    cassandra_cluster_id str
    The ID of the Cassandra Cluster. Changing this forces a new Cassandra Datacenter to be created.
    delegated_management_subnet_id str
    The ID of the delegated management subnet for this Cassandra Datacenter. Changing this forces a new Cassandra Datacenter to be created.
    availability_zones_enabled bool
    Determines whether availability zones are enabled. Defaults to true.
    disk_count int
    Determines the number of p30 disks that are attached to each node. Defaults to 4.
    location str
    The Azure Region where the Cassandra Datacenter should exist. Changing this forces a new Cassandra Datacenter to be created.
    name str
    The name which should be used for this Cassandra Datacenter. Changing this forces a new Cassandra Datacenter to be created.
    node_count int
    The number of nodes the Cassandra Datacenter should have. The number should be equal or greater than 3. Defaults to 3.
    sku_name str
    Determines the selected sku. Defaults to Standard_DS14_v2.
    cassandraClusterId String
    The ID of the Cassandra Cluster. Changing this forces a new Cassandra Datacenter to be created.
    delegatedManagementSubnetId String
    The ID of the delegated management subnet for this Cassandra Datacenter. Changing this forces a new Cassandra Datacenter to be created.
    availabilityZonesEnabled Boolean
    Determines whether availability zones are enabled. Defaults to true.
    diskCount Number
    Determines the number of p30 disks that are attached to each node. Defaults to 4.
    location String
    The Azure Region where the Cassandra Datacenter should exist. Changing this forces a new Cassandra Datacenter to be created.
    name String
    The name which should be used for this Cassandra Datacenter. Changing this forces a new Cassandra Datacenter to be created.
    nodeCount Number
    The number of nodes the Cassandra Datacenter should have. The number should be equal or greater than 3. Defaults to 3.
    skuName String
    Determines the selected sku. Defaults to Standard_DS14_v2.

    Outputs

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

    Id string
    The provider-assigned unique ID for this managed resource.
    Id string
    The provider-assigned unique ID for this managed resource.
    id String
    The provider-assigned unique ID for this managed resource.
    id string
    The provider-assigned unique ID for this managed resource.
    id str
    The provider-assigned unique ID for this managed resource.
    id String
    The provider-assigned unique ID for this managed resource.

    Look up Existing CassandraDatacenter Resource

    Get an existing CassandraDatacenter resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.

    public static get(name: string, id: Input<ID>, state?: CassandraDatacenterState, opts?: CustomResourceOptions): CassandraDatacenter
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            availability_zones_enabled: Optional[bool] = None,
            cassandra_cluster_id: Optional[str] = None,
            delegated_management_subnet_id: Optional[str] = None,
            disk_count: Optional[int] = None,
            location: Optional[str] = None,
            name: Optional[str] = None,
            node_count: Optional[int] = None,
            sku_name: Optional[str] = None) -> CassandraDatacenter
    func GetCassandraDatacenter(ctx *Context, name string, id IDInput, state *CassandraDatacenterState, opts ...ResourceOption) (*CassandraDatacenter, error)
    public static CassandraDatacenter Get(string name, Input<string> id, CassandraDatacenterState? state, CustomResourceOptions? opts = null)
    public static CassandraDatacenter get(String name, Output<String> id, CassandraDatacenterState state, CustomResourceOptions options)
    resources:  _:    type: azure:cosmosdb:CassandraDatacenter    get:      id: ${id}
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    resource_name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    The following state arguments are supported:
    AvailabilityZonesEnabled bool
    Determines whether availability zones are enabled. Defaults to true.
    CassandraClusterId string
    The ID of the Cassandra Cluster. Changing this forces a new Cassandra Datacenter to be created.
    DelegatedManagementSubnetId string
    The ID of the delegated management subnet for this Cassandra Datacenter. Changing this forces a new Cassandra Datacenter to be created.
    DiskCount int
    Determines the number of p30 disks that are attached to each node. Defaults to 4.
    Location string
    The Azure Region where the Cassandra Datacenter should exist. Changing this forces a new Cassandra Datacenter to be created.
    Name string
    The name which should be used for this Cassandra Datacenter. Changing this forces a new Cassandra Datacenter to be created.
    NodeCount int
    The number of nodes the Cassandra Datacenter should have. The number should be equal or greater than 3. Defaults to 3.
    SkuName string
    Determines the selected sku. Defaults to Standard_DS14_v2.
    AvailabilityZonesEnabled bool
    Determines whether availability zones are enabled. Defaults to true.
    CassandraClusterId string
    The ID of the Cassandra Cluster. Changing this forces a new Cassandra Datacenter to be created.
    DelegatedManagementSubnetId string
    The ID of the delegated management subnet for this Cassandra Datacenter. Changing this forces a new Cassandra Datacenter to be created.
    DiskCount int
    Determines the number of p30 disks that are attached to each node. Defaults to 4.
    Location string
    The Azure Region where the Cassandra Datacenter should exist. Changing this forces a new Cassandra Datacenter to be created.
    Name string
    The name which should be used for this Cassandra Datacenter. Changing this forces a new Cassandra Datacenter to be created.
    NodeCount int
    The number of nodes the Cassandra Datacenter should have. The number should be equal or greater than 3. Defaults to 3.
    SkuName string
    Determines the selected sku. Defaults to Standard_DS14_v2.
    availabilityZonesEnabled Boolean
    Determines whether availability zones are enabled. Defaults to true.
    cassandraClusterId String
    The ID of the Cassandra Cluster. Changing this forces a new Cassandra Datacenter to be created.
    delegatedManagementSubnetId String
    The ID of the delegated management subnet for this Cassandra Datacenter. Changing this forces a new Cassandra Datacenter to be created.
    diskCount Integer
    Determines the number of p30 disks that are attached to each node. Defaults to 4.
    location String
    The Azure Region where the Cassandra Datacenter should exist. Changing this forces a new Cassandra Datacenter to be created.
    name String
    The name which should be used for this Cassandra Datacenter. Changing this forces a new Cassandra Datacenter to be created.
    nodeCount Integer
    The number of nodes the Cassandra Datacenter should have. The number should be equal or greater than 3. Defaults to 3.
    skuName String
    Determines the selected sku. Defaults to Standard_DS14_v2.
    availabilityZonesEnabled boolean
    Determines whether availability zones are enabled. Defaults to true.
    cassandraClusterId string
    The ID of the Cassandra Cluster. Changing this forces a new Cassandra Datacenter to be created.
    delegatedManagementSubnetId string
    The ID of the delegated management subnet for this Cassandra Datacenter. Changing this forces a new Cassandra Datacenter to be created.
    diskCount number
    Determines the number of p30 disks that are attached to each node. Defaults to 4.
    location string
    The Azure Region where the Cassandra Datacenter should exist. Changing this forces a new Cassandra Datacenter to be created.
    name string
    The name which should be used for this Cassandra Datacenter. Changing this forces a new Cassandra Datacenter to be created.
    nodeCount number
    The number of nodes the Cassandra Datacenter should have. The number should be equal or greater than 3. Defaults to 3.
    skuName string
    Determines the selected sku. Defaults to Standard_DS14_v2.
    availability_zones_enabled bool
    Determines whether availability zones are enabled. Defaults to true.
    cassandra_cluster_id str
    The ID of the Cassandra Cluster. Changing this forces a new Cassandra Datacenter to be created.
    delegated_management_subnet_id str
    The ID of the delegated management subnet for this Cassandra Datacenter. Changing this forces a new Cassandra Datacenter to be created.
    disk_count int
    Determines the number of p30 disks that are attached to each node. Defaults to 4.
    location str
    The Azure Region where the Cassandra Datacenter should exist. Changing this forces a new Cassandra Datacenter to be created.
    name str
    The name which should be used for this Cassandra Datacenter. Changing this forces a new Cassandra Datacenter to be created.
    node_count int
    The number of nodes the Cassandra Datacenter should have. The number should be equal or greater than 3. Defaults to 3.
    sku_name str
    Determines the selected sku. Defaults to Standard_DS14_v2.
    availabilityZonesEnabled Boolean
    Determines whether availability zones are enabled. Defaults to true.
    cassandraClusterId String
    The ID of the Cassandra Cluster. Changing this forces a new Cassandra Datacenter to be created.
    delegatedManagementSubnetId String
    The ID of the delegated management subnet for this Cassandra Datacenter. Changing this forces a new Cassandra Datacenter to be created.
    diskCount Number
    Determines the number of p30 disks that are attached to each node. Defaults to 4.
    location String
    The Azure Region where the Cassandra Datacenter should exist. Changing this forces a new Cassandra Datacenter to be created.
    name String
    The name which should be used for this Cassandra Datacenter. Changing this forces a new Cassandra Datacenter to be created.
    nodeCount Number
    The number of nodes the Cassandra Datacenter should have. The number should be equal or greater than 3. Defaults to 3.
    skuName String
    Determines the selected sku. Defaults to Standard_DS14_v2.

    Import

    Cassandra Datacenters can be imported using the resource id, e.g.

     $ pulumi import azure:cosmosdb/cassandraDatacenter:CassandraDatacenter example /subscriptions/12345678-1234-9876-4563-123456789012/resourceGroups/resGroup1/providers/Microsoft.DocumentDB/cassandraClusters/cluster1/dataCenters/dc1
    

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

    Package Details

    Repository
    Azure Classic pulumi/pulumi-azure
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the azurerm Terraform Provider.
    azure logo

    We recommend using Azure Native.

    Viewing docs for Azure v4.42.0 (Older version)
    published on Monday, Mar 9, 2026 by Pulumi
      Try Pulumi Cloud free. Your team will thank you.