azure-native.documentdb.CassandraResourceCassandraTable
Explore with Pulumi AI
An Azure Cosmos DB Cassandra table. Azure REST API version: 2023-04-15. Prior API version in Azure Native 1.x: 2021-03-15.
Other available API versions: 2019-08-01, 2023-03-15-preview, 2023-09-15, 2023-09-15-preview, 2023-11-15, 2023-11-15-preview, 2024-02-15-preview, 2024-05-15, 2024-05-15-preview, 2024-08-15, 2024-09-01-preview.
Example Usage
CosmosDBCassandraTableCreateUpdate
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() =>
{
var cassandraResourceCassandraTable = new AzureNative.DocumentDB.CassandraResourceCassandraTable("cassandraResourceCassandraTable", new()
{
AccountName = "ddb1",
KeyspaceName = "keyspaceName",
Location = "West US",
Options = null,
Resource = new AzureNative.DocumentDB.Inputs.CassandraTableResourceArgs
{
DefaultTtl = 100,
Id = "tableName",
Schema = new AzureNative.DocumentDB.Inputs.CassandraSchemaArgs
{
ClusterKeys = new[]
{
new AzureNative.DocumentDB.Inputs.ClusterKeyArgs
{
Name = "columnA",
OrderBy = "Asc",
},
},
Columns = new[]
{
new AzureNative.DocumentDB.Inputs.ColumnArgs
{
Name = "columnA",
Type = "Ascii",
},
},
PartitionKeys = new[]
{
new AzureNative.DocumentDB.Inputs.CassandraPartitionKeyArgs
{
Name = "columnA",
},
},
},
},
ResourceGroupName = "rg1",
TableName = "tableName",
Tags = null,
});
});
package main
import (
documentdb "github.com/pulumi/pulumi-azure-native-sdk/documentdb/v2"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := documentdb.NewCassandraResourceCassandraTable(ctx, "cassandraResourceCassandraTable", &documentdb.CassandraResourceCassandraTableArgs{
AccountName: pulumi.String("ddb1"),
KeyspaceName: pulumi.String("keyspaceName"),
Location: pulumi.String("West US"),
Options: nil,
Resource: &documentdb.CassandraTableResourceArgs{
DefaultTtl: pulumi.Int(100),
Id: pulumi.String("tableName"),
Schema: &documentdb.CassandraSchemaArgs{
ClusterKeys: documentdb.ClusterKeyArray{
&documentdb.ClusterKeyArgs{
Name: pulumi.String("columnA"),
OrderBy: pulumi.String("Asc"),
},
},
Columns: documentdb.ColumnArray{
&documentdb.ColumnArgs{
Name: pulumi.String("columnA"),
Type: pulumi.String("Ascii"),
},
},
PartitionKeys: documentdb.CassandraPartitionKeyArray{
&documentdb.CassandraPartitionKeyArgs{
Name: pulumi.String("columnA"),
},
},
},
},
ResourceGroupName: pulumi.String("rg1"),
TableName: pulumi.String("tableName"),
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.CassandraResourceCassandraTable;
import com.pulumi.azurenative.documentdb.CassandraResourceCassandraTableArgs;
import com.pulumi.azurenative.documentdb.inputs.CreateUpdateOptionsArgs;
import com.pulumi.azurenative.documentdb.inputs.CassandraTableResourceArgs;
import com.pulumi.azurenative.documentdb.inputs.CassandraSchemaArgs;
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 cassandraResourceCassandraTable = new CassandraResourceCassandraTable("cassandraResourceCassandraTable", CassandraResourceCassandraTableArgs.builder()
.accountName("ddb1")
.keyspaceName("keyspaceName")
.location("West US")
.options()
.resource(CassandraTableResourceArgs.builder()
.defaultTtl(100)
.id("tableName")
.schema(CassandraSchemaArgs.builder()
.clusterKeys(ClusterKeyArgs.builder()
.name("columnA")
.orderBy("Asc")
.build())
.columns(ColumnArgs.builder()
.name("columnA")
.type("Ascii")
.build())
.partitionKeys(CassandraPartitionKeyArgs.builder()
.name("columnA")
.build())
.build())
.build())
.resourceGroupName("rg1")
.tableName("tableName")
.tags()
.build());
}
}
import pulumi
import pulumi_azure_native as azure_native
cassandra_resource_cassandra_table = azure_native.documentdb.CassandraResourceCassandraTable("cassandraResourceCassandraTable",
account_name="ddb1",
keyspace_name="keyspaceName",
location="West US",
options={},
resource={
"default_ttl": 100,
"id": "tableName",
"schema": {
"cluster_keys": [{
"name": "columnA",
"order_by": "Asc",
}],
"columns": [{
"name": "columnA",
"type": "Ascii",
}],
"partition_keys": [{
"name": "columnA",
}],
},
},
resource_group_name="rg1",
table_name="tableName",
tags={})
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const cassandraResourceCassandraTable = new azure_native.documentdb.CassandraResourceCassandraTable("cassandraResourceCassandraTable", {
accountName: "ddb1",
keyspaceName: "keyspaceName",
location: "West US",
options: {},
resource: {
defaultTtl: 100,
id: "tableName",
schema: {
clusterKeys: [{
name: "columnA",
orderBy: "Asc",
}],
columns: [{
name: "columnA",
type: "Ascii",
}],
partitionKeys: [{
name: "columnA",
}],
},
},
resourceGroupName: "rg1",
tableName: "tableName",
tags: {},
});
resources:
cassandraResourceCassandraTable:
type: azure-native:documentdb:CassandraResourceCassandraTable
properties:
accountName: ddb1
keyspaceName: keyspaceName
location: West US
options: {}
resource:
defaultTtl: 100
id: tableName
schema:
clusterKeys:
- name: columnA
orderBy: Asc
columns:
- name: columnA
type: Ascii
partitionKeys:
- name: columnA
resourceGroupName: rg1
tableName: tableName
tags: {}
Create CassandraResourceCassandraTable Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new CassandraResourceCassandraTable(name: string, args: CassandraResourceCassandraTableArgs, opts?: CustomResourceOptions);
@overload
def CassandraResourceCassandraTable(resource_name: str,
args: CassandraResourceCassandraTableArgs,
opts: Optional[ResourceOptions] = None)
@overload
def CassandraResourceCassandraTable(resource_name: str,
opts: Optional[ResourceOptions] = None,
account_name: Optional[str] = None,
keyspace_name: Optional[str] = None,
resource: Optional[CassandraTableResourceArgs] = None,
resource_group_name: Optional[str] = None,
location: Optional[str] = None,
options: Optional[CreateUpdateOptionsArgs] = None,
table_name: Optional[str] = None,
tags: Optional[Mapping[str, str]] = None)
func NewCassandraResourceCassandraTable(ctx *Context, name string, args CassandraResourceCassandraTableArgs, opts ...ResourceOption) (*CassandraResourceCassandraTable, error)
public CassandraResourceCassandraTable(string name, CassandraResourceCassandraTableArgs args, CustomResourceOptions? opts = null)
public CassandraResourceCassandraTable(String name, CassandraResourceCassandraTableArgs args)
public CassandraResourceCassandraTable(String name, CassandraResourceCassandraTableArgs args, CustomResourceOptions options)
type: azure-native:documentdb:CassandraResourceCassandraTable
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 CassandraResourceCassandraTableArgs
- 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 CassandraResourceCassandraTableArgs
- 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 CassandraResourceCassandraTableArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args CassandraResourceCassandraTableArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args CassandraResourceCassandraTableArgs
- 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 cassandraResourceCassandraTableResource = new AzureNative.DocumentDB.CassandraResourceCassandraTable("cassandraResourceCassandraTableResource", new()
{
AccountName = "string",
KeyspaceName = "string",
Resource = new AzureNative.DocumentDB.Inputs.CassandraTableResourceArgs
{
Id = "string",
AnalyticalStorageTtl = 0,
DefaultTtl = 0,
Schema = new AzureNative.DocumentDB.Inputs.CassandraSchemaArgs
{
ClusterKeys = new[]
{
new AzureNative.DocumentDB.Inputs.ClusterKeyArgs
{
Name = "string",
OrderBy = "string",
},
},
Columns = new[]
{
new AzureNative.DocumentDB.Inputs.ColumnArgs
{
Name = "string",
Type = "string",
},
},
PartitionKeys = new[]
{
new AzureNative.DocumentDB.Inputs.CassandraPartitionKeyArgs
{
Name = "string",
},
},
},
},
ResourceGroupName = "string",
Location = "string",
Options = new AzureNative.DocumentDB.Inputs.CreateUpdateOptionsArgs
{
AutoscaleSettings = new AzureNative.DocumentDB.Inputs.AutoscaleSettingsArgs
{
MaxThroughput = 0,
},
Throughput = 0,
},
TableName = "string",
Tags =
{
{ "string", "string" },
},
});
example, err := documentdb.NewCassandraResourceCassandraTable(ctx, "cassandraResourceCassandraTableResource", &documentdb.CassandraResourceCassandraTableArgs{
AccountName: pulumi.String("string"),
KeyspaceName: pulumi.String("string"),
Resource: &documentdb.CassandraTableResourceArgs{
Id: pulumi.String("string"),
AnalyticalStorageTtl: pulumi.Int(0),
DefaultTtl: pulumi.Int(0),
Schema: &documentdb.CassandraSchemaArgs{
ClusterKeys: documentdb.ClusterKeyArray{
&documentdb.ClusterKeyArgs{
Name: pulumi.String("string"),
OrderBy: pulumi.String("string"),
},
},
Columns: documentdb.ColumnArray{
&documentdb.ColumnArgs{
Name: pulumi.String("string"),
Type: pulumi.String("string"),
},
},
PartitionKeys: documentdb.CassandraPartitionKeyArray{
&documentdb.CassandraPartitionKeyArgs{
Name: pulumi.String("string"),
},
},
},
},
ResourceGroupName: pulumi.String("string"),
Location: pulumi.String("string"),
Options: &documentdb.CreateUpdateOptionsArgs{
AutoscaleSettings: &documentdb.AutoscaleSettingsArgs{
MaxThroughput: pulumi.Int(0),
},
Throughput: pulumi.Int(0),
},
TableName: pulumi.String("string"),
Tags: pulumi.StringMap{
"string": pulumi.String("string"),
},
})
var cassandraResourceCassandraTableResource = new CassandraResourceCassandraTable("cassandraResourceCassandraTableResource", CassandraResourceCassandraTableArgs.builder()
.accountName("string")
.keyspaceName("string")
.resource(CassandraTableResourceArgs.builder()
.id("string")
.analyticalStorageTtl(0)
.defaultTtl(0)
.schema(CassandraSchemaArgs.builder()
.clusterKeys(ClusterKeyArgs.builder()
.name("string")
.orderBy("string")
.build())
.columns(ColumnArgs.builder()
.name("string")
.type("string")
.build())
.partitionKeys(CassandraPartitionKeyArgs.builder()
.name("string")
.build())
.build())
.build())
.resourceGroupName("string")
.location("string")
.options(CreateUpdateOptionsArgs.builder()
.autoscaleSettings(AutoscaleSettingsArgs.builder()
.maxThroughput(0)
.build())
.throughput(0)
.build())
.tableName("string")
.tags(Map.of("string", "string"))
.build());
cassandra_resource_cassandra_table_resource = azure_native.documentdb.CassandraResourceCassandraTable("cassandraResourceCassandraTableResource",
account_name="string",
keyspace_name="string",
resource={
"id": "string",
"analyticalStorageTtl": 0,
"defaultTtl": 0,
"schema": {
"clusterKeys": [{
"name": "string",
"orderBy": "string",
}],
"columns": [{
"name": "string",
"type": "string",
}],
"partitionKeys": [{
"name": "string",
}],
},
},
resource_group_name="string",
location="string",
options={
"autoscaleSettings": {
"maxThroughput": 0,
},
"throughput": 0,
},
table_name="string",
tags={
"string": "string",
})
const cassandraResourceCassandraTableResource = new azure_native.documentdb.CassandraResourceCassandraTable("cassandraResourceCassandraTableResource", {
accountName: "string",
keyspaceName: "string",
resource: {
id: "string",
analyticalStorageTtl: 0,
defaultTtl: 0,
schema: {
clusterKeys: [{
name: "string",
orderBy: "string",
}],
columns: [{
name: "string",
type: "string",
}],
partitionKeys: [{
name: "string",
}],
},
},
resourceGroupName: "string",
location: "string",
options: {
autoscaleSettings: {
maxThroughput: 0,
},
throughput: 0,
},
tableName: "string",
tags: {
string: "string",
},
});
type: azure-native:documentdb:CassandraResourceCassandraTable
properties:
accountName: string
keyspaceName: string
location: string
options:
autoscaleSettings:
maxThroughput: 0
throughput: 0
resource:
analyticalStorageTtl: 0
defaultTtl: 0
id: string
schema:
clusterKeys:
- name: string
orderBy: string
columns:
- name: string
type: string
partitionKeys:
- name: string
resourceGroupName: string
tableName: string
tags:
string: string
CassandraResourceCassandraTable 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 CassandraResourceCassandraTable resource accepts the following input properties:
- Account
Name string - Cosmos DB database account name.
- Keyspace
Name string - Cosmos DB keyspace name.
- Resource
Pulumi.
Azure Native. Document DB. Inputs. Cassandra Table Resource - The standard JSON format of a Cassandra table
- Resource
Group stringName - The name of the resource group. The name is case insensitive.
- Location string
- The location of the resource group to which the resource belongs.
- Options
Pulumi.
Azure Native. Document DB. Inputs. Create Update Options - A key-value pair of options to be applied for the request. This corresponds to the headers sent with the request.
- Table
Name string - Cosmos DB table name.
- 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".
- Account
Name string - Cosmos DB database account name.
- Keyspace
Name string - Cosmos DB keyspace name.
- Resource
Cassandra
Table Resource Args - The standard JSON format of a Cassandra table
- Resource
Group stringName - The name of the resource group. The name is case insensitive.
- Location string
- The location of the resource group to which the resource belongs.
- Options
Create
Update Options Args - A key-value pair of options to be applied for the request. This corresponds to the headers sent with the request.
- Table
Name string - Cosmos DB table name.
- 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".
- account
Name String - Cosmos DB database account name.
- keyspace
Name String - Cosmos DB keyspace name.
- resource
Cassandra
Table Resource - The standard JSON format of a Cassandra table
- resource
Group StringName - The name of the resource group. The name is case insensitive.
- location String
- The location of the resource group to which the resource belongs.
- options
Create
Update Options - A key-value pair of options to be applied for the request. This corresponds to the headers sent with the request.
- table
Name String - Cosmos DB table name.
- 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".
- account
Name string - Cosmos DB database account name.
- keyspace
Name string - Cosmos DB keyspace name.
- resource
Cassandra
Table Resource - The standard JSON format of a Cassandra table
- resource
Group stringName - The name of the resource group. The name is case insensitive.
- location string
- The location of the resource group to which the resource belongs.
- options
Create
Update Options - A key-value pair of options to be applied for the request. This corresponds to the headers sent with the request.
- table
Name string - Cosmos DB table name.
- {[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".
- account_
name str - Cosmos DB database account name.
- keyspace_
name str - Cosmos DB keyspace name.
- resource
Cassandra
Table Resource Args - The standard JSON format of a Cassandra table
- resource_
group_ strname - The name of the resource group. The name is case insensitive.
- location str
- The location of the resource group to which the resource belongs.
- options
Create
Update Options Args - A key-value pair of options to be applied for the request. This corresponds to the headers sent with the request.
- table_
name str - Cosmos DB table name.
- 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".
- account
Name String - Cosmos DB database account name.
- keyspace
Name String - Cosmos DB keyspace name.
- resource Property Map
- The standard JSON format of a Cassandra table
- resource
Group StringName - The name of the resource group. The name is case insensitive.
- location String
- The location of the resource group to which the resource belongs.
- options Property Map
- A key-value pair of options to be applied for the request. This corresponds to the headers sent with the request.
- table
Name String - Cosmos DB table name.
- 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 CassandraResourceCassandraTable resource produces the following output properties:
Supporting Types
AutoscaleSettings, AutoscaleSettingsArgs
- Max
Throughput int - Represents maximum throughput, the resource can scale up to.
- Max
Throughput int - Represents maximum throughput, the resource can scale up to.
- max
Throughput Integer - Represents maximum throughput, the resource can scale up to.
- max
Throughput number - Represents maximum throughput, the resource can scale up to.
- max_
throughput int - Represents maximum throughput, the resource can scale up to.
- max
Throughput Number - Represents maximum throughput, the resource can scale up to.
AutoscaleSettingsResponse, AutoscaleSettingsResponseArgs
- Max
Throughput int - Represents maximum throughput, the resource can scale up to.
- Max
Throughput int - Represents maximum throughput, the resource can scale up to.
- max
Throughput Integer - Represents maximum throughput, the resource can scale up to.
- max
Throughput number - Represents maximum throughput, the resource can scale up to.
- max_
throughput int - Represents maximum throughput, the resource can scale up to.
- max
Throughput Number - Represents maximum throughput, the resource can scale up to.
CassandraPartitionKey, CassandraPartitionKeyArgs
- Name string
- Name of the Cosmos DB Cassandra table partition key
- Name string
- Name of the Cosmos DB Cassandra table partition key
- name String
- Name of the Cosmos DB Cassandra table partition key
- name string
- Name of the Cosmos DB Cassandra table partition key
- name str
- Name of the Cosmos DB Cassandra table partition key
- name String
- Name of the Cosmos DB Cassandra table partition key
CassandraPartitionKeyResponse, CassandraPartitionKeyResponseArgs
- Name string
- Name of the Cosmos DB Cassandra table partition key
- Name string
- Name of the Cosmos DB Cassandra table partition key
- name String
- Name of the Cosmos DB Cassandra table partition key
- name string
- Name of the Cosmos DB Cassandra table partition key
- name str
- Name of the Cosmos DB Cassandra table partition key
- name String
- Name of the Cosmos DB Cassandra table partition key
CassandraSchema, CassandraSchemaArgs
- Cluster
Keys List<Pulumi.Azure Native. Document DB. Inputs. Cluster Key> - List of cluster key.
- Columns
List<Pulumi.
Azure Native. Document DB. Inputs. Column> - List of Cassandra table columns.
- Partition
Keys List<Pulumi.Azure Native. Document DB. Inputs. Cassandra Partition Key> - List of partition key.
- Cluster
Keys []ClusterKey - List of cluster key.
- Columns []Column
- List of Cassandra table columns.
- Partition
Keys []CassandraPartition Key - List of partition key.
- cluster
Keys List<ClusterKey> - List of cluster key.
- columns List<Column>
- List of Cassandra table columns.
- partition
Keys List<CassandraPartition Key> - List of partition key.
- cluster
Keys ClusterKey[] - List of cluster key.
- columns Column[]
- List of Cassandra table columns.
- partition
Keys CassandraPartition Key[] - List of partition key.
- cluster_
keys Sequence[ClusterKey] - List of cluster key.
- columns Sequence[Column]
- List of Cassandra table columns.
- partition_
keys Sequence[CassandraPartition Key] - List of partition key.
- cluster
Keys List<Property Map> - List of cluster key.
- columns List<Property Map>
- List of Cassandra table columns.
- partition
Keys List<Property Map> - List of partition key.
CassandraSchemaResponse, CassandraSchemaResponseArgs
- Cluster
Keys List<Pulumi.Azure Native. Document DB. Inputs. Cluster Key Response> - List of cluster key.
- Columns
List<Pulumi.
Azure Native. Document DB. Inputs. Column Response> - List of Cassandra table columns.
- Partition
Keys List<Pulumi.Azure Native. Document DB. Inputs. Cassandra Partition Key Response> - List of partition key.
- Cluster
Keys []ClusterKey Response - List of cluster key.
- Columns
[]Column
Response - List of Cassandra table columns.
- Partition
Keys []CassandraPartition Key Response - List of partition key.
- cluster
Keys List<ClusterKey Response> - List of cluster key.
- columns
List<Column
Response> - List of Cassandra table columns.
- partition
Keys List<CassandraPartition Key Response> - List of partition key.
- cluster
Keys ClusterKey Response[] - List of cluster key.
- columns
Column
Response[] - List of Cassandra table columns.
- partition
Keys CassandraPartition Key Response[] - List of partition key.
- cluster_
keys Sequence[ClusterKey Response] - List of cluster key.
- columns
Sequence[Column
Response] - List of Cassandra table columns.
- partition_
keys Sequence[CassandraPartition Key Response] - List of partition key.
- cluster
Keys List<Property Map> - List of cluster key.
- columns List<Property Map>
- List of Cassandra table columns.
- partition
Keys List<Property Map> - List of partition key.
CassandraTableGetPropertiesResponseOptions, CassandraTableGetPropertiesResponseOptionsArgs
- Autoscale
Settings Pulumi.Azure Native. Document DB. Inputs. Autoscale Settings Response - Specifies the Autoscale settings.
- Throughput int
- Value of the Cosmos DB resource throughput or autoscaleSettings. Use the ThroughputSetting resource when retrieving offer details.
- Autoscale
Settings AutoscaleSettings Response - Specifies the Autoscale settings.
- Throughput int
- Value of the Cosmos DB resource throughput or autoscaleSettings. Use the ThroughputSetting resource when retrieving offer details.
- autoscale
Settings AutoscaleSettings Response - Specifies the Autoscale settings.
- throughput Integer
- Value of the Cosmos DB resource throughput or autoscaleSettings. Use the ThroughputSetting resource when retrieving offer details.
- autoscale
Settings AutoscaleSettings Response - Specifies the Autoscale settings.
- throughput number
- Value of the Cosmos DB resource throughput or autoscaleSettings. Use the ThroughputSetting resource when retrieving offer details.
- autoscale_
settings AutoscaleSettings Response - Specifies the Autoscale settings.
- throughput int
- Value of the Cosmos DB resource throughput or autoscaleSettings. Use the ThroughputSetting resource when retrieving offer details.
- autoscale
Settings Property Map - Specifies the Autoscale settings.
- throughput Number
- Value of the Cosmos DB resource throughput or autoscaleSettings. Use the ThroughputSetting resource when retrieving offer details.
CassandraTableGetPropertiesResponseResource, CassandraTableGetPropertiesResponseResourceArgs
- Etag string
- A system generated property representing the resource etag required for optimistic concurrency control.
- Id string
- Name of the Cosmos DB Cassandra table
- Rid string
- A system generated property. A unique identifier.
- Ts double
- A system generated property that denotes the last updated timestamp of the resource.
- Analytical
Storage intTtl - Analytical TTL.
- Default
Ttl int - Time to live of the Cosmos DB Cassandra table
- Schema
Pulumi.
Azure Native. Document DB. Inputs. Cassandra Schema Response - Schema of the Cosmos DB Cassandra table
- Etag string
- A system generated property representing the resource etag required for optimistic concurrency control.
- Id string
- Name of the Cosmos DB Cassandra table
- Rid string
- A system generated property. A unique identifier.
- Ts float64
- A system generated property that denotes the last updated timestamp of the resource.
- Analytical
Storage intTtl - Analytical TTL.
- Default
Ttl int - Time to live of the Cosmos DB Cassandra table
- Schema
Cassandra
Schema Response - Schema of the Cosmos DB Cassandra table
- etag String
- A system generated property representing the resource etag required for optimistic concurrency control.
- id String
- Name of the Cosmos DB Cassandra table
- rid String
- A system generated property. A unique identifier.
- ts Double
- A system generated property that denotes the last updated timestamp of the resource.
- analytical
Storage IntegerTtl - Analytical TTL.
- default
Ttl Integer - Time to live of the Cosmos DB Cassandra table
- schema
Cassandra
Schema Response - Schema of the Cosmos DB Cassandra table
- etag string
- A system generated property representing the resource etag required for optimistic concurrency control.
- id string
- Name of the Cosmos DB Cassandra table
- rid string
- A system generated property. A unique identifier.
- ts number
- A system generated property that denotes the last updated timestamp of the resource.
- analytical
Storage numberTtl - Analytical TTL.
- default
Ttl number - Time to live of the Cosmos DB Cassandra table
- schema
Cassandra
Schema Response - Schema of the Cosmos DB Cassandra table
- etag str
- A system generated property representing the resource etag required for optimistic concurrency control.
- id str
- Name of the Cosmos DB Cassandra table
- rid str
- A system generated property. A unique identifier.
- ts float
- A system generated property that denotes the last updated timestamp of the resource.
- analytical_
storage_ intttl - Analytical TTL.
- default_
ttl int - Time to live of the Cosmos DB Cassandra table
- schema
Cassandra
Schema Response - Schema of the Cosmos DB Cassandra table
- etag String
- A system generated property representing the resource etag required for optimistic concurrency control.
- id String
- Name of the Cosmos DB Cassandra table
- rid String
- A system generated property. A unique identifier.
- ts Number
- A system generated property that denotes the last updated timestamp of the resource.
- analytical
Storage NumberTtl - Analytical TTL.
- default
Ttl Number - Time to live of the Cosmos DB Cassandra table
- schema Property Map
- Schema of the Cosmos DB Cassandra table
CassandraTableResource, CassandraTableResourceArgs
- Id string
- Name of the Cosmos DB Cassandra table
- Analytical
Storage intTtl - Analytical TTL.
- Default
Ttl int - Time to live of the Cosmos DB Cassandra table
- Schema
Pulumi.
Azure Native. Document DB. Inputs. Cassandra Schema - Schema of the Cosmos DB Cassandra table
- Id string
- Name of the Cosmos DB Cassandra table
- Analytical
Storage intTtl - Analytical TTL.
- Default
Ttl int - Time to live of the Cosmos DB Cassandra table
- Schema
Cassandra
Schema - Schema of the Cosmos DB Cassandra table
- id String
- Name of the Cosmos DB Cassandra table
- analytical
Storage IntegerTtl - Analytical TTL.
- default
Ttl Integer - Time to live of the Cosmos DB Cassandra table
- schema
Cassandra
Schema - Schema of the Cosmos DB Cassandra table
- id string
- Name of the Cosmos DB Cassandra table
- analytical
Storage numberTtl - Analytical TTL.
- default
Ttl number - Time to live of the Cosmos DB Cassandra table
- schema
Cassandra
Schema - Schema of the Cosmos DB Cassandra table
- id str
- Name of the Cosmos DB Cassandra table
- analytical_
storage_ intttl - Analytical TTL.
- default_
ttl int - Time to live of the Cosmos DB Cassandra table
- schema
Cassandra
Schema - Schema of the Cosmos DB Cassandra table
- id String
- Name of the Cosmos DB Cassandra table
- analytical
Storage NumberTtl - Analytical TTL.
- default
Ttl Number - Time to live of the Cosmos DB Cassandra table
- schema Property Map
- Schema of the Cosmos DB Cassandra table
ClusterKey, ClusterKeyArgs
ClusterKeyResponse, ClusterKeyResponseArgs
Column, ColumnArgs
ColumnResponse, ColumnResponseArgs
CreateUpdateOptions, CreateUpdateOptionsArgs
- Autoscale
Settings Pulumi.Azure Native. Document DB. Inputs. Autoscale Settings - Specifies the Autoscale settings.
- Throughput int
- Request Units per second. For example, "throughput": 10000.
- Autoscale
Settings AutoscaleSettings - Specifies the Autoscale settings.
- Throughput int
- Request Units per second. For example, "throughput": 10000.
- autoscale
Settings AutoscaleSettings - Specifies the Autoscale settings.
- throughput Integer
- Request Units per second. For example, "throughput": 10000.
- autoscale
Settings AutoscaleSettings - Specifies the Autoscale settings.
- throughput number
- Request Units per second. For example, "throughput": 10000.
- autoscale_
settings AutoscaleSettings - Specifies the Autoscale settings.
- throughput int
- Request Units per second. For example, "throughput": 10000.
- autoscale
Settings Property Map - Specifies the Autoscale settings.
- throughput Number
- Request Units per second. For example, "throughput": 10000.
Import
An existing resource can be imported using its type token, name, and identifier, e.g.
$ pulumi import azure-native:documentdb:CassandraResourceCassandraTable tableName /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DocumentDB/databaseAccounts/{accountName}/cassandraKeyspaces/{keyspaceName}/tables/{tableName}
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- Azure Native pulumi/pulumi-azure-native
- License
- Apache-2.0