Representation of a Garnet cache cluster.
Uses Azure REST API version 2025-11-01-preview.
Example Usage
CosmosDBGarnetClusterCreate
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() =>
{
var garnetCluster = new AzureNative.CosmosDB.GarnetCluster("garnetCluster", new()
{
ClusterName = "garnet-prod",
Location = "West US",
Properties = new AzureNative.CosmosDB.Inputs.ClusterResourcePropertiesArgs
{
NodeCount = 4,
NodeSku = "Standard_DS13_v2",
ReplicationFactor = 2,
SubnetId = "/subscriptions/536e130b-d7d6-4ac7-98a5-de20d69588d2/resourceGroups/customer-vnet-rg/providers/Microsoft.Network/virtualNetworks/customer-vnet/subnets/management",
},
ResourceGroupName = "garnet-prod-rg",
Tags = null,
});
});
package main
import (
cosmosdb "github.com/pulumi/pulumi-azure-native-sdk/cosmosdb/v3"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := cosmosdb.NewGarnetCluster(ctx, "garnetCluster", &cosmosdb.GarnetClusterArgs{
ClusterName: pulumi.String("garnet-prod"),
Location: pulumi.String("West US"),
Properties: &cosmosdb.ClusterResourcePropertiesArgs{
NodeCount: pulumi.Int(4),
NodeSku: pulumi.String("Standard_DS13_v2"),
ReplicationFactor: pulumi.Int(2),
SubnetId: pulumi.String("/subscriptions/536e130b-d7d6-4ac7-98a5-de20d69588d2/resourceGroups/customer-vnet-rg/providers/Microsoft.Network/virtualNetworks/customer-vnet/subnets/management"),
},
ResourceGroupName: pulumi.String("garnet-prod-rg"),
Tags: pulumi.StringMap{},
})
if err != nil {
return err
}
return nil
})
}
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azurenative.cosmosdb.GarnetCluster;
import com.pulumi.azurenative.cosmosdb.GarnetClusterArgs;
import com.pulumi.azurenative.cosmosdb.inputs.ClusterResourcePropertiesArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
var garnetCluster = new GarnetCluster("garnetCluster", GarnetClusterArgs.builder()
.clusterName("garnet-prod")
.location("West US")
.properties(ClusterResourcePropertiesArgs.builder()
.nodeCount(4)
.nodeSku("Standard_DS13_v2")
.replicationFactor(2)
.subnetId("/subscriptions/536e130b-d7d6-4ac7-98a5-de20d69588d2/resourceGroups/customer-vnet-rg/providers/Microsoft.Network/virtualNetworks/customer-vnet/subnets/management")
.build())
.resourceGroupName("garnet-prod-rg")
.tags(Map.ofEntries(
))
.build());
}
}
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const garnetCluster = new azure_native.cosmosdb.GarnetCluster("garnetCluster", {
clusterName: "garnet-prod",
location: "West US",
properties: {
nodeCount: 4,
nodeSku: "Standard_DS13_v2",
replicationFactor: 2,
subnetId: "/subscriptions/536e130b-d7d6-4ac7-98a5-de20d69588d2/resourceGroups/customer-vnet-rg/providers/Microsoft.Network/virtualNetworks/customer-vnet/subnets/management",
},
resourceGroupName: "garnet-prod-rg",
tags: {},
});
import pulumi
import pulumi_azure_native as azure_native
garnet_cluster = azure_native.cosmosdb.GarnetCluster("garnetCluster",
cluster_name="garnet-prod",
location="West US",
properties={
"node_count": 4,
"node_sku": "Standard_DS13_v2",
"replication_factor": 2,
"subnet_id": "/subscriptions/536e130b-d7d6-4ac7-98a5-de20d69588d2/resourceGroups/customer-vnet-rg/providers/Microsoft.Network/virtualNetworks/customer-vnet/subnets/management",
},
resource_group_name="garnet-prod-rg",
tags={})
resources:
garnetCluster:
type: azure-native:cosmosdb:GarnetCluster
properties:
clusterName: garnet-prod
location: West US
properties:
nodeCount: 4
nodeSku: Standard_DS13_v2
replicationFactor: 2
subnetId: /subscriptions/536e130b-d7d6-4ac7-98a5-de20d69588d2/resourceGroups/customer-vnet-rg/providers/Microsoft.Network/virtualNetworks/customer-vnet/subnets/management
resourceGroupName: garnet-prod-rg
tags: {}
Create GarnetCluster Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new GarnetCluster(name: string, args: GarnetClusterArgs, opts?: CustomResourceOptions);@overload
def GarnetCluster(resource_name: str,
args: GarnetClusterArgs,
opts: Optional[ResourceOptions] = None)
@overload
def GarnetCluster(resource_name: str,
opts: Optional[ResourceOptions] = None,
resource_group_name: Optional[str] = None,
cluster_name: Optional[str] = None,
location: Optional[str] = None,
properties: Optional[ClusterResourcePropertiesArgs] = None,
tags: Optional[Mapping[str, str]] = None)func NewGarnetCluster(ctx *Context, name string, args GarnetClusterArgs, opts ...ResourceOption) (*GarnetCluster, error)public GarnetCluster(string name, GarnetClusterArgs args, CustomResourceOptions? opts = null)
public GarnetCluster(String name, GarnetClusterArgs args)
public GarnetCluster(String name, GarnetClusterArgs args, CustomResourceOptions options)
type: azure-native:cosmosdb:GarnetCluster
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name string
- The unique name of the resource.
- args GarnetClusterArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args GarnetClusterArgs
- The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args GarnetClusterArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args GarnetClusterArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args GarnetClusterArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Constructor example
The following reference example uses placeholder values for all input properties.
var garnetClusterResource = new AzureNative.CosmosDB.GarnetCluster("garnetClusterResource", new()
{
ResourceGroupName = "string",
ClusterName = "string",
Location = "string",
Properties = new AzureNative.CosmosDB.Inputs.ClusterResourcePropertiesArgs
{
AllocationState = "string",
AuthenticationMethod = "string",
AvailabilityZone = false,
AzureConnectionMethod = "string",
CassandraAuditLoggingEnabled = false,
CassandraVersion = "string",
ClientCertificates = new[]
{
new AzureNative.CosmosDB.Inputs.CertificateArgs
{
Pem = "string",
},
},
ClusterNameOverride = "string",
ClusterType = "string",
Deallocated = false,
DelegatedManagementSubnetId = "string",
Extensions = new[]
{
"string",
},
ExternalGossipCertificates = new[]
{
new AzureNative.CosmosDB.Inputs.CertificateArgs
{
Pem = "string",
},
},
ExternalSeedNodes = new[]
{
new AzureNative.CosmosDB.Inputs.SeedNodeArgs
{
IpAddress = "string",
},
},
HoursBetweenBackups = 0,
InitialCassandraAdminPassword = "string",
NodeCount = 0,
NodeSku = "string",
PrometheusEndpoint = new AzureNative.CosmosDB.Inputs.SeedNodeArgs
{
IpAddress = "string",
},
ProvisionError = new AzureNative.CosmosDB.Inputs.CassandraErrorArgs
{
AdditionalErrorInfo = "string",
Code = "string",
Message = "string",
Target = "string",
},
ProvisioningState = "string",
RepairEnabled = false,
ReplicationFactor = 0,
RestoreFromBackupId = "string",
SubnetId = "string",
},
Tags =
{
{ "string", "string" },
},
});
example, err := cosmosdb.NewGarnetCluster(ctx, "garnetClusterResource", &cosmosdb.GarnetClusterArgs{
ResourceGroupName: pulumi.String("string"),
ClusterName: pulumi.String("string"),
Location: pulumi.String("string"),
Properties: &cosmosdb.ClusterResourcePropertiesArgs{
AllocationState: pulumi.String("string"),
AuthenticationMethod: pulumi.String("string"),
AvailabilityZone: pulumi.Bool(false),
AzureConnectionMethod: pulumi.String("string"),
CassandraAuditLoggingEnabled: pulumi.Bool(false),
CassandraVersion: pulumi.String("string"),
ClientCertificates: cosmosdb.CertificateArray{
&cosmosdb.CertificateArgs{
Pem: pulumi.String("string"),
},
},
ClusterNameOverride: pulumi.String("string"),
ClusterType: pulumi.String("string"),
Deallocated: pulumi.Bool(false),
DelegatedManagementSubnetId: pulumi.String("string"),
Extensions: pulumi.StringArray{
pulumi.String("string"),
},
ExternalGossipCertificates: cosmosdb.CertificateArray{
&cosmosdb.CertificateArgs{
Pem: pulumi.String("string"),
},
},
ExternalSeedNodes: cosmosdb.SeedNodeArray{
&cosmosdb.SeedNodeArgs{
IpAddress: pulumi.String("string"),
},
},
HoursBetweenBackups: pulumi.Int(0),
InitialCassandraAdminPassword: pulumi.String("string"),
NodeCount: pulumi.Int(0),
NodeSku: pulumi.String("string"),
PrometheusEndpoint: &cosmosdb.SeedNodeArgs{
IpAddress: pulumi.String("string"),
},
ProvisionError: &cosmosdb.CassandraErrorArgs{
AdditionalErrorInfo: pulumi.String("string"),
Code: pulumi.String("string"),
Message: pulumi.String("string"),
Target: pulumi.String("string"),
},
ProvisioningState: pulumi.String("string"),
RepairEnabled: pulumi.Bool(false),
ReplicationFactor: pulumi.Int(0),
RestoreFromBackupId: pulumi.String("string"),
SubnetId: pulumi.String("string"),
},
Tags: pulumi.StringMap{
"string": pulumi.String("string"),
},
})
var garnetClusterResource = new GarnetCluster("garnetClusterResource", GarnetClusterArgs.builder()
.resourceGroupName("string")
.clusterName("string")
.location("string")
.properties(ClusterResourcePropertiesArgs.builder()
.allocationState("string")
.authenticationMethod("string")
.availabilityZone(false)
.azureConnectionMethod("string")
.cassandraAuditLoggingEnabled(false)
.cassandraVersion("string")
.clientCertificates(CertificateArgs.builder()
.pem("string")
.build())
.clusterNameOverride("string")
.clusterType("string")
.deallocated(false)
.delegatedManagementSubnetId("string")
.extensions("string")
.externalGossipCertificates(CertificateArgs.builder()
.pem("string")
.build())
.externalSeedNodes(SeedNodeArgs.builder()
.ipAddress("string")
.build())
.hoursBetweenBackups(0)
.initialCassandraAdminPassword("string")
.nodeCount(0)
.nodeSku("string")
.prometheusEndpoint(SeedNodeArgs.builder()
.ipAddress("string")
.build())
.provisionError(CassandraErrorArgs.builder()
.additionalErrorInfo("string")
.code("string")
.message("string")
.target("string")
.build())
.provisioningState("string")
.repairEnabled(false)
.replicationFactor(0)
.restoreFromBackupId("string")
.subnetId("string")
.build())
.tags(Map.of("string", "string"))
.build());
garnet_cluster_resource = azure_native.cosmosdb.GarnetCluster("garnetClusterResource",
resource_group_name="string",
cluster_name="string",
location="string",
properties={
"allocation_state": "string",
"authentication_method": "string",
"availability_zone": False,
"azure_connection_method": "string",
"cassandra_audit_logging_enabled": False,
"cassandra_version": "string",
"client_certificates": [{
"pem": "string",
}],
"cluster_name_override": "string",
"cluster_type": "string",
"deallocated": False,
"delegated_management_subnet_id": "string",
"extensions": ["string"],
"external_gossip_certificates": [{
"pem": "string",
}],
"external_seed_nodes": [{
"ip_address": "string",
}],
"hours_between_backups": 0,
"initial_cassandra_admin_password": "string",
"node_count": 0,
"node_sku": "string",
"prometheus_endpoint": {
"ip_address": "string",
},
"provision_error": {
"additional_error_info": "string",
"code": "string",
"message": "string",
"target": "string",
},
"provisioning_state": "string",
"repair_enabled": False,
"replication_factor": 0,
"restore_from_backup_id": "string",
"subnet_id": "string",
},
tags={
"string": "string",
})
const garnetClusterResource = new azure_native.cosmosdb.GarnetCluster("garnetClusterResource", {
resourceGroupName: "string",
clusterName: "string",
location: "string",
properties: {
allocationState: "string",
authenticationMethod: "string",
availabilityZone: false,
azureConnectionMethod: "string",
cassandraAuditLoggingEnabled: false,
cassandraVersion: "string",
clientCertificates: [{
pem: "string",
}],
clusterNameOverride: "string",
clusterType: "string",
deallocated: false,
delegatedManagementSubnetId: "string",
extensions: ["string"],
externalGossipCertificates: [{
pem: "string",
}],
externalSeedNodes: [{
ipAddress: "string",
}],
hoursBetweenBackups: 0,
initialCassandraAdminPassword: "string",
nodeCount: 0,
nodeSku: "string",
prometheusEndpoint: {
ipAddress: "string",
},
provisionError: {
additionalErrorInfo: "string",
code: "string",
message: "string",
target: "string",
},
provisioningState: "string",
repairEnabled: false,
replicationFactor: 0,
restoreFromBackupId: "string",
subnetId: "string",
},
tags: {
string: "string",
},
});
type: azure-native:cosmosdb:GarnetCluster
properties:
clusterName: string
location: string
properties:
allocationState: string
authenticationMethod: string
availabilityZone: false
azureConnectionMethod: string
cassandraAuditLoggingEnabled: false
cassandraVersion: string
clientCertificates:
- pem: string
clusterNameOverride: string
clusterType: string
deallocated: false
delegatedManagementSubnetId: string
extensions:
- string
externalGossipCertificates:
- pem: string
externalSeedNodes:
- ipAddress: string
hoursBetweenBackups: 0
initialCassandraAdminPassword: string
nodeCount: 0
nodeSku: string
prometheusEndpoint:
ipAddress: string
provisionError:
additionalErrorInfo: string
code: string
message: string
target: string
provisioningState: string
repairEnabled: false
replicationFactor: 0
restoreFromBackupId: string
subnetId: string
resourceGroupName: string
tags:
string: string
GarnetCluster Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.
The GarnetCluster resource accepts the following input properties:
- Resource
Group stringName - The name of the resource group. The name is case insensitive.
- Cluster
Name string - Garnet cache cluster name.
- Location string
- The geo-location where the resource lives
- Properties
Pulumi.
Azure Native. Cosmos DB. Inputs. Cluster Resource Properties - Properties of a Garnet cache cluster.
- Dictionary<string, string>
- Resource tags.
- Resource
Group stringName - The name of the resource group. The name is case insensitive.
- Cluster
Name string - Garnet cache cluster name.
- Location string
- The geo-location where the resource lives
- Properties
Cluster
Resource Properties Args - Properties of a Garnet cache cluster.
- map[string]string
- Resource tags.
- resource
Group StringName - The name of the resource group. The name is case insensitive.
- cluster
Name String - Garnet cache cluster name.
- location String
- The geo-location where the resource lives
- properties
Cluster
Resource Properties - Properties of a Garnet cache cluster.
- Map<String,String>
- Resource tags.
- resource
Group stringName - The name of the resource group. The name is case insensitive.
- cluster
Name string - Garnet cache cluster name.
- location string
- The geo-location where the resource lives
- properties
Cluster
Resource Properties - Properties of a Garnet cache cluster.
- {[key: string]: string}
- Resource tags.
- resource_
group_ strname - The name of the resource group. The name is case insensitive.
- cluster_
name str - Garnet cache cluster name.
- location str
- The geo-location where the resource lives
- properties
Cluster
Resource Properties Args - Properties of a Garnet cache cluster.
- Mapping[str, str]
- Resource tags.
- resource
Group StringName - The name of the resource group. The name is case insensitive.
- cluster
Name String - Garnet cache cluster name.
- location String
- The geo-location where the resource lives
- properties Property Map
- Properties of a Garnet cache cluster.
- Map<String>
- Resource tags.
Outputs
All input properties are implicitly available as output properties. Additionally, the GarnetCluster resource produces the following output properties:
- Azure
Api stringVersion - The Azure API version of the resource.
- Id string
- The provider-assigned unique ID for this managed resource.
- Name string
- The name of the resource
- System
Data Pulumi.Azure Native. Cosmos DB. Outputs. System Data Response - Azure Resource Manager metadata containing createdBy and modifiedBy information.
- Type string
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- Azure
Api stringVersion - The Azure API version of the resource.
- Id string
- The provider-assigned unique ID for this managed resource.
- Name string
- The name of the resource
- System
Data SystemData Response - Azure Resource Manager metadata containing createdBy and modifiedBy information.
- Type string
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- azure
Api StringVersion - The Azure API version of the resource.
- id String
- The provider-assigned unique ID for this managed resource.
- name String
- The name of the resource
- system
Data SystemData Response - Azure Resource Manager metadata containing createdBy and modifiedBy information.
- type String
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- azure
Api stringVersion - The Azure API version of the resource.
- id string
- The provider-assigned unique ID for this managed resource.
- name string
- The name of the resource
- system
Data SystemData Response - Azure Resource Manager metadata containing createdBy and modifiedBy information.
- type string
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- azure_
api_ strversion - The Azure API version of the resource.
- id str
- The provider-assigned unique ID for this managed resource.
- name str
- The name of the resource
- system_
data SystemData Response - Azure Resource Manager metadata containing createdBy and modifiedBy information.
- type str
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- azure
Api StringVersion - The Azure API version of the resource.
- id String
- The provider-assigned unique ID for this managed resource.
- name String
- The name of the resource
- system
Data Property Map - Azure Resource Manager metadata containing createdBy and modifiedBy information.
- type String
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
Supporting Types
AllocationState, AllocationStateArgs
- Active
Active- Deallocated
Deallocated
- Allocation
State Active Active- Allocation
State Deallocated Deallocated
- Active
Active- Deallocated
Deallocated
- Active
Active- Deallocated
Deallocated
- ACTIVE
Active- DEALLOCATED
Deallocated
- "Active"
Active- "Deallocated"
Deallocated
AuthenticationMethod, AuthenticationMethodArgs
- None
None- Cassandra
Cassandra- Ldap
Ldap
- Authentication
Method None None- Authentication
Method Cassandra Cassandra- Authentication
Method Ldap Ldap
- None
None- Cassandra
Cassandra- Ldap
Ldap
- None
None- Cassandra
Cassandra- Ldap
Ldap
- NONE
None- CASSANDRA
Cassandra- LDAP
Ldap
- "None"
None- "Cassandra"
Cassandra- "Ldap"
Ldap
AzureConnectionType, AzureConnectionTypeArgs
- None
None- VPN
VPN
- Azure
Connection Type None None- Azure
Connection Type VPN VPN
- None
None- VPN
VPN
- None
None- VPN
VPN
- NONE
None- VPN
VPN
- "None"
None- "VPN"
VPN
CassandraError, CassandraErrorArgs
- Additional
Error stringInfo - Additional information about the error.
- Code string
- The code of error that occurred.
- Message string
- The message of the error.
- Target string
- The target resource of the error.
- Additional
Error stringInfo - Additional information about the error.
- Code string
- The code of error that occurred.
- Message string
- The message of the error.
- Target string
- The target resource of the error.
- additional
Error StringInfo - Additional information about the error.
- code String
- The code of error that occurred.
- message String
- The message of the error.
- target String
- The target resource of the error.
- additional
Error stringInfo - Additional information about the error.
- code string
- The code of error that occurred.
- message string
- The message of the error.
- target string
- The target resource of the error.
- additional_
error_ strinfo - Additional information about the error.
- code str
- The code of error that occurred.
- message str
- The message of the error.
- target str
- The target resource of the error.
- additional
Error StringInfo - Additional information about the error.
- code String
- The code of error that occurred.
- message String
- The message of the error.
- target String
- The target resource of the error.
Certificate, CertificateArgs
- Pem string
- PEM formatted public key.
- Pem string
- PEM formatted public key.
- pem String
- PEM formatted public key.
- pem string
- PEM formatted public key.
- pem str
- PEM formatted public key.
- pem String
- PEM formatted public key.
ClusterResourceProperties, ClusterResourcePropertiesArgs
Properties of a Garnet cache cluster.- Allocation
State string | Pulumi.Azure Native. Cosmos DB. Allocation State - Allocation state of the cluster and data center resources. Active implies the virtual machines of the cluster are allocated, deallocated implies virtual machines and resources are deallocated.
- Authentication
Method string | Pulumi.Azure Native. Cosmos 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'.
- Availability
Zone bool - If the data center has Availability Zone support, apply it to the Virtual Machine ScaleSet that host the garnet cluster virtual machines.
- Azure
Connection string | Pulumi.Method Azure Native. Cosmos DB. Azure Connection Type - How to connect to the azure services needed for running the cluster
- Cassandra
Audit boolLogging Enabled - Whether Cassandra audit logging is enabled
- 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. Cosmos 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.
- Cluster
Type string | Pulumi.Azure Native. Cosmos DB. Cluster Type - Type of the cluster. If set to Production, some operations might not be permitted on cluster.
- Deallocated bool
- Whether the cluster and associated data centers has been deallocated.
- Delegated
Management 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/'
- Extensions List<string>
- Extensions to be added or updated on cluster.
- External
Gossip List<Pulumi.Certificates Azure Native. Cosmos 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. Cosmos 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 - (Deprecated) Number of hours to wait between taking a backup of the cluster.
- 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'.
- Node
Count int - Number of nodes
- Node
Sku string - Virtual Machine SKU used for clusters. Default value is Standard_DS14_v2
- Prometheus
Endpoint Pulumi.Azure Native. Cosmos DB. Inputs. Seed Node - Hostname or IP address where the Prometheus endpoint containing data about the managed Cassandra nodes can be reached.
- Provision
Error Pulumi.Azure Native. Cosmos DB. Inputs. Cassandra Error - Error related to resource provisioning.
- Provisioning
State string | Pulumi.Azure Native. Cosmos 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.
- Replication
Factor int - Number of copies of data maintained by the cluster
- 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.
- Subnet
Id string - Resource id of a subnet that this cluster's management service should have its network interface attached to. The subnet must be routable to all subnets that will be delegated to data centers. The resource id must be of the form '/subscriptions//resourceGroups//providers/Microsoft.Network/virtualNetworks//subnets/'
- Allocation
State string | AllocationState - Allocation state of the cluster and data center resources. Active implies the virtual machines of the cluster are allocated, deallocated implies virtual machines and resources are deallocated.
- 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'.
- Availability
Zone bool - If the data center has Availability Zone support, apply it to the Virtual Machine ScaleSet that host the garnet cluster virtual machines.
- Azure
Connection string | AzureMethod Connection Type - How to connect to the azure services needed for running the cluster
- Cassandra
Audit boolLogging Enabled - Whether Cassandra audit logging is enabled
- 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.
- Cluster
Type string | ClusterType - Type of the cluster. If set to Production, some operations might not be permitted on cluster.
- Deallocated bool
- Whether the cluster and associated data centers has been deallocated.
- 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/'
- Extensions []string
- Extensions to be added or updated on cluster.
- 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 - (Deprecated) Number of hours to wait between taking a backup of the cluster.
- 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'.
- Node
Count int - Number of nodes
- Node
Sku string - Virtual Machine SKU used for clusters. Default value is Standard_DS14_v2
- Prometheus
Endpoint SeedNode - Hostname or IP address where the Prometheus endpoint containing data about the managed Cassandra nodes can be reached.
- Provision
Error CassandraError - Error related to resource provisioning.
- Provisioning
State 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.
- Replication
Factor int - Number of copies of data maintained by the cluster
- 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.
- Subnet
Id string - Resource id of a subnet that this cluster's management service should have its network interface attached to. The subnet must be routable to all subnets that will be delegated to data centers. The resource id must be of the form '/subscriptions//resourceGroups//providers/Microsoft.Network/virtualNetworks//subnets/'
- allocation
State String | AllocationState - Allocation state of the cluster and data center resources. Active implies the virtual machines of the cluster are allocated, deallocated implies virtual machines and resources are deallocated.
- 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'.
- availability
Zone Boolean - If the data center has Availability Zone support, apply it to the Virtual Machine ScaleSet that host the garnet cluster virtual machines.
- azure
Connection String | AzureMethod Connection Type - How to connect to the azure services needed for running the cluster
- cassandra
Audit BooleanLogging Enabled - Whether Cassandra audit logging is enabled
- 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.
- cluster
Type String | ClusterType - Type of the cluster. If set to Production, some operations might not be permitted on cluster.
- deallocated Boolean
- Whether the cluster and associated data centers has been deallocated.
- 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/'
- extensions List<String>
- Extensions to be added or updated on cluster.
- 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 - (Deprecated) Number of hours to wait between taking a backup of the cluster.
- 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'.
- node
Count Integer - Number of nodes
- node
Sku String - Virtual Machine SKU used for clusters. Default value is Standard_DS14_v2
- prometheus
Endpoint SeedNode - Hostname or IP address where the Prometheus endpoint containing data about the managed Cassandra nodes can be reached.
- provision
Error CassandraError - Error related to resource provisioning.
- provisioning
State 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.
- replication
Factor Integer - Number of copies of data maintained by the cluster
- 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.
- subnet
Id String - Resource id of a subnet that this cluster's management service should have its network interface attached to. The subnet must be routable to all subnets that will be delegated to data centers. The resource id must be of the form '/subscriptions//resourceGroups//providers/Microsoft.Network/virtualNetworks//subnets/'
- allocation
State string | AllocationState - Allocation state of the cluster and data center resources. Active implies the virtual machines of the cluster are allocated, deallocated implies virtual machines and resources are deallocated.
- 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'.
- availability
Zone boolean - If the data center has Availability Zone support, apply it to the Virtual Machine ScaleSet that host the garnet cluster virtual machines.
- azure
Connection string | AzureMethod Connection Type - How to connect to the azure services needed for running the cluster
- cassandra
Audit booleanLogging Enabled - Whether Cassandra audit logging is enabled
- 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.
- cluster
Type string | ClusterType - Type of the cluster. If set to Production, some operations might not be permitted on cluster.
- deallocated boolean
- Whether the cluster and associated data centers has been deallocated.
- 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/'
- extensions string[]
- Extensions to be added or updated on cluster.
- 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 - (Deprecated) Number of hours to wait between taking a backup of the cluster.
- 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'.
- node
Count number - Number of nodes
- node
Sku string - Virtual Machine SKU used for clusters. Default value is Standard_DS14_v2
- prometheus
Endpoint SeedNode - Hostname or IP address where the Prometheus endpoint containing data about the managed Cassandra nodes can be reached.
- provision
Error CassandraError - Error related to resource provisioning.
- provisioning
State 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.
- replication
Factor number - Number of copies of data maintained by the cluster
- 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.
- subnet
Id string - Resource id of a subnet that this cluster's management service should have its network interface attached to. The subnet must be routable to all subnets that will be delegated to data centers. The resource id must be of the form '/subscriptions//resourceGroups//providers/Microsoft.Network/virtualNetworks//subnets/'
- allocation_
state str | AllocationState - Allocation state of the cluster and data center resources. Active implies the virtual machines of the cluster are allocated, deallocated implies virtual machines and resources are deallocated.
- authentication_
method str | AuthenticationMethod - Which authentication method Cassandra should use to authenticate clients. 'None' turns off authentication, so should not be used except in emergencies. 'Cassandra' is the default password based authentication. The default is 'Cassandra'.
- availability_
zone bool - If the data center has Availability Zone support, apply it to the Virtual Machine ScaleSet that host the garnet cluster virtual machines.
- azure_
connection_ str | Azuremethod Connection Type - How to connect to the azure services needed for running the cluster
- cassandra_
audit_ boollogging_ enabled - Whether Cassandra audit logging is enabled
- cassandra_
version str - Which version of Cassandra should this cluster converge to running (e.g., 3.11). When updated, the cluster may take some time to migrate to the new version.
- client_
certificates Sequence[Certificate] - List of TLS certificates used to authorize clients connecting to the cluster. All connections are TLS encrypted whether clientCertificates is set or not, but if clientCertificates is set, the managed Cassandra cluster will reject all connections not bearing a TLS client certificate that can be validated from one or more of the public certificates in this property.
- cluster_
name_ 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.
- cluster_
type str | ClusterType - Type of the cluster. If set to Production, some operations might not be permitted on cluster.
- deallocated bool
- Whether the cluster and associated data centers has been deallocated.
- delegated_
management_ 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/'
- extensions Sequence[str]
- Extensions to be added or updated on cluster.
- 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 - (Deprecated) Number of hours to wait between taking a backup of the cluster.
- 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'.
- node_
count int - Number of nodes
- node_
sku str - Virtual Machine SKU used for clusters. Default value is Standard_DS14_v2
- prometheus_
endpoint SeedNode - Hostname or IP address where the Prometheus endpoint containing data about the managed Cassandra nodes can be reached.
- provision_
error CassandraError - Error related to resource provisioning.
- provisioning_
state str | 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.
- replication_
factor int - Number of copies of data maintained by the cluster
- 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.
- 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/'
- allocation
State String | "Active" | "Deallocated" - Allocation state of the cluster and data center resources. Active implies the virtual machines of the cluster are allocated, deallocated implies virtual machines and resources are deallocated.
- authentication
Method String | "None" | "Cassandra" | "Ldap" - Which authentication method Cassandra should use to authenticate clients. 'None' turns off authentication, so should not be used except in emergencies. 'Cassandra' is the default password based authentication. The default is 'Cassandra'.
- availability
Zone Boolean - If the data center has Availability Zone support, apply it to the Virtual Machine ScaleSet that host the garnet cluster virtual machines.
- azure
Connection String | "None" | "VPN"Method - How to connect to the azure services needed for running the cluster
- cassandra
Audit BooleanLogging Enabled - Whether Cassandra audit logging is enabled
- 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.
- cluster
Type String | "Production" | "NonProduction" - Type of the cluster. If set to Production, some operations might not be permitted on cluster.
- deallocated Boolean
- Whether the cluster and associated data centers has been deallocated.
- 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/'
- extensions List<String>
- Extensions to be added or updated on cluster.
- 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 - (Deprecated) Number of hours to wait between taking a backup of the cluster.
- 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'.
- node
Count Number - Number of nodes
- node
Sku String - Virtual Machine SKU used for clusters. Default value is Standard_DS14_v2
- prometheus
Endpoint Property Map - Hostname or IP address where the Prometheus endpoint containing data about the managed Cassandra nodes can be reached.
- provision
Error Property Map - Error related to resource provisioning.
- 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.
- replication
Factor Number - Number of copies of data maintained by the cluster
- 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.
- subnet
Id String - Resource id of a subnet that this cluster's management service should have its network interface attached to. The subnet must be routable to all subnets that will be delegated to data centers. The resource id must be of the form '/subscriptions//resourceGroups//providers/Microsoft.Network/virtualNetworks//subnets/'
ClusterResourceResponseEndPoints, ClusterResourceResponseEndPointsArgs
- ip_
address str - Ipv4 address of the endpoint
- port int
- Port number
ClusterResourceResponsePropertiesV1, ClusterResourceResponsePropertiesV1Args
Properties of a Garnet cache cluster.- End
Points List<Pulumi.Azure Native. Cosmos DB. Inputs. Cluster Resource Response End Points> - endpoints for clients to connect to the cluster.
- Provisioning
State string - The status of the resource at the time the operation was called.
- Allocation
State string - Allocation state of the cluster and data center resources. Active implies the virtual machines of the cluster are allocated, deallocated implies virtual machines and resources are deallocated.
- Availability
Zone bool - If the data center has Availability Zone support, apply it to the Virtual Machine ScaleSet that host the garnet cluster virtual machines.
- Cluster
Type string - Type of the cluster. If set to Production, some operations might not be permitted on cluster.
- Extensions List<string>
- Extensions to be added or updated on cluster.
- Node
Count int - Number of nodes
- Node
Sku string - Virtual Machine SKU used for clusters. Default value is Standard_DS14_v2
- Provision
Error Pulumi.Azure Native. Cosmos DB. Inputs. Error Detail Response - Error related to resource provisioning.
- Replication
Factor int - Number of copies of data maintained by the cluster
- Subnet
Id string - Resource id of a subnet that this cluster's management service should have its network interface attached to. The subnet must be routable to all subnets that will be delegated to data centers. The resource id must be of the form '/subscriptions//resourceGroups//providers/Microsoft.Network/virtualNetworks//subnets/'
- End
Points []ClusterResource Response End Points - endpoints for clients to connect to the cluster.
- Provisioning
State string - The status of the resource at the time the operation was called.
- Allocation
State string - Allocation state of the cluster and data center resources. Active implies the virtual machines of the cluster are allocated, deallocated implies virtual machines and resources are deallocated.
- Availability
Zone bool - If the data center has Availability Zone support, apply it to the Virtual Machine ScaleSet that host the garnet cluster virtual machines.
- Cluster
Type string - Type of the cluster. If set to Production, some operations might not be permitted on cluster.
- Extensions []string
- Extensions to be added or updated on cluster.
- Node
Count int - Number of nodes
- Node
Sku string - Virtual Machine SKU used for clusters. Default value is Standard_DS14_v2
- Provision
Error ErrorDetail Response - Error related to resource provisioning.
- Replication
Factor int - Number of copies of data maintained by the cluster
- Subnet
Id string - Resource id of a subnet that this cluster's management service should have its network interface attached to. The subnet must be routable to all subnets that will be delegated to data centers. The resource id must be of the form '/subscriptions//resourceGroups//providers/Microsoft.Network/virtualNetworks//subnets/'
- end
Points List<ClusterResource Response End Points> - endpoints for clients to connect to the cluster.
- provisioning
State String - The status of the resource at the time the operation was called.
- allocation
State String - Allocation state of the cluster and data center resources. Active implies the virtual machines of the cluster are allocated, deallocated implies virtual machines and resources are deallocated.
- availability
Zone Boolean - If the data center has Availability Zone support, apply it to the Virtual Machine ScaleSet that host the garnet cluster virtual machines.
- cluster
Type String - Type of the cluster. If set to Production, some operations might not be permitted on cluster.
- extensions List<String>
- Extensions to be added or updated on cluster.
- node
Count Integer - Number of nodes
- node
Sku String - Virtual Machine SKU used for clusters. Default value is Standard_DS14_v2
- provision
Error ErrorDetail Response - Error related to resource provisioning.
- replication
Factor Integer - Number of copies of data maintained by the cluster
- subnet
Id String - Resource id of a subnet that this cluster's management service should have its network interface attached to. The subnet must be routable to all subnets that will be delegated to data centers. The resource id must be of the form '/subscriptions//resourceGroups//providers/Microsoft.Network/virtualNetworks//subnets/'
- end
Points ClusterResource Response End Points[] - endpoints for clients to connect to the cluster.
- provisioning
State string - The status of the resource at the time the operation was called.
- allocation
State string - Allocation state of the cluster and data center resources. Active implies the virtual machines of the cluster are allocated, deallocated implies virtual machines and resources are deallocated.
- availability
Zone boolean - If the data center has Availability Zone support, apply it to the Virtual Machine ScaleSet that host the garnet cluster virtual machines.
- cluster
Type string - Type of the cluster. If set to Production, some operations might not be permitted on cluster.
- extensions string[]
- Extensions to be added or updated on cluster.
- node
Count number - Number of nodes
- node
Sku string - Virtual Machine SKU used for clusters. Default value is Standard_DS14_v2
- provision
Error ErrorDetail Response - Error related to resource provisioning.
- replication
Factor number - Number of copies of data maintained by the cluster
- subnet
Id string - Resource id of a subnet that this cluster's management service should have its network interface attached to. The subnet must be routable to all subnets that will be delegated to data centers. The resource id must be of the form '/subscriptions//resourceGroups//providers/Microsoft.Network/virtualNetworks//subnets/'
- end_
points Sequence[ClusterResource Response End Points] - endpoints for clients to connect to the cluster.
- provisioning_
state str - The status of the resource at the time the operation was called.
- allocation_
state str - Allocation state of the cluster and data center resources. Active implies the virtual machines of the cluster are allocated, deallocated implies virtual machines and resources are deallocated.
- availability_
zone bool - If the data center has Availability Zone support, apply it to the Virtual Machine ScaleSet that host the garnet cluster virtual machines.
- cluster_
type str - Type of the cluster. If set to Production, some operations might not be permitted on cluster.
- extensions Sequence[str]
- Extensions to be added or updated on cluster.
- node_
count int - Number of nodes
- node_
sku str - Virtual Machine SKU used for clusters. Default value is Standard_DS14_v2
- provision_
error ErrorDetail Response - Error related to resource provisioning.
- replication_
factor int - Number of copies of data maintained by the cluster
- subnet_
id str - Resource id of a subnet that this cluster's management service should have its network interface attached to. The subnet must be routable to all subnets that will be delegated to data centers. The resource id must be of the form '/subscriptions//resourceGroups//providers/Microsoft.Network/virtualNetworks//subnets/'
- end
Points List<Property Map> - endpoints for clients to connect to the cluster.
- provisioning
State String - The status of the resource at the time the operation was called.
- allocation
State String - Allocation state of the cluster and data center resources. Active implies the virtual machines of the cluster are allocated, deallocated implies virtual machines and resources are deallocated.
- availability
Zone Boolean - If the data center has Availability Zone support, apply it to the Virtual Machine ScaleSet that host the garnet cluster virtual machines.
- cluster
Type String - Type of the cluster. If set to Production, some operations might not be permitted on cluster.
- extensions List<String>
- Extensions to be added or updated on cluster.
- node
Count Number - Number of nodes
- node
Sku String - Virtual Machine SKU used for clusters. Default value is Standard_DS14_v2
- provision
Error Property Map - Error related to resource provisioning.
- replication
Factor Number - Number of copies of data maintained by the cluster
- subnet
Id String - Resource id of a subnet that this cluster's management service should have its network interface attached to. The subnet must be routable to all subnets that will be delegated to data centers. The resource id must be of the form '/subscriptions//resourceGroups//providers/Microsoft.Network/virtualNetworks//subnets/'
ClusterType, ClusterTypeArgs
- Production
Production- Non
Production NonProduction
- Cluster
Type Production Production- Cluster
Type Non Production NonProduction
- Production
Production- Non
Production NonProduction
- Production
Production- Non
Production NonProduction
- PRODUCTION
Production- NON_PRODUCTION
NonProduction
- "Production"
Production- "Non
Production" NonProduction
ErrorAdditionalInfoResponse, ErrorAdditionalInfoResponseArgs
The resource management error additional info.ErrorDetailResponse, ErrorDetailResponseArgs
The error detail.- Additional
Info List<Pulumi.Azure Native. Cosmos DB. Inputs. Error Additional Info Response> - The error additional info.
- Code string
- The error code.
- Details
List<Pulumi.
Azure Native. Cosmos DB. Inputs. Error Detail Response> - The error details.
- Message string
- The error message.
- Target string
- The error target.
- Additional
Info []ErrorAdditional Info Response - The error additional info.
- Code string
- The error code.
- Details
[]Error
Detail Response - The error details.
- Message string
- The error message.
- Target string
- The error target.
- additional
Info List<ErrorAdditional Info Response> - The error additional info.
- code String
- The error code.
- details
List<Error
Detail Response> - The error details.
- message String
- The error message.
- target String
- The error target.
- additional
Info ErrorAdditional Info Response[] - The error additional info.
- code string
- The error code.
- details
Error
Detail Response[] - The error details.
- message string
- The error message.
- target string
- The error target.
- additional_
info Sequence[ErrorAdditional Info Response] - The error additional info.
- code str
- The error code.
- details
Sequence[Error
Detail Response] - The error details.
- message str
- The error message.
- target str
- The error target.
- additional
Info List<Property Map> - The error additional info.
- code String
- The error code.
- details List<Property Map>
- The error details.
- message String
- The error message.
- target String
- The error target.
ManagedCassandraProvisioningState, ManagedCassandraProvisioningStateArgs
- Creating
Creating- Updating
Updating- Deleting
Deleting- Succeeded
Succeeded- Failed
Failed- Canceled
Canceled
- 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
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.
SystemDataResponse, SystemDataResponseArgs
Metadata pertaining to creation and last modification of the resource.- Created
At string - The timestamp of resource creation (UTC).
- Created
By string - The identity that created the resource.
- Created
By stringType - The type of identity that created the resource.
- Last
Modified stringAt - The timestamp of resource last modification (UTC)
- Last
Modified stringBy - The identity that last modified the resource.
- Last
Modified stringBy Type - The type of identity that last modified the resource.
- Created
At string - The timestamp of resource creation (UTC).
- Created
By string - The identity that created the resource.
- Created
By stringType - The type of identity that created the resource.
- Last
Modified stringAt - The timestamp of resource last modification (UTC)
- Last
Modified stringBy - The identity that last modified the resource.
- Last
Modified stringBy Type - The type of identity that last modified the resource.
- created
At String - The timestamp of resource creation (UTC).
- created
By String - The identity that created the resource.
- created
By StringType - The type of identity that created the resource.
- last
Modified StringAt - The timestamp of resource last modification (UTC)
- last
Modified StringBy - The identity that last modified the resource.
- last
Modified StringBy Type - The type of identity that last modified the resource.
- created
At string - The timestamp of resource creation (UTC).
- created
By string - The identity that created the resource.
- created
By stringType - The type of identity that created the resource.
- last
Modified stringAt - The timestamp of resource last modification (UTC)
- last
Modified stringBy - The identity that last modified the resource.
- last
Modified stringBy Type - The type of identity that last modified the resource.
- created_
at str - The timestamp of resource creation (UTC).
- created_
by str - The identity that created the resource.
- created_
by_ strtype - The type of identity that created the resource.
- last_
modified_ strat - The timestamp of resource last modification (UTC)
- last_
modified_ strby - The identity that last modified the resource.
- last_
modified_ strby_ type - The type of identity that last modified the resource.
- created
At String - The timestamp of resource creation (UTC).
- created
By String - The identity that created the resource.
- created
By StringType - The type of identity that created the resource.
- last
Modified StringAt - The timestamp of resource last modification (UTC)
- last
Modified StringBy - The identity that last modified the resource.
- last
Modified StringBy Type - The type of identity that last modified the resource.
Import
An existing resource can be imported using its type token, name, and identifier, e.g.
$ pulumi import azure-native:cosmosdb:GarnetCluster garnet-prod /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DocumentDB/garnetClusters/{clusterName}
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- Azure Native pulumi/pulumi-azure-native
- License
- Apache-2.0
