azure-native.documentdb.CassandraCluster
Explore with Pulumi AI
Representation of a managed Cassandra cluster. API Version: 2021-03-01-preview.
Example Usage
CosmosDBManagedCassandraClusterCreate
using System.Collections.Generic;
using System.Linq;
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/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
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new CassandraCluster(name: string, args: CassandraClusterArgs, opts?: CustomResourceOptions);
@overload
def CassandraCluster(resource_name: str,
args: CassandraClusterArgs,
opts: Optional[ResourceOptions] = None)
@overload
def CassandraCluster(resource_name: str,
opts: Optional[ResourceOptions] = None,
resource_group_name: Optional[str] = None,
cluster_name: Optional[str] = None,
identity: Optional[ManagedServiceIdentityArgs] = None,
location: Optional[str] = None,
properties: Optional[ClusterResourcePropertiesArgs] = None,
tags: Optional[Mapping[str, str]] = 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.
Parameters
- 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.
Constructor example
The following reference example uses placeholder values for all input properties.
var cassandraClusterResource = new AzureNative.Documentdb.CassandraCluster("cassandraClusterResource", new()
{
ResourceGroupName = "string",
ClusterName = "string",
Identity =
{
{ "type", "SystemAssigned" },
{ "userAssignedIdentities",
{
{ "string", "any" },
} },
},
Location = "string",
Properties =
{
{ "authenticationMethod", "string" },
{ "cassandraVersion", "string" },
{ "clientCertificates", new[]
{
{
{ "pem", "string" },
},
} },
{ "clusterNameOverride", "string" },
{ "delegatedManagementSubnetId", "string" },
{ "externalGossipCertificates", new[]
{
{
{ "pem", "string" },
},
} },
{ "externalSeedNodes", new[]
{
{
{ "ipAddress", "string" },
},
} },
{ "hoursBetweenBackups", 0 },
{ "initialCassandraAdminPassword", "string" },
{ "prometheusEndpoint",
{
{ "ipAddress", "string" },
} },
{ "provisioningState", "string" },
{ "repairEnabled", false },
{ "restoreFromBackupId", "string" },
},
Tags =
{
{ "string", "string" },
},
});
example, err := documentdb.NewCassandraCluster(ctx, "cassandraClusterResource", &documentdb.CassandraClusterArgs{
ResourceGroupName: "string",
ClusterName: "string",
Identity: map[string]interface{}{
"type": "SystemAssigned",
"userAssignedIdentities": map[string]interface{}{
"string": "any",
},
},
Location: "string",
Properties: map[string]interface{}{
"authenticationMethod": "string",
"cassandraVersion": "string",
"clientCertificates": []map[string]interface{}{
map[string]interface{}{
"pem": "string",
},
},
"clusterNameOverride": "string",
"delegatedManagementSubnetId": "string",
"externalGossipCertificates": []map[string]interface{}{
map[string]interface{}{
"pem": "string",
},
},
"externalSeedNodes": []map[string]interface{}{
map[string]interface{}{
"ipAddress": "string",
},
},
"hoursBetweenBackups": 0,
"initialCassandraAdminPassword": "string",
"prometheusEndpoint": map[string]interface{}{
"ipAddress": "string",
},
"provisioningState": "string",
"repairEnabled": false,
"restoreFromBackupId": "string",
},
Tags: map[string]interface{}{
"string": "string",
},
})
var cassandraClusterResource = new CassandraCluster("cassandraClusterResource", CassandraClusterArgs.builder()
.resourceGroupName("string")
.clusterName("string")
.identity(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
.location("string")
.properties(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
.tags(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
.build());
cassandra_cluster_resource = azure_native.documentdb.CassandraCluster("cassandraClusterResource",
resource_group_name=string,
cluster_name=string,
identity={
type: SystemAssigned,
userAssignedIdentities: {
string: any,
},
},
location=string,
properties={
authenticationMethod: string,
cassandraVersion: string,
clientCertificates: [{
pem: string,
}],
clusterNameOverride: string,
delegatedManagementSubnetId: string,
externalGossipCertificates: [{
pem: string,
}],
externalSeedNodes: [{
ipAddress: string,
}],
hoursBetweenBackups: 0,
initialCassandraAdminPassword: string,
prometheusEndpoint: {
ipAddress: string,
},
provisioningState: string,
repairEnabled: False,
restoreFromBackupId: string,
},
tags={
string: string,
})
const cassandraClusterResource = new azure_native.documentdb.CassandraCluster("cassandraClusterResource", {
resourceGroupName: "string",
clusterName: "string",
identity: {
type: "SystemAssigned",
userAssignedIdentities: {
string: "any",
},
},
location: "string",
properties: {
authenticationMethod: "string",
cassandraVersion: "string",
clientCertificates: [{
pem: "string",
}],
clusterNameOverride: "string",
delegatedManagementSubnetId: "string",
externalGossipCertificates: [{
pem: "string",
}],
externalSeedNodes: [{
ipAddress: "string",
}],
hoursBetweenBackups: 0,
initialCassandraAdminPassword: "string",
prometheusEndpoint: {
ipAddress: "string",
},
provisioningState: "string",
repairEnabled: false,
restoreFromBackupId: "string",
},
tags: {
string: "string",
},
});
type: azure-native:documentdb:CassandraCluster
properties:
clusterName: string
identity:
type: SystemAssigned
userAssignedIdentities:
string: any
location: string
properties:
authenticationMethod: string
cassandraVersion: string
clientCertificates:
- pem: string
clusterNameOverride: string
delegatedManagementSubnetId: string
externalGossipCertificates:
- pem: string
externalSeedNodes:
- ipAddress: string
hoursBetweenBackups: 0
initialCassandraAdminPassword: string
prometheusEndpoint:
ipAddress: string
provisioningState: string
repairEnabled: false
restoreFromBackupId: string
resourceGroupName: string
tags:
string: string
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:
- Resource
Group stringName - The name of the resource group. The name is case insensitive.
- Cluster
Name string - Managed Cassandra cluster name.
- Identity
Pulumi.
Azure Native. Document DB. Inputs. Managed Service Identity - Identity for the resource.
- Location string
- The location of the resource group to which the resource belongs.
- Properties
Pulumi.
Azure Native. Document DB. Inputs. Cluster Resource Properties - Properties of a managed Cassandra cluster.
- 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".
- Resource
Group stringName - The name of the resource group. The name is case insensitive.
- Cluster
Name string - Managed Cassandra cluster name.
- Identity
Managed
Service Identity Args - Identity for the resource.
- Location string
- The location of the resource group to which the resource belongs.
- Properties
Cluster
Resource Properties Args - Properties of a managed Cassandra cluster.
- 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".
- resource
Group StringName - The name of the resource group. The name is case insensitive.
- cluster
Name String - Managed Cassandra cluster name.
- identity
Managed
Service Identity - Identity for the resource.
- location String
- The location of the resource group to which the resource belongs.
- properties
Cluster
Resource Properties - Properties of a managed Cassandra cluster.
- 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".
- resource
Group stringName - The name of the resource group. The name is case insensitive.
- cluster
Name string - Managed Cassandra cluster name.
- identity
Managed
Service Identity - Identity for the resource.
- location string
- The location of the resource group to which the resource belongs.
- properties
Cluster
Resource Properties - Properties of a managed Cassandra cluster.
- {[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_ strname - The name of the resource group. The name is case insensitive.
- cluster_
name str - Managed Cassandra cluster name.
- identity
Managed
Service Identity Args - Identity for the resource.
- location str
- The location of the resource group to which the resource belongs.
- properties
Cluster
Resource Properties Args - Properties of a managed Cassandra cluster.
- 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".
- resource
Group StringName - The name of the resource group. The name is case insensitive.
- cluster
Name 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.
- 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:
Supporting Types
AuthenticationMethod, AuthenticationMethodArgs
- None
- None
- Cassandra
- Cassandra
- Authentication
Method None - None
- Authentication
Method Cassandra - Cassandra
- None
- None
- Cassandra
- Cassandra
- None
- None
- Cassandra
- Cassandra
- NONE
- None
- CASSANDRA
- Cassandra
- "None"
- None
- "Cassandra"
- Cassandra
Certificate, CertificateArgs
- Pem string
- PEM formatted public key.
- Pem string
- PEM formatted public key.
- pem String
- PEM formatted public key.
- pem string
- PEM formatted public key.
- pem str
- PEM formatted public key.
- pem String
- PEM formatted public key.
CertificateResponse, CertificateResponseArgs
- Pem string
- PEM formatted public key.
- Pem string
- PEM formatted public key.
- pem String
- PEM formatted public key.
- pem string
- PEM formatted public key.
- pem str
- PEM formatted public key.
- pem String
- PEM formatted public key.
ClusterResourceProperties, ClusterResourcePropertiesArgs
- Authentication
Method string | Pulumi.Azure Native. Document DB. Authentication Method - 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 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.
- Client
Certificates List<Pulumi.Azure Native. Document DB. 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.
- Cluster
Name stringOverride - 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 stringSubnet Id - 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 List<Pulumi.Certificates Azure Native. Document DB. 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.
- External
Seed List<Pulumi.Nodes Azure Native. Document DB. Inputs. Seed Node> - 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 intBackups - Number of hours to wait between taking a backup of the cluster. To disable backups, set this property to 0.
- Initial
Cassandra stringAdmin Password - 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 Pulumi.Azure Native. Document DB. Inputs. Seed Node - Hostname or IP address where the Prometheus endpoint containing data about the managed Cassandra nodes can be reached.
- Provisioning
State string | Pulumi.Azure Native. Document DB. Managed Cassandra Provisioning State - 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 stringBackup Id - 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 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'.
- Cassandra
Version 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.
- Client
Certificates []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 stringOverride - 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 stringSubnet Id - 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 []CertificateCertificates - 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 []SeedNodes Node - 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 intBackups - Number of hours to wait between taking a backup of the cluster. To disable backups, set this property to 0.
- Initial
Cassandra stringAdmin Password - 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 string | ManagedCassandra Provisioning State - 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 stringBackup Id - 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 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'.
- cassandra
Version 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.
- client
Certificates 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.
- cluster
Name StringOverride - 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 StringSubnet Id - 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 List<Certificate>Certificates - 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 List<SeedNodes Node> - 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 IntegerBackups - Number of hours to wait between taking a backup of the cluster. To disable backups, set this property to 0.
- initial
Cassandra StringAdmin Password - 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 String | ManagedCassandra Provisioning State - The status of the resource at the time the operation was called.
- repair
Enabled 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.
- restore
From StringBackup Id - 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 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'.
- cassandra
Version 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.
- client
Certificates 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 stringOverride - 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 stringSubnet Id - 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 Certificate[]Certificates - 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 SeedNodes Node[] - 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 numberBackups - Number of hours to wait between taking a backup of the cluster. To disable backups, set this property to 0.
- initial
Cassandra stringAdmin Password - 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 string | ManagedCassandra Provisioning State - The status of the resource at the time the operation was called.
- repair
Enabled 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.
- restore
From stringBackup Id - 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_ stroverride - 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_ strsubnet_ id - 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_ Sequence[Certificate]certificates - 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_ Sequence[Seednodes Node] - 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_ intbackups - Number of hours to wait between taking a backup of the cluster. To disable backups, set this property to 0.
- initial_
cassandra_ stradmin_ password - 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 | ManagedCassandra Provisioning State - 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_ strbackup_ id - 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 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'.
- cassandra
Version 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.
- client
Certificates 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.
- cluster
Name StringOverride - 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 StringSubnet Id - 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 List<Property Map>Certificates - 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 List<Property Map>Nodes - 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 NumberBackups - Number of hours to wait between taking a backup of the cluster. To disable backups, set this property to 0.
- initial
Cassandra StringAdmin Password - 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 Property Map - Hostname or IP address where the Prometheus endpoint containing data about the managed Cassandra nodes can be reached.
- provisioning
State String | "Creating" | "Updating" | "Deleting" | "Succeeded" | "Failed" | "Canceled" - The status of the resource at the time the operation was called.
- repair
Enabled 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.
- restore
From StringBackup Id - 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, ClusterResourceResponsePropertiesArgs
- Gossip
Certificates List<Pulumi.Azure Native. Document DB. Inputs. Certificate Response> - 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 List<Pulumi.Azure Native. Document DB. Inputs. Seed Node Response> - 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 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'.
- Cassandra
Version 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.
- Client
Certificates List<Pulumi.Azure Native. Document DB. Inputs. Certificate Response> - 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 stringOverride - 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 stringSubnet Id - 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 List<Pulumi.Certificates Azure Native. Document DB. Inputs. Certificate Response> - 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 List<Pulumi.Nodes Azure Native. Document DB. Inputs. Seed Node Response> - 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 intBackups - Number of hours to wait between taking a backup of the cluster. To disable backups, set this property to 0.
- Prometheus
Endpoint Pulumi.Azure Native. Document DB. Inputs. Seed Node Response - Hostname or IP address where the Prometheus endpoint containing data about the managed Cassandra nodes can be reached.
- Provisioning
State string - 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.
- Gossip
Certificates []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 []SeedNode Response - 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 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'.
- Cassandra
Version 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.
- Client
Certificates []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 stringOverride - 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 stringSubnet Id - 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 []CertificateCertificates Response - 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 []SeedNodes Node Response - 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 intBackups - Number of hours to wait between taking a backup of the cluster. To disable backups, set this property to 0.
- Prometheus
Endpoint SeedNode Response - Hostname or IP address where the Prometheus endpoint containing data about the managed Cassandra nodes can be reached.
- Provisioning
State string - 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.
- gossip
Certificates 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.
- seed
Nodes List<SeedNode Response> - 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 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'.
- cassandra
Version 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.
- client
Certificates 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.
- cluster
Name StringOverride - 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 StringSubnet Id - 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 List<CertificateCertificates Response> - 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 List<SeedNodes Node Response> - 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 IntegerBackups - Number of hours to wait between taking a backup of the cluster. To disable backups, set this property to 0.
- prometheus
Endpoint SeedNode Response - Hostname or IP address where the Prometheus endpoint containing data about the managed Cassandra nodes can be reached.
- provisioning
State String - The status of the resource at the time the operation was called.
- repair
Enabled 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 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 SeedNode Response[] - 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 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'.
- cassandra
Version 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.
- client
Certificates 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 stringOverride - 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 stringSubnet Id - 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 CertificateCertificates Response[] - 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 SeedNodes Node Response[] - 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 numberBackups - Number of hours to wait between taking a backup of the cluster. To disable backups, set this property to 0.
- prometheus
Endpoint SeedNode Response - Hostname or IP address where the Prometheus endpoint containing data about the managed Cassandra nodes can be reached.
- provisioning
State string - The status of the resource at the time the operation was called.
- repair
Enabled 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[SeedNode Response] - 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_ stroverride - 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_ strsubnet_ id - 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_ Sequence[Certificatecertificates Response] - 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_ Sequence[Seednodes Node Response] - 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_ intbackups - Number of hours to wait between taking a backup of the cluster. To disable backups, set this property to 0.
- prometheus_
endpoint SeedNode Response - 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.
- gossip
Certificates 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.
- seed
Nodes 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.
- authentication
Method 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'.
- cassandra
Version 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.
- client
Certificates 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.
- cluster
Name StringOverride - 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 StringSubnet Id - 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 List<Property Map>Certificates - 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 List<Property Map>Nodes - 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 NumberBackups - Number of hours to wait between taking a backup of the cluster. To disable backups, set this property to 0.
- prometheus
Endpoint Property Map - Hostname or IP address where the Prometheus endpoint containing data about the managed Cassandra nodes can be reached.
- provisioning
State String - The status of the resource at the time the operation was called.
- repair
Enabled 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, ManagedCassandraProvisioningStateArgs
- Creating
- Creating
- Updating
- Updating
- Deleting
- Deleting
- Succeeded
- Succeeded
- Failed
- Failed
- Canceled
- Canceled
- Managed
Cassandra Provisioning State Creating - Creating
- Managed
Cassandra Provisioning State Updating - Updating
- Managed
Cassandra Provisioning State Deleting - Deleting
- Managed
Cassandra Provisioning State Succeeded - Succeeded
- Managed
Cassandra Provisioning State Failed - Failed
- Managed
Cassandra Provisioning State 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
- "Creating"
- Creating
- "Updating"
- Updating
- "Deleting"
- Deleting
- "Succeeded"
- Succeeded
- "Failed"
- Failed
- "Canceled"
- Canceled
ManagedServiceIdentity, ManagedServiceIdentityArgs
- Type
Pulumi.
Azure Native. Document DB. Resource Identity Type - 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 Dictionary<string, object>Identities - 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
Resource
Identity Type - 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 map[string]interface{}Identities - 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
Resource
Identity Type - 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 Map<String,Object>Identities - 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
Resource
Identity Type - 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 {[key: string]: any}Identities - 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
Resource
Identity Type - 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_ Mapping[str, Any]identities - 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
"System
Assigned" | "User Assigned" | "System Assigned,User Assigned" | "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.
- user
Assigned Map<Any>Identities - 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, ManagedServiceIdentityResponseArgs
- Principal
Id string - The principal id of the system assigned identity. This property will only be provided for a system assigned identity.
- Tenant
Id 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.
- User
Assigned Dictionary<string, Pulumi.Identities Azure Native. Document DB. Inputs. Managed Service Identity Response User Assigned Identities> - 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 string - The principal id of the system assigned identity. This property will only be provided for a system assigned identity.
- Tenant
Id 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.
- User
Assigned map[string]ManagedIdentities Service Identity Response User Assigned Identities - 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 String - The principal id of the system assigned identity. This property will only be provided for a system assigned identity.
- tenant
Id 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.
- user
Assigned Map<String,ManagedIdentities Service Identity Response User Assigned Identities> - 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 string - The principal id of the system assigned identity. This property will only be provided for a system assigned identity.
- tenant
Id 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.
- user
Assigned {[key: string]: ManagedIdentities Service Identity Response User Assigned Identities} - 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_ Mapping[str, Managedidentities Service Identity Response User Assigned Identities] - 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 String - The principal id of the system assigned identity. This property will only be provided for a system assigned identity.
- tenant
Id 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.
- user
Assigned Map<Property Map>Identities - 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, ManagedServiceIdentityResponseUserAssignedIdentitiesArgs
- Client
Id string - The client id of user assigned identity.
- Principal
Id string - The principal id of user assigned identity.
- Client
Id string - The client id of user assigned identity.
- Principal
Id string - The principal id of user assigned identity.
- client
Id String - The client id of user assigned identity.
- principal
Id String - The principal id of user assigned identity.
- client
Id string - The client id of user assigned identity.
- principal
Id 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.
- client
Id String - The client id of user assigned identity.
- principal
Id String - The principal id of user assigned identity.
ResourceIdentityType, ResourceIdentityTypeArgs
- System
Assigned - SystemAssigned
- User
Assigned - UserAssigned
- System
Assigned_User Assigned - SystemAssigned,UserAssigned
- None
- None
- Resource
Identity Type System Assigned - SystemAssigned
- Resource
Identity Type User Assigned - UserAssigned
- Resource
Identity Type_System Assigned_User Assigned - SystemAssigned,UserAssigned
- Resource
Identity Type None - None
- System
Assigned - SystemAssigned
- User
Assigned - UserAssigned
- System
Assigned_User Assigned - SystemAssigned,UserAssigned
- None
- None
- System
Assigned - SystemAssigned
- User
Assigned - UserAssigned
- System
Assigned_User Assigned - SystemAssigned,UserAssigned
- None
- None
- SYSTEM_ASSIGNED
- SystemAssigned
- USER_ASSIGNED
- UserAssigned
- SYSTEM_ASSIGNED_USER_ASSIGNED
- SystemAssigned,UserAssigned
- NONE
- None
- "System
Assigned" - SystemAssigned
- "User
Assigned" - UserAssigned
- "System
Assigned,User Assigned" - SystemAssigned,UserAssigned
- "None"
- None
SeedNode, SeedNodeArgs
- Ip
Address string - IP address of this seed node.
- Ip
Address string - IP address of this seed node.
- ip
Address String - IP address of this seed node.
- ip
Address string - IP address of this seed node.
- ip_
address str - IP address of this seed node.
- ip
Address String - IP address of this seed node.
SeedNodeResponse, SeedNodeResponseArgs
- Ip
Address string - IP address of this seed node.
- Ip
Address string - IP address of this seed node.
- ip
Address String - IP address of this seed node.
- ip
Address string - IP address of this seed node.
- ip_
address str - IP address of this seed node.
- ip
Address 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
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- azure-native-v1 pulumi/pulumi-azure-native
- License
- Apache-2.0