azure-native.documentdb.CassandraResourceCassandraTable

An Azure Cosmos DB Cassandra table. API Version: 2021-03-15.

Example Usage

CosmosDBCassandraTableCreateUpdate

using System.Collections.Generic;
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,
    });

});

Coming soon!

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 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(Map.ofEntries(
                Map.entry("defaultTtl", 100),
                Map.entry("id", "tableName"),
                Map.entry("schema", Map.ofEntries(
                    Map.entry("clusterKeys", Map.ofEntries(
                        Map.entry("name", "columnA"),
                        Map.entry("orderBy", "Asc")
                    )),
                    Map.entry("columns", Map.ofEntries(
                        Map.entry("name", "columnA"),
                        Map.entry("type", "Ascii")
                    )),
                    Map.entry("partitionKeys", Map.of("name", "columnA"))
                ))
            ))
            .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=azure_native.documentdb.CreateUpdateOptionsArgs(),
    resource=azure_native.documentdb.CassandraTableGetPropertiesResponseResourceArgs(
        default_ttl=100,
        id="tableName",
        schema={
            "clusterKeys": [azure_native.documentdb.ClusterKeyArgs(
                name="columnA",
                order_by="Asc",
            )],
            "columns": [azure_native.documentdb.ColumnArgs(
                name="columnA",
                type="Ascii",
            )],
            "partitionKeys": [azure_native.documentdb.CassandraPartitionKeyArgs(
                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

new CassandraResourceCassandraTable(name: string, args: CassandraResourceCassandraTableArgs, opts?: CustomResourceOptions);
@overload
def CassandraResourceCassandraTable(resource_name: str,
                                    opts: Optional[ResourceOptions] = None,
                                    account_name: Optional[str] = None,
                                    keyspace_name: Optional[str] = None,
                                    location: Optional[str] = None,
                                    options: Optional[CreateUpdateOptionsArgs] = None,
                                    resource: Optional[CassandraTableResourceArgs] = None,
                                    resource_group_name: Optional[str] = None,
                                    table_name: Optional[str] = None,
                                    tags: Optional[Mapping[str, str]] = None)
@overload
def CassandraResourceCassandraTable(resource_name: str,
                                    args: CassandraResourceCassandraTableArgs,
                                    opts: Optional[ResourceOptions] = 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.

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.

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:

AccountName string

Cosmos DB database account name.

KeyspaceName string

Cosmos DB keyspace name.

Resource Pulumi.AzureNative.DocumentDB.Inputs.CassandraTableResourceArgs

The standard JSON format of a Cassandra table

ResourceGroupName string

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.AzureNative.DocumentDB.Inputs.CreateUpdateOptionsArgs

A key-value pair of options to be applied for the request. This corresponds to the headers sent with the request.

TableName string

Cosmos DB table name.

Tags Dictionary<string, string>

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

AccountName string

Cosmos DB database account name.

KeyspaceName string

Cosmos DB keyspace name.

Resource CassandraTableResourceArgs

The standard JSON format of a Cassandra table

ResourceGroupName string

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 CreateUpdateOptionsArgs

A key-value pair of options to be applied for the request. This corresponds to the headers sent with the request.

TableName string

Cosmos DB table name.

Tags map[string]string

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

accountName String

Cosmos DB database account name.

keyspaceName String

Cosmos DB keyspace name.

resource CassandraTableResourceArgs

The standard JSON format of a Cassandra table

resourceGroupName String

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 CreateUpdateOptionsArgs

A key-value pair of options to be applied for the request. This corresponds to the headers sent with the request.

tableName String

Cosmos DB table name.

tags Map<String,String>

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

accountName string

Cosmos DB database account name.

keyspaceName string

Cosmos DB keyspace name.

resource CassandraTableResourceArgs

The standard JSON format of a Cassandra table

resourceGroupName string

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 CreateUpdateOptionsArgs

A key-value pair of options to be applied for the request. This corresponds to the headers sent with the request.

tableName string

Cosmos DB table name.

tags {[key: string]: string}

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

account_name str

Cosmos DB database account name.

keyspace_name str

Cosmos DB keyspace name.

resource CassandraTableResourceArgs

The standard JSON format of a Cassandra table

resource_group_name str

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 CreateUpdateOptionsArgs

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.

tags Mapping[str, str]

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

accountName String

Cosmos DB database account name.

keyspaceName String

Cosmos DB keyspace name.

resource Property Map

The standard JSON format of a Cassandra table

resourceGroupName String

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.

tableName String

Cosmos DB table name.

tags Map<String>

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

Outputs

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

Id string

The provider-assigned unique ID for this managed resource.

Name string

The name of the ARM resource.

Type string

The type of Azure resource.

Id string

The provider-assigned unique ID for this managed resource.

Name string

The name of the ARM resource.

Type string

The type of Azure resource.

id String

The provider-assigned unique ID for this managed resource.

name String

The name of the ARM resource.

type String

The type of Azure resource.

id string

The provider-assigned unique ID for this managed resource.

name string

The name of the ARM resource.

type string

The type of Azure resource.

id str

The provider-assigned unique ID for this managed resource.

name str

The name of the ARM resource.

type str

The type of Azure resource.

id String

The provider-assigned unique ID for this managed resource.

name String

The name of the ARM resource.

type String

The type of Azure resource.

Supporting Types

AutoscaleSettings

MaxThroughput int

Represents maximum throughput, the resource can scale up to.

MaxThroughput int

Represents maximum throughput, the resource can scale up to.

maxThroughput Integer

Represents maximum throughput, the resource can scale up to.

maxThroughput number

Represents maximum throughput, the resource can scale up to.

max_throughput int

Represents maximum throughput, the resource can scale up to.

maxThroughput Number

Represents maximum throughput, the resource can scale up to.

AutoscaleSettingsResponse

MaxThroughput int

Represents maximum throughput, the resource can scale up to.

MaxThroughput int

Represents maximum throughput, the resource can scale up to.

maxThroughput Integer

Represents maximum throughput, the resource can scale up to.

maxThroughput number

Represents maximum throughput, the resource can scale up to.

max_throughput int

Represents maximum throughput, the resource can scale up to.

maxThroughput Number

Represents maximum throughput, the resource can scale up to.

CassandraPartitionKey

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

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

ClusterKeys []ClusterKey

List of cluster key.

Columns []Column

List of Cassandra table columns.

PartitionKeys []CassandraPartitionKey

List of partition key.

clusterKeys List<ClusterKey>

List of cluster key.

columns List<Column>

List of Cassandra table columns.

partitionKeys List<CassandraPartitionKey>

List of partition key.

clusterKeys ClusterKey[]

List of cluster key.

columns Column[]

List of Cassandra table columns.

partitionKeys CassandraPartitionKey[]

List of partition key.

cluster_keys Sequence[ClusterKey]

List of cluster key.

columns Sequence[Column]

List of Cassandra table columns.

partition_keys Sequence[CassandraPartitionKey]

List of partition key.

clusterKeys List<Property Map>

List of cluster key.

columns List<Property Map>

List of Cassandra table columns.

partitionKeys List<Property Map>

List of partition key.

CassandraSchemaResponse

ClusterKeys []ClusterKeyResponse

List of cluster key.

Columns []ColumnResponse

List of Cassandra table columns.

PartitionKeys []CassandraPartitionKeyResponse

List of partition key.

clusterKeys List<ClusterKeyResponse>

List of cluster key.

columns List<ColumnResponse>

List of Cassandra table columns.

partitionKeys List<CassandraPartitionKeyResponse>

List of partition key.

clusterKeys ClusterKeyResponse[]

List of cluster key.

columns ColumnResponse[]

List of Cassandra table columns.

partitionKeys CassandraPartitionKeyResponse[]

List of partition key.

clusterKeys List<Property Map>

List of cluster key.

columns List<Property Map>

List of Cassandra table columns.

partitionKeys List<Property Map>

List of partition key.

CassandraTableGetPropertiesResponseOptions

AutoscaleSettings Pulumi.AzureNative.DocumentDB.Inputs.AutoscaleSettingsResponse

Specifies the Autoscale settings.

Throughput int

Value of the Cosmos DB resource throughput or autoscaleSettings. Use the ThroughputSetting resource when retrieving offer details.

AutoscaleSettings AutoscaleSettingsResponse

Specifies the Autoscale settings.

Throughput int

Value of the Cosmos DB resource throughput or autoscaleSettings. Use the ThroughputSetting resource when retrieving offer details.

autoscaleSettings AutoscaleSettingsResponse

Specifies the Autoscale settings.

throughput Integer

Value of the Cosmos DB resource throughput or autoscaleSettings. Use the ThroughputSetting resource when retrieving offer details.

autoscaleSettings AutoscaleSettingsResponse

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 AutoscaleSettingsResponse

Specifies the Autoscale settings.

throughput int

Value of the Cosmos DB resource throughput or autoscaleSettings. Use the ThroughputSetting resource when retrieving offer details.

autoscaleSettings 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

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.

AnalyticalStorageTtl int

Analytical TTL.

DefaultTtl int

Time to live of the Cosmos DB Cassandra table

Schema Pulumi.AzureNative.DocumentDB.Inputs.CassandraSchemaResponse

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.

AnalyticalStorageTtl int

Analytical TTL.

DefaultTtl int

Time to live of the Cosmos DB Cassandra table

Schema CassandraSchemaResponse

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.

analyticalStorageTtl Integer

Analytical TTL.

defaultTtl Integer

Time to live of the Cosmos DB Cassandra table

schema CassandraSchemaResponse

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.

analyticalStorageTtl number

Analytical TTL.

defaultTtl number

Time to live of the Cosmos DB Cassandra table

schema CassandraSchemaResponse

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_ttl int

Analytical TTL.

default_ttl int

Time to live of the Cosmos DB Cassandra table

schema CassandraSchemaResponse

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.

analyticalStorageTtl Number

Analytical TTL.

defaultTtl Number

Time to live of the Cosmos DB Cassandra table

schema Property Map

Schema of the Cosmos DB Cassandra table

CassandraTableResource

Id string

Name of the Cosmos DB Cassandra table

AnalyticalStorageTtl int

Analytical TTL.

DefaultTtl int

Time to live of the Cosmos DB Cassandra table

Schema Pulumi.AzureNative.DocumentDB.Inputs.CassandraSchema

Schema of the Cosmos DB Cassandra table

Id string

Name of the Cosmos DB Cassandra table

AnalyticalStorageTtl int

Analytical TTL.

DefaultTtl int

Time to live of the Cosmos DB Cassandra table

Schema CassandraSchema

Schema of the Cosmos DB Cassandra table

id String

Name of the Cosmos DB Cassandra table

analyticalStorageTtl Integer

Analytical TTL.

defaultTtl Integer

Time to live of the Cosmos DB Cassandra table

schema CassandraSchema

Schema of the Cosmos DB Cassandra table

id string

Name of the Cosmos DB Cassandra table

analyticalStorageTtl number

Analytical TTL.

defaultTtl number

Time to live of the Cosmos DB Cassandra table

schema CassandraSchema

Schema of the Cosmos DB Cassandra table

id str

Name of the Cosmos DB Cassandra table

analytical_storage_ttl int

Analytical TTL.

default_ttl int

Time to live of the Cosmos DB Cassandra table

schema CassandraSchema

Schema of the Cosmos DB Cassandra table

id String

Name of the Cosmos DB Cassandra table

analyticalStorageTtl Number

Analytical TTL.

defaultTtl Number

Time to live of the Cosmos DB Cassandra table

schema Property Map

Schema of the Cosmos DB Cassandra table

ClusterKey

Name string

Name of the Cosmos DB Cassandra table cluster key

OrderBy string

Order of the Cosmos DB Cassandra table cluster key, only support "Asc" and "Desc"

Name string

Name of the Cosmos DB Cassandra table cluster key

OrderBy string

Order of the Cosmos DB Cassandra table cluster key, only support "Asc" and "Desc"

name String

Name of the Cosmos DB Cassandra table cluster key

orderBy String

Order of the Cosmos DB Cassandra table cluster key, only support "Asc" and "Desc"

name string

Name of the Cosmos DB Cassandra table cluster key

orderBy string

Order of the Cosmos DB Cassandra table cluster key, only support "Asc" and "Desc"

name str

Name of the Cosmos DB Cassandra table cluster key

order_by str

Order of the Cosmos DB Cassandra table cluster key, only support "Asc" and "Desc"

name String

Name of the Cosmos DB Cassandra table cluster key

orderBy String

Order of the Cosmos DB Cassandra table cluster key, only support "Asc" and "Desc"

ClusterKeyResponse

Name string

Name of the Cosmos DB Cassandra table cluster key

OrderBy string

Order of the Cosmos DB Cassandra table cluster key, only support "Asc" and "Desc"

Name string

Name of the Cosmos DB Cassandra table cluster key

OrderBy string

Order of the Cosmos DB Cassandra table cluster key, only support "Asc" and "Desc"

name String

Name of the Cosmos DB Cassandra table cluster key

orderBy String

Order of the Cosmos DB Cassandra table cluster key, only support "Asc" and "Desc"

name string

Name of the Cosmos DB Cassandra table cluster key

orderBy string

Order of the Cosmos DB Cassandra table cluster key, only support "Asc" and "Desc"

name str

Name of the Cosmos DB Cassandra table cluster key

order_by str

Order of the Cosmos DB Cassandra table cluster key, only support "Asc" and "Desc"

name String

Name of the Cosmos DB Cassandra table cluster key

orderBy String

Order of the Cosmos DB Cassandra table cluster key, only support "Asc" and "Desc"

Column

Name string

Name of the Cosmos DB Cassandra table column

Type string

Type of the Cosmos DB Cassandra table column

Name string

Name of the Cosmos DB Cassandra table column

Type string

Type of the Cosmos DB Cassandra table column

name String

Name of the Cosmos DB Cassandra table column

type String

Type of the Cosmos DB Cassandra table column

name string

Name of the Cosmos DB Cassandra table column

type string

Type of the Cosmos DB Cassandra table column

name str

Name of the Cosmos DB Cassandra table column

type str

Type of the Cosmos DB Cassandra table column

name String

Name of the Cosmos DB Cassandra table column

type String

Type of the Cosmos DB Cassandra table column

ColumnResponse

Name string

Name of the Cosmos DB Cassandra table column

Type string

Type of the Cosmos DB Cassandra table column

Name string

Name of the Cosmos DB Cassandra table column

Type string

Type of the Cosmos DB Cassandra table column

name String

Name of the Cosmos DB Cassandra table column

type String

Type of the Cosmos DB Cassandra table column

name string

Name of the Cosmos DB Cassandra table column

type string

Type of the Cosmos DB Cassandra table column

name str

Name of the Cosmos DB Cassandra table column

type str

Type of the Cosmos DB Cassandra table column

name String

Name of the Cosmos DB Cassandra table column

type String

Type of the Cosmos DB Cassandra table column

CreateUpdateOptions

AutoscaleSettings Pulumi.AzureNative.DocumentDB.Inputs.AutoscaleSettings

Specifies the Autoscale settings.

Throughput int

Request Units per second. For example, "throughput": 10000.

AutoscaleSettings AutoscaleSettings

Specifies the Autoscale settings.

Throughput int

Request Units per second. For example, "throughput": 10000.

autoscaleSettings AutoscaleSettings

Specifies the Autoscale settings.

throughput Integer

Request Units per second. For example, "throughput": 10000.

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

autoscaleSettings 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/subid/resourceGroups/rg1/providers/Microsoft.DocumentDB/databaseAccounts/ddb1/cassandraKeyspaces/keyspaceName/cassandraTables/tableName 

Package Details

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