azure-native.documentdb.CassandraCluster

Representation of a managed Cassandra cluster. API Version: 2021-03-01-preview.

Example Usage

CosmosDBManagedCassandraClusterCreate

using System.Collections.Generic;
using Pulumi;
using AzureNative = Pulumi.AzureNative;

return await Deployment.RunAsync(() => 
{
    var cassandraCluster = new AzureNative.DocumentDB.CassandraCluster("cassandraCluster", new()
    {
        ClusterName = "cassandra-prod",
        Location = "West US",
        Properties = new AzureNative.DocumentDB.Inputs.ClusterResourcePropertiesArgs
        {
            AuthenticationMethod = "Cassandra",
            CassandraVersion = "3.11",
            ClientCertificates = new[]
            {
                new AzureNative.DocumentDB.Inputs.CertificateArgs
                {
                    Pem = @"-----BEGIN CERTIFICATE-----
...Base64 encoded certificate...
-----END CERTIFICATE-----",
                },
            },
            ClusterNameOverride = "ClusterNameIllegalForAzureResource",
            DelegatedManagementSubnetId = "/subscriptions/536e130b-d7d6-4ac7-98a5-de20d69588d2/resourceGroups/customer-vnet-rg/providers/Microsoft.Network/virtualNetworks/customer-vnet/subnets/management",
            ExternalGossipCertificates = new[]
            {
                new AzureNative.DocumentDB.Inputs.CertificateArgs
                {
                    Pem = @"-----BEGIN CERTIFICATE-----
...Base64 encoded certificate...
-----END CERTIFICATE-----",
                },
            },
            ExternalSeedNodes = new[]
            {
                new AzureNative.DocumentDB.Inputs.SeedNodeArgs
                {
                    IpAddress = "10.52.221.2",
                },
                new AzureNative.DocumentDB.Inputs.SeedNodeArgs
                {
                    IpAddress = "10.52.221.3",
                },
                new AzureNative.DocumentDB.Inputs.SeedNodeArgs
                {
                    IpAddress = "10.52.221.4",
                },
            },
            HoursBetweenBackups = 24,
            InitialCassandraAdminPassword = "mypassword",
        },
        ResourceGroupName = "cassandra-prod-rg",
        Tags = null,
    });

});
package main

import (
	documentdb "github.com/pulumi/pulumi-azure-native/sdk/go/azure/documentdb"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := documentdb.NewCassandraCluster(ctx, "cassandraCluster", &documentdb.CassandraClusterArgs{
			ClusterName: pulumi.String("cassandra-prod"),
			Location:    pulumi.String("West US"),
			Properties: documentdb.ClusterResourceResponseProperties{
				AuthenticationMethod: pulumi.String("Cassandra"),
				CassandraVersion:     pulumi.String("3.11"),
				ClientCertificates: documentdb.CertificateArray{
					&documentdb.CertificateArgs{
						Pem: pulumi.String("-----BEGIN CERTIFICATE-----\n...Base64 encoded certificate...\n-----END CERTIFICATE-----"),
					},
				},
				ClusterNameOverride:         pulumi.String("ClusterNameIllegalForAzureResource"),
				DelegatedManagementSubnetId: pulumi.String("/subscriptions/536e130b-d7d6-4ac7-98a5-de20d69588d2/resourceGroups/customer-vnet-rg/providers/Microsoft.Network/virtualNetworks/customer-vnet/subnets/management"),
				ExternalGossipCertificates: documentdb.CertificateArray{
					&documentdb.CertificateArgs{
						Pem: pulumi.String("-----BEGIN CERTIFICATE-----\n...Base64 encoded certificate...\n-----END CERTIFICATE-----"),
					},
				},
				ExternalSeedNodes: documentdb.SeedNodeArray{
					&documentdb.SeedNodeArgs{
						IpAddress: pulumi.String("10.52.221.2"),
					},
					&documentdb.SeedNodeArgs{
						IpAddress: pulumi.String("10.52.221.3"),
					},
					&documentdb.SeedNodeArgs{
						IpAddress: pulumi.String("10.52.221.4"),
					},
				},
				HoursBetweenBackups:           pulumi.Int(24),
				InitialCassandraAdminPassword: pulumi.String("mypassword"),
			},
			ResourceGroupName: pulumi.String("cassandra-prod-rg"),
			Tags:              nil,
		})
		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.documentdb.CassandraCluster;
import com.pulumi.azurenative.documentdb.CassandraClusterArgs;
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 cassandraCluster = new CassandraCluster("cassandraCluster", CassandraClusterArgs.builder()        
            .clusterName("cassandra-prod")
            .location("West US")
            .properties(Map.ofEntries(
                Map.entry("authenticationMethod", "Cassandra"),
                Map.entry("cassandraVersion", "3.11"),
                Map.entry("clientCertificates", Map.of("pem", """
-----BEGIN CERTIFICATE-----
...Base64 encoded certificate...
-----END CERTIFICATE-----                """)),
                Map.entry("clusterNameOverride", "ClusterNameIllegalForAzureResource"),
                Map.entry("delegatedManagementSubnetId", "/subscriptions/536e130b-d7d6-4ac7-98a5-de20d69588d2/resourceGroups/customer-vnet-rg/providers/Microsoft.Network/virtualNetworks/customer-vnet/subnets/management"),
                Map.entry("externalGossipCertificates", Map.of("pem", """
-----BEGIN CERTIFICATE-----
...Base64 encoded certificate...
-----END CERTIFICATE-----                """)),
                Map.entry("externalSeedNodes",                 
                    Map.of("ipAddress", "10.52.221.2"),
                    Map.of("ipAddress", "10.52.221.3"),
                    Map.of("ipAddress", "10.52.221.4")),
                Map.entry("hoursBetweenBackups", 24),
                Map.entry("initialCassandraAdminPassword", "mypassword")
            ))
            .resourceGroupName("cassandra-prod-rg")
            .tags()
            .build());

    }
}
import pulumi
import pulumi_azure_native as azure_native

cassandra_cluster = azure_native.documentdb.CassandraCluster("cassandraCluster",
    cluster_name="cassandra-prod",
    location="West US",
    properties=azure_native.documentdb.ClusterResourceResponsePropertiesArgs(
        authentication_method="Cassandra",
        cassandra_version="3.11",
        client_certificates=[azure_native.documentdb.CertificateArgs(
            pem="""-----BEGIN CERTIFICATE-----
...Base64 encoded certificate...
-----END CERTIFICATE-----""",
        )],
        cluster_name_override="ClusterNameIllegalForAzureResource",
        delegated_management_subnet_id="/subscriptions/536e130b-d7d6-4ac7-98a5-de20d69588d2/resourceGroups/customer-vnet-rg/providers/Microsoft.Network/virtualNetworks/customer-vnet/subnets/management",
        external_gossip_certificates=[azure_native.documentdb.CertificateArgs(
            pem="""-----BEGIN CERTIFICATE-----
...Base64 encoded certificate...
-----END CERTIFICATE-----""",
        )],
        external_seed_nodes=[
            azure_native.documentdb.SeedNodeArgs(
                ip_address="10.52.221.2",
            ),
            azure_native.documentdb.SeedNodeArgs(
                ip_address="10.52.221.3",
            ),
            azure_native.documentdb.SeedNodeArgs(
                ip_address="10.52.221.4",
            ),
        ],
        hours_between_backups=24,
        initial_cassandra_admin_password="mypassword",
    ),
    resource_group_name="cassandra-prod-rg",
    tags={})
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";

const cassandraCluster = new azure_native.documentdb.CassandraCluster("cassandraCluster", {
    clusterName: "cassandra-prod",
    location: "West US",
    properties: {
        authenticationMethod: "Cassandra",
        cassandraVersion: "3.11",
        clientCertificates: [{
            pem: `-----BEGIN CERTIFICATE-----
...Base64 encoded certificate...
-----END CERTIFICATE-----`,
        }],
        clusterNameOverride: "ClusterNameIllegalForAzureResource",
        delegatedManagementSubnetId: "/subscriptions/536e130b-d7d6-4ac7-98a5-de20d69588d2/resourceGroups/customer-vnet-rg/providers/Microsoft.Network/virtualNetworks/customer-vnet/subnets/management",
        externalGossipCertificates: [{
            pem: `-----BEGIN CERTIFICATE-----
...Base64 encoded certificate...
-----END CERTIFICATE-----`,
        }],
        externalSeedNodes: [
            {
                ipAddress: "10.52.221.2",
            },
            {
                ipAddress: "10.52.221.3",
            },
            {
                ipAddress: "10.52.221.4",
            },
        ],
        hoursBetweenBackups: 24,
        initialCassandraAdminPassword: "mypassword",
    },
    resourceGroupName: "cassandra-prod-rg",
    tags: {},
});
resources:
  cassandraCluster:
    type: azure-native:documentdb:CassandraCluster
    properties:
      clusterName: cassandra-prod
      location: West US
      properties:
        authenticationMethod: Cassandra
        cassandraVersion: '3.11'
        clientCertificates:
          - pem: |-
              -----BEGIN CERTIFICATE-----
              ...Base64 encoded certificate...
              -----END CERTIFICATE-----              
        clusterNameOverride: ClusterNameIllegalForAzureResource
        delegatedManagementSubnetId: /subscriptions/536e130b-d7d6-4ac7-98a5-de20d69588d2/resourceGroups/customer-vnet-rg/providers/Microsoft.Network/virtualNetworks/customer-vnet/subnets/management
        externalGossipCertificates:
          - pem: |-
              -----BEGIN CERTIFICATE-----
              ...Base64 encoded certificate...
              -----END CERTIFICATE-----              
        externalSeedNodes:
          - ipAddress: 10.52.221.2
          - ipAddress: 10.52.221.3
          - ipAddress: 10.52.221.4
        hoursBetweenBackups: 24
        initialCassandraAdminPassword: mypassword
      resourceGroupName: cassandra-prod-rg
      tags: {}

Create CassandraCluster Resource

new CassandraCluster(name: string, args: CassandraClusterArgs, opts?: CustomResourceOptions);
@overload
def CassandraCluster(resource_name: str,
                     opts: Optional[ResourceOptions] = None,
                     cluster_name: Optional[str] = None,
                     identity: Optional[ManagedServiceIdentityArgs] = None,
                     location: Optional[str] = None,
                     properties: Optional[ClusterResourcePropertiesArgs] = None,
                     resource_group_name: Optional[str] = None,
                     tags: Optional[Mapping[str, str]] = None)
@overload
def CassandraCluster(resource_name: str,
                     args: CassandraClusterArgs,
                     opts: Optional[ResourceOptions] = None)
func NewCassandraCluster(ctx *Context, name string, args CassandraClusterArgs, opts ...ResourceOption) (*CassandraCluster, error)
public CassandraCluster(string name, CassandraClusterArgs args, CustomResourceOptions? opts = null)
public CassandraCluster(String name, CassandraClusterArgs args)
public CassandraCluster(String name, CassandraClusterArgs args, CustomResourceOptions options)
type: azure-native:documentdb:CassandraCluster
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

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

CassandraCluster Resource Properties

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

Inputs

The CassandraCluster resource accepts the following input properties:

ResourceGroupName string

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

ClusterName string

Managed Cassandra cluster name.

Identity Pulumi.AzureNative.DocumentDB.Inputs.ManagedServiceIdentityArgs

Identity for the resource.

Location string

The location of the resource group to which the resource belongs.

Properties Pulumi.AzureNative.DocumentDB.Inputs.ClusterResourcePropertiesArgs

Properties of a managed Cassandra cluster.

Tags Dictionary<string, string>

Tags are a list of key-value pairs that describe the resource. These tags can be used in viewing and grouping this resource (across resource groups). A maximum of 15 tags can be provided for a resource. Each tag must have a key no greater than 128 characters and value no greater than 256 characters. For example, the default experience for a template type is set with "defaultExperience": "Cassandra". Current "defaultExperience" values also include "Table", "Graph", "DocumentDB", and "MongoDB".

ResourceGroupName string

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

ClusterName string

Managed Cassandra cluster name.

Identity ManagedServiceIdentityArgs

Identity for the resource.

Location string

The location of the resource group to which the resource belongs.

Properties ClusterResourcePropertiesArgs

Properties of a managed Cassandra cluster.

Tags map[string]string

Tags are a list of key-value pairs that describe the resource. These tags can be used in viewing and grouping this resource (across resource groups). A maximum of 15 tags can be provided for a resource. Each tag must have a key no greater than 128 characters and value no greater than 256 characters. For example, the default experience for a template type is set with "defaultExperience": "Cassandra". Current "defaultExperience" values also include "Table", "Graph", "DocumentDB", and "MongoDB".

resourceGroupName String

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

clusterName String

Managed Cassandra cluster name.

identity ManagedServiceIdentityArgs

Identity for the resource.

location String

The location of the resource group to which the resource belongs.

properties ClusterResourcePropertiesArgs

Properties of a managed Cassandra cluster.

tags Map<String,String>

Tags are a list of key-value pairs that describe the resource. These tags can be used in viewing and grouping this resource (across resource groups). A maximum of 15 tags can be provided for a resource. Each tag must have a key no greater than 128 characters and value no greater than 256 characters. For example, the default experience for a template type is set with "defaultExperience": "Cassandra". Current "defaultExperience" values also include "Table", "Graph", "DocumentDB", and "MongoDB".

resourceGroupName string

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

clusterName string

Managed Cassandra cluster name.

identity ManagedServiceIdentityArgs

Identity for the resource.

location string

The location of the resource group to which the resource belongs.

properties ClusterResourcePropertiesArgs

Properties of a managed Cassandra cluster.

tags {[key: string]: string}

Tags are a list of key-value pairs that describe the resource. These tags can be used in viewing and grouping this resource (across resource groups). A maximum of 15 tags can be provided for a resource. Each tag must have a key no greater than 128 characters and value no greater than 256 characters. For example, the default experience for a template type is set with "defaultExperience": "Cassandra". Current "defaultExperience" values also include "Table", "Graph", "DocumentDB", and "MongoDB".

resource_group_name str

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

cluster_name str

Managed Cassandra cluster name.

identity ManagedServiceIdentityArgs

Identity for the resource.

location str

The location of the resource group to which the resource belongs.

properties ClusterResourcePropertiesArgs

Properties of a managed Cassandra cluster.

tags Mapping[str, str]

Tags are a list of key-value pairs that describe the resource. These tags can be used in viewing and grouping this resource (across resource groups). A maximum of 15 tags can be provided for a resource. Each tag must have a key no greater than 128 characters and value no greater than 256 characters. For example, the default experience for a template type is set with "defaultExperience": "Cassandra". Current "defaultExperience" values also include "Table", "Graph", "DocumentDB", and "MongoDB".

resourceGroupName String

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

clusterName String

Managed Cassandra cluster name.

identity Property Map

Identity for the resource.

location String

The location of the resource group to which the resource belongs.

properties Property Map

Properties of a managed Cassandra cluster.

tags Map<String>

Tags are a list of key-value pairs that describe the resource. These tags can be used in viewing and grouping this resource (across resource groups). A maximum of 15 tags can be provided for a resource. Each tag must have a key no greater than 128 characters and value no greater than 256 characters. For example, the default experience for a template type is set with "defaultExperience": "Cassandra". Current "defaultExperience" values also include "Table", "Graph", "DocumentDB", and "MongoDB".

Outputs

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

Id string

The provider-assigned unique ID for this managed resource.

Name string

The name of the ARM resource.

Type string

The type of Azure resource.

Id string

The provider-assigned unique ID for this managed resource.

Name string

The name of the ARM resource.

Type string

The type of Azure resource.

id String

The provider-assigned unique ID for this managed resource.

name String

The name of the ARM resource.

type String

The type of Azure resource.

id string

The provider-assigned unique ID for this managed resource.

name string

The name of the ARM resource.

type string

The type of Azure resource.

id str

The provider-assigned unique ID for this managed resource.

name str

The name of the ARM resource.

type str

The type of Azure resource.

id String

The provider-assigned unique ID for this managed resource.

name String

The name of the ARM resource.

type String

The type of Azure resource.

Supporting Types

AuthenticationMethod

None
None
Cassandra
Cassandra
AuthenticationMethodNone
None
AuthenticationMethodCassandra
Cassandra
None
None
Cassandra
Cassandra
None
None
Cassandra
Cassandra
NONE
None
CASSANDRA
Cassandra
"None"
None
"Cassandra"
Cassandra

Certificate

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.

CertificateResponse

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

AuthenticationMethod string | Pulumi.AzureNative.DocumentDB.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'.

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.DocumentDB.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.

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/'

ExternalGossipCertificates List<Pulumi.AzureNative.DocumentDB.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.DocumentDB.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

Number of hours to wait between taking a backup of the cluster. To disable backups, set this property to 0.

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'.

PrometheusEndpoint Pulumi.AzureNative.DocumentDB.Inputs.SeedNode

Hostname or IP address where the Prometheus endpoint containing data about the managed Cassandra nodes can be reached.

ProvisioningState string | Pulumi.AzureNative.DocumentDB.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.

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.

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'.

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.

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/'

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

Number of hours to wait between taking a backup of the cluster. To disable backups, set this property to 0.

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'.

PrometheusEndpoint SeedNode

Hostname or IP address where the Prometheus endpoint containing data about the managed Cassandra nodes can be reached.

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.

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.

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'.

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.

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/'

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

Number of hours to wait between taking a backup of the cluster. To disable backups, set this property to 0.

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'.

prometheusEndpoint SeedNode

Hostname or IP address where the Prometheus endpoint containing data about the managed Cassandra nodes can be reached.

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.

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.

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'.

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.

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/'

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

Number of hours to wait between taking a backup of the cluster. To disable backups, set this property to 0.

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'.

prometheusEndpoint SeedNode

Hostname or IP address where the Prometheus endpoint containing data about the managed Cassandra nodes can be reached.

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.

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.

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'.

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.

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/'

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

Number of hours to wait between taking a backup of the cluster. To disable backups, set this property to 0.

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'.

prometheus_endpoint SeedNode

Hostname or IP address where the Prometheus endpoint containing data about the managed Cassandra nodes can be reached.

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.

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.

authenticationMethod String | "None" | "Cassandra"

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'.

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.

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/'

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

Number of hours to wait between taking a backup of the cluster. To disable backups, set this property to 0.

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'.

prometheusEndpoint Property Map

Hostname or IP address where the Prometheus endpoint containing data about the managed Cassandra nodes can be reached.

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.

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.

ClusterResourceResponseProperties

GossipCertificates List<Pulumi.AzureNative.DocumentDB.Inputs.CertificateResponse>

List of TLS certificates that unmanaged nodes must trust for gossip with managed nodes. All managed nodes will present TLS client certificates that are verifiable using one of the certificates provided in this property.

SeedNodes List<Pulumi.AzureNative.DocumentDB.Inputs.SeedNodeResponse>

List of IP addresses of seed nodes in the managed data centers. These should be added to the seed node lists of all unmanaged nodes.

AuthenticationMethod string

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'.

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.DocumentDB.Inputs.CertificateResponse>

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.

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/'

ExternalGossipCertificates List<Pulumi.AzureNative.DocumentDB.Inputs.CertificateResponse>

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.DocumentDB.Inputs.SeedNodeResponse>

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

Number of hours to wait between taking a backup of the cluster. To disable backups, set this property to 0.

PrometheusEndpoint Pulumi.AzureNative.DocumentDB.Inputs.SeedNodeResponse

Hostname or IP address where the Prometheus endpoint containing data about the managed Cassandra nodes can be reached.

ProvisioningState string

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.

GossipCertificates []CertificateResponse

List of TLS certificates that unmanaged nodes must trust for gossip with managed nodes. All managed nodes will present TLS client certificates that are verifiable using one of the certificates provided in this property.

SeedNodes []SeedNodeResponse

List of IP addresses of seed nodes in the managed data centers. These should be added to the seed node lists of all unmanaged nodes.

AuthenticationMethod string

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'.

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 []CertificateResponse

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.

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/'

ExternalGossipCertificates []CertificateResponse

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 []SeedNodeResponse

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

Number of hours to wait between taking a backup of the cluster. To disable backups, set this property to 0.

PrometheusEndpoint SeedNodeResponse

Hostname or IP address where the Prometheus endpoint containing data about the managed Cassandra nodes can be reached.

ProvisioningState string

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.

gossipCertificates List<CertificateResponse>

List of TLS certificates that unmanaged nodes must trust for gossip with managed nodes. All managed nodes will present TLS client certificates that are verifiable using one of the certificates provided in this property.

seedNodes List<SeedNodeResponse>

List of IP addresses of seed nodes in the managed data centers. These should be added to the seed node lists of all unmanaged nodes.

authenticationMethod String

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'.

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<CertificateResponse>

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.

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/'

externalGossipCertificates List<CertificateResponse>

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<SeedNodeResponse>

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

Number of hours to wait between taking a backup of the cluster. To disable backups, set this property to 0.

prometheusEndpoint SeedNodeResponse

Hostname or IP address where the Prometheus endpoint containing data about the managed Cassandra nodes can be reached.

provisioningState String

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.

gossipCertificates CertificateResponse[]

List of TLS certificates that unmanaged nodes must trust for gossip with managed nodes. All managed nodes will present TLS client certificates that are verifiable using one of the certificates provided in this property.

seedNodes SeedNodeResponse[]

List of IP addresses of seed nodes in the managed data centers. These should be added to the seed node lists of all unmanaged nodes.

authenticationMethod string

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'.

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 CertificateResponse[]

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.

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/'

externalGossipCertificates CertificateResponse[]

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 SeedNodeResponse[]

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

Number of hours to wait between taking a backup of the cluster. To disable backups, set this property to 0.

prometheusEndpoint SeedNodeResponse

Hostname or IP address where the Prometheus endpoint containing data about the managed Cassandra nodes can be reached.

provisioningState string

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.

gossip_certificates Sequence[CertificateResponse]

List of TLS certificates that unmanaged nodes must trust for gossip with managed nodes. All managed nodes will present TLS client certificates that are verifiable using one of the certificates provided in this property.

seed_nodes Sequence[SeedNodeResponse]

List of IP addresses of seed nodes in the managed data centers. These should be added to the seed node lists of all unmanaged nodes.

authentication_method str

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'.

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[CertificateResponse]

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.

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/'

external_gossip_certificates Sequence[CertificateResponse]

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[SeedNodeResponse]

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

Number of hours to wait between taking a backup of the cluster. To disable backups, set this property to 0.

prometheus_endpoint SeedNodeResponse

Hostname or IP address where the Prometheus endpoint containing data about the managed Cassandra nodes can be reached.

provisioning_state str

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.

gossipCertificates List<Property Map>

List of TLS certificates that unmanaged nodes must trust for gossip with managed nodes. All managed nodes will present TLS client certificates that are verifiable using one of the certificates provided in this property.

seedNodes List<Property Map>

List of IP addresses of seed nodes in the managed data centers. These should be added to the seed node lists of all unmanaged nodes.

authenticationMethod String

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'.

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.

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/'

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

Number of hours to wait between taking a backup of the cluster. To disable backups, set this property to 0.

prometheusEndpoint Property Map

Hostname or IP address where the Prometheus endpoint containing data about the managed Cassandra nodes can be reached.

provisioningState String

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.

ManagedCassandraProvisioningState

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

ManagedServiceIdentity

Type Pulumi.AzureNative.DocumentDB.ResourceIdentityType

The type of identity used for the resource. The type 'SystemAssigned,UserAssigned' includes both an implicitly created identity and a set of user assigned identities. The type 'None' will remove any identities from the service.

UserAssignedIdentities Dictionary<string, object>

The list of user identities associated with resource. The user identity dictionary key references will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}'.

Type ResourceIdentityType

The type of identity used for the resource. The type 'SystemAssigned,UserAssigned' includes both an implicitly created identity and a set of user assigned identities. The type 'None' will remove any identities from the service.

UserAssignedIdentities map[string]interface{}

The list of user identities associated with resource. The user identity dictionary key references will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}'.

type ResourceIdentityType

The type of identity used for the resource. The type 'SystemAssigned,UserAssigned' includes both an implicitly created identity and a set of user assigned identities. The type 'None' will remove any identities from the service.

userAssignedIdentities Map<String,Object>

The list of user identities associated with resource. The user identity dictionary key references will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}'.

type ResourceIdentityType

The type of identity used for the resource. The type 'SystemAssigned,UserAssigned' includes both an implicitly created identity and a set of user assigned identities. The type 'None' will remove any identities from the service.

userAssignedIdentities {[key: string]: any}

The list of user identities associated with resource. The user identity dictionary key references will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}'.

type ResourceIdentityType

The type of identity used for the resource. The type 'SystemAssigned,UserAssigned' includes both an implicitly created identity and a set of user assigned identities. The type 'None' will remove any identities from the service.

user_assigned_identities Mapping[str, Any]

The list of user identities associated with resource. The user identity dictionary key references will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}'.

type "SystemAssigned" | "UserAssigned" | "SystemAssigned,UserAssigned" | "None"

The type of identity used for the resource. The type 'SystemAssigned,UserAssigned' includes both an implicitly created identity and a set of user assigned identities. The type 'None' will remove any identities from the service.

userAssignedIdentities Map<Any>

The list of user identities associated with resource. The user identity dictionary key references will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}'.

ManagedServiceIdentityResponse

PrincipalId string

The principal id of the system assigned identity. This property will only be provided for a system assigned identity.

TenantId string

The tenant id of the system assigned identity. This property will only be provided for a system assigned identity.

Type string

The type of identity used for the resource. The type 'SystemAssigned,UserAssigned' includes both an implicitly created identity and a set of user assigned identities. The type 'None' will remove any identities from the service.

UserAssignedIdentities Dictionary<string, Pulumi.AzureNative.DocumentDB.Inputs.ManagedServiceIdentityResponseUserAssignedIdentities>

The list of user identities associated with resource. The user identity dictionary key references will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}'.

PrincipalId string

The principal id of the system assigned identity. This property will only be provided for a system assigned identity.

TenantId string

The tenant id of the system assigned identity. This property will only be provided for a system assigned identity.

Type string

The type of identity used for the resource. The type 'SystemAssigned,UserAssigned' includes both an implicitly created identity and a set of user assigned identities. The type 'None' will remove any identities from the service.

UserAssignedIdentities map[string]ManagedServiceIdentityResponseUserAssignedIdentities

The list of user identities associated with resource. The user identity dictionary key references will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}'.

principalId String

The principal id of the system assigned identity. This property will only be provided for a system assigned identity.

tenantId String

The tenant id of the system assigned identity. This property will only be provided for a system assigned identity.

type String

The type of identity used for the resource. The type 'SystemAssigned,UserAssigned' includes both an implicitly created identity and a set of user assigned identities. The type 'None' will remove any identities from the service.

userAssignedIdentities Map<String,ManagedServiceIdentityResponseUserAssignedIdentities>

The list of user identities associated with resource. The user identity dictionary key references will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}'.

principalId string

The principal id of the system assigned identity. This property will only be provided for a system assigned identity.

tenantId string

The tenant id of the system assigned identity. This property will only be provided for a system assigned identity.

type string

The type of identity used for the resource. The type 'SystemAssigned,UserAssigned' includes both an implicitly created identity and a set of user assigned identities. The type 'None' will remove any identities from the service.

userAssignedIdentities {[key: string]: ManagedServiceIdentityResponseUserAssignedIdentities}

The list of user identities associated with resource. The user identity dictionary key references will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}'.

principal_id str

The principal id of the system assigned identity. This property will only be provided for a system assigned identity.

tenant_id str

The tenant id of the system assigned identity. This property will only be provided for a system assigned identity.

type str

The type of identity used for the resource. The type 'SystemAssigned,UserAssigned' includes both an implicitly created identity and a set of user assigned identities. The type 'None' will remove any identities from the service.

user_assigned_identities Mapping[str, ManagedServiceIdentityResponseUserAssignedIdentities]

The list of user identities associated with resource. The user identity dictionary key references will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}'.

principalId String

The principal id of the system assigned identity. This property will only be provided for a system assigned identity.

tenantId String

The tenant id of the system assigned identity. This property will only be provided for a system assigned identity.

type String

The type of identity used for the resource. The type 'SystemAssigned,UserAssigned' includes both an implicitly created identity and a set of user assigned identities. The type 'None' will remove any identities from the service.

userAssignedIdentities Map<Property Map>

The list of user identities associated with resource. The user identity dictionary key references will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}'.

ManagedServiceIdentityResponseUserAssignedIdentities

ClientId string

The client id of user assigned identity.

PrincipalId string

The principal id of user assigned identity.

ClientId string

The client id of user assigned identity.

PrincipalId string

The principal id of user assigned identity.

clientId String

The client id of user assigned identity.

principalId String

The principal id of user assigned identity.

clientId string

The client id of user assigned identity.

principalId string

The principal id of user assigned identity.

client_id str

The client id of user assigned identity.

principal_id str

The principal id of user assigned identity.

clientId String

The client id of user assigned identity.

principalId String

The principal id of user assigned identity.

ResourceIdentityType

SystemAssigned
SystemAssigned
UserAssigned
UserAssigned
SystemAssigned_UserAssigned
SystemAssigned,UserAssigned
None
None
ResourceIdentityTypeSystemAssigned
SystemAssigned
ResourceIdentityTypeUserAssigned
UserAssigned
ResourceIdentityType_SystemAssigned_UserAssigned
SystemAssigned,UserAssigned
ResourceIdentityTypeNone
None
SystemAssigned
SystemAssigned
UserAssigned
UserAssigned
SystemAssigned_UserAssigned
SystemAssigned,UserAssigned
None
None
SystemAssigned
SystemAssigned
UserAssigned
UserAssigned
SystemAssigned_UserAssigned
SystemAssigned,UserAssigned
None
None
SYSTEM_ASSIGNED
SystemAssigned
USER_ASSIGNED
UserAssigned
SYSTEM_ASSIGNED_USER_ASSIGNED
SystemAssigned,UserAssigned
NONE
None
"SystemAssigned"
SystemAssigned
"UserAssigned"
UserAssigned
"SystemAssigned,UserAssigned"
SystemAssigned,UserAssigned
"None"
None

SeedNode

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.

SeedNodeResponse

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.

Import

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

$ pulumi import azure-native:documentdb:CassandraCluster cassandra-prod /subscriptions/subid/resourceGroups/cassandra-prod-rg/providers/Microsoft.DocumentDB/cassandraClusters/cassandra-prod 

Package Details

Repository
Azure Native pulumi/pulumi-azure-native
License
Apache-2.0