Class TableArgs
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Pulumi.Gcp.BigTable
Assembly: Pulumi.Gcp.dll
Syntax
public sealed class TableArgs : ResourceArgs
Constructors
View SourceTableArgs()
Declaration
public TableArgs()
Properties
View SourceColumnFamilies
A group of columns within a table which share a common configuration. This can be specified multiple times. Structure is documented below.
Declaration
public InputList<TableColumnFamilyArgs> ColumnFamilies { get; set; }
Property Value
| Type | Description |
|---|---|
| InputList<TableColumnFamilyArgs> |
InstanceName
The name of the Bigtable instance.
Declaration
public Input<string> InstanceName { get; set; }
Property Value
| Type | Description |
|---|---|
| Input<System.String> |
Name
The name of the table.
Declaration
public Input<string> Name { get; set; }
Property Value
| Type | Description |
|---|---|
| Input<System.String> |
Project
The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
Declaration
public Input<string> Project { get; set; }
Property Value
| Type | Description |
|---|---|
| Input<System.String> |
SplitKeys
A list of predefined keys to split the table on.
!> Warning: Modifying the split_keys of an existing table will cause the provider
to delete/recreate the entire gcp.bigtable.Table resource.
Declaration
public InputList<string> SplitKeys { get; set; }
Property Value
| Type | Description |
|---|---|
| InputList<System.String> |