DataCenterResourceResponseProperties

data class DataCenterResourceResponseProperties(val base64EncodedCassandraYamlFragment: String? = null, val dataCenterLocation: String? = null, val delegatedSubnetId: String? = null, val nodeCount: Int? = null, val provisioningState: String? = null, val seedNodes: List<SeedNodeResponse>)

Properties of a managed Cassandra data center.

Constructors

Link copied to clipboard
constructor(base64EncodedCassandraYamlFragment: String? = null, dataCenterLocation: String? = null, delegatedSubnetId: String? = null, nodeCount: Int? = null, provisioningState: String? = null, seedNodes: List<SeedNodeResponse>)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard

A fragment of a cassandra.yaml configuration file to be included in the cassandra.yaml for all nodes in this data center. The fragment should be Base64 encoded, and only a subset of keys are allowed.

Link copied to clipboard

The region this data center should be created in.

Link copied to clipboard

Resource id of a subnet the nodes in this data center should have their network interfaces connected to. The subnet must be in the same region specified in 'dataCenterLocation' and must be able to route to the subnet specified in the cluster's 'delegatedManagementSubnetId' property. This resource id will be of the form '/subscriptions//resourceGroups//providers/Microsoft.Network/virtualNetworks//subnets/'.

Link copied to clipboard
val nodeCount: Int? = null

The number of nodes the data center should have. This is the desired number. After it is set, it may take some time for the data center to be scaled to match. To monitor the number of nodes and their status, use the fetchNodeStatus method on the cluster.

Link copied to clipboard

The status of the resource at the time the operation was called.

Link copied to clipboard

IP addresses for seed nodes in this data center. This is for reference. Generally you will want to use the seedNodes property on the cluster, which aggregates the seed nodes from all data centers in the cluster.