TableArgs

data class TableArgs(val columnFamilies: Output<Map<String, String>>? = null, val deletionProtection: Output<Boolean>? = null, val granularity: Output<TableGranularity>? = null, val initialSplits: Output<List<SplitArgs>>? = null, val instanceId: Output<String>? = null, val name: Output<String>? = null, val project: Output<String>? = null, val stats: Output<TableStatsArgs>? = null, val tableId: Output<String>? = null) : ConvertibleToJava<TableArgs>

Creates a new table in the specified instance. The table can be created with a full set of initial column families, specified in the request.

Constructors

Link copied to clipboard
fun TableArgs(columnFamilies: Output<Map<String, String>>? = null, deletionProtection: Output<Boolean>? = null, granularity: Output<TableGranularity>? = null, initialSplits: Output<List<SplitArgs>>? = null, instanceId: Output<String>? = null, name: Output<String>? = null, project: Output<String>? = null, stats: Output<TableStatsArgs>? = null, tableId: Output<String>? = null)

Functions

Link copied to clipboard
open override fun toJava(): TableArgs

Properties

Link copied to clipboard
val columnFamilies: Output<Map<String, String>>? = null

The column families configured for this table, mapped by column family ID. Views: SCHEMA_VIEW, STATS_VIEW, FULL

Link copied to clipboard
val deletionProtection: Output<Boolean>? = null

Set to true to make the table protected against data loss. i.e. deleting the following resources through Admin APIs are prohibited: * The table. * The column families in the table. * The instance containing the table. Note one can still delete the data stored in the table through Data APIs.

Link copied to clipboard
val granularity: Output<TableGranularity>? = null

Immutable. The granularity (i.e. MILLIS) at which timestamps are stored in this table. Timestamps not matching the granularity will be rejected. If unspecified at creation time, the value will be set to MILLIS. Views: SCHEMA_VIEW, FULL.

Link copied to clipboard
val initialSplits: Output<List<SplitArgs>>? = null

The optional list of row keys that will be used to initially split the table into several tablets (tablets are similar to HBase regions). Given two split keys, s1 and s2, three tablets will be created, spanning the key ranges: [, s1), [s1, s2), [s2, ). Example: * Row keys := ["a", "apple", "custom", "customer_1", "customer_2", "other", "zz"] * initial_split_keys := ["apple", "customer_1", "customer_2", "other"] * Key assignment: - Tablet 1 [, apple) => {"a"}. - Tablet 2 [apple, customer_1) => {"apple", "custom"}. - Tablet 3 [customer_1, customer_2) => {"customer_1"}. - Tablet 4 [customer_2, other) => {"customer_2"}. - Tablet 5 [other, ) => {"other", "zz"}.

Link copied to clipboard
val instanceId: Output<String>? = null
Link copied to clipboard
val name: Output<String>? = null

The unique name of the table. Values are of the form projects/{project}/instances/{instance}/tables/_a-zA-Z0-9*. Views: NAME_ONLY, SCHEMA_VIEW, REPLICATION_VIEW, STATS_VIEW, FULL

Link copied to clipboard
val project: Output<String>? = null
Link copied to clipboard
val stats: Output<TableStatsArgs>? = null

Only available with STATS_VIEW, this includes summary statistics about the entire table contents. For statistics about a specific column family, see ColumnFamilyStats in the mapped ColumnFamily collection above.

Link copied to clipboard
val tableId: Output<String>? = null

The name by which the new table should be referred to within the parent instance, e.g., foobar rather than {parent}/tables/foobar. Maximum 50 characters.