gcp.bigtable.Table
Explore with Pulumi AI
Creates a Google Cloud Bigtable table inside an instance. For more information see the official documentation and API.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as gcp from "@pulumi/gcp";
const instance = new gcp.bigtable.Instance("instance", {
name: "tf-instance",
clusters: [{
clusterId: "tf-instance-cluster",
zone: "us-central1-b",
numNodes: 3,
storageType: "HDD",
}],
});
const table = new gcp.bigtable.Table("table", {
name: "tf-table",
instanceName: instance.name,
splitKeys: [
"a",
"b",
"c",
],
columnFamilies: [
{
family: "family-first",
},
{
family: "family-second",
},
],
changeStreamRetention: "24h0m0s",
});
import pulumi
import pulumi_gcp as gcp
instance = gcp.bigtable.Instance("instance",
name="tf-instance",
clusters=[gcp.bigtable.InstanceClusterArgs(
cluster_id="tf-instance-cluster",
zone="us-central1-b",
num_nodes=3,
storage_type="HDD",
)])
table = gcp.bigtable.Table("table",
name="tf-table",
instance_name=instance.name,
split_keys=[
"a",
"b",
"c",
],
column_families=[
gcp.bigtable.TableColumnFamilyArgs(
family="family-first",
),
gcp.bigtable.TableColumnFamilyArgs(
family="family-second",
),
],
change_stream_retention="24h0m0s")
package main
import (
"github.com/pulumi/pulumi-gcp/sdk/v7/go/gcp/bigtable"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
instance, err := bigtable.NewInstance(ctx, "instance", &bigtable.InstanceArgs{
Name: pulumi.String("tf-instance"),
Clusters: bigtable.InstanceClusterArray{
&bigtable.InstanceClusterArgs{
ClusterId: pulumi.String("tf-instance-cluster"),
Zone: pulumi.String("us-central1-b"),
NumNodes: pulumi.Int(3),
StorageType: pulumi.String("HDD"),
},
},
})
if err != nil {
return err
}
_, err = bigtable.NewTable(ctx, "table", &bigtable.TableArgs{
Name: pulumi.String("tf-table"),
InstanceName: instance.Name,
SplitKeys: pulumi.StringArray{
pulumi.String("a"),
pulumi.String("b"),
pulumi.String("c"),
},
ColumnFamilies: bigtable.TableColumnFamilyArray{
&bigtable.TableColumnFamilyArgs{
Family: pulumi.String("family-first"),
},
&bigtable.TableColumnFamilyArgs{
Family: pulumi.String("family-second"),
},
},
ChangeStreamRetention: pulumi.String("24h0m0s"),
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Gcp = Pulumi.Gcp;
return await Deployment.RunAsync(() =>
{
var instance = new Gcp.BigTable.Instance("instance", new()
{
Name = "tf-instance",
Clusters = new[]
{
new Gcp.BigTable.Inputs.InstanceClusterArgs
{
ClusterId = "tf-instance-cluster",
Zone = "us-central1-b",
NumNodes = 3,
StorageType = "HDD",
},
},
});
var table = new Gcp.BigTable.Table("table", new()
{
Name = "tf-table",
InstanceName = instance.Name,
SplitKeys = new[]
{
"a",
"b",
"c",
},
ColumnFamilies = new[]
{
new Gcp.BigTable.Inputs.TableColumnFamilyArgs
{
Family = "family-first",
},
new Gcp.BigTable.Inputs.TableColumnFamilyArgs
{
Family = "family-second",
},
},
ChangeStreamRetention = "24h0m0s",
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.gcp.bigtable.Instance;
import com.pulumi.gcp.bigtable.InstanceArgs;
import com.pulumi.gcp.bigtable.inputs.InstanceClusterArgs;
import com.pulumi.gcp.bigtable.Table;
import com.pulumi.gcp.bigtable.TableArgs;
import com.pulumi.gcp.bigtable.inputs.TableColumnFamilyArgs;
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 instance = new Instance("instance", InstanceArgs.builder()
.name("tf-instance")
.clusters(InstanceClusterArgs.builder()
.clusterId("tf-instance-cluster")
.zone("us-central1-b")
.numNodes(3)
.storageType("HDD")
.build())
.build());
var table = new Table("table", TableArgs.builder()
.name("tf-table")
.instanceName(instance.name())
.splitKeys(
"a",
"b",
"c")
.columnFamilies(
TableColumnFamilyArgs.builder()
.family("family-first")
.build(),
TableColumnFamilyArgs.builder()
.family("family-second")
.build())
.changeStreamRetention("24h0m0s")
.build());
}
}
resources:
instance:
type: gcp:bigtable:Instance
properties:
name: tf-instance
clusters:
- clusterId: tf-instance-cluster
zone: us-central1-b
numNodes: 3
storageType: HDD
table:
type: gcp:bigtable:Table
properties:
name: tf-table
instanceName: ${instance.name}
splitKeys:
- a
- b
- c
columnFamilies:
- family: family-first
- family: family-second
changeStreamRetention: 24h0m0s
Create Table Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new Table(name: string, args: TableArgs, opts?: CustomResourceOptions);
@overload
def Table(resource_name: str,
args: TableArgs,
opts: Optional[ResourceOptions] = None)
@overload
def Table(resource_name: str,
opts: Optional[ResourceOptions] = None,
instance_name: Optional[str] = None,
automated_backup_policy: Optional[TableAutomatedBackupPolicyArgs] = None,
change_stream_retention: Optional[str] = None,
column_families: Optional[Sequence[TableColumnFamilyArgs]] = None,
deletion_protection: Optional[str] = None,
name: Optional[str] = None,
project: Optional[str] = None,
split_keys: Optional[Sequence[str]] = None)
func NewTable(ctx *Context, name string, args TableArgs, opts ...ResourceOption) (*Table, error)
public Table(string name, TableArgs args, CustomResourceOptions? opts = null)
type: gcp:bigtable:Table
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 TableArgs
- 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 TableArgs
- 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 TableArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args TableArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args TableArgs
- 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 exampletableResourceResourceFromBigtabletable = new Gcp.BigTable.Table("exampletableResourceResourceFromBigtabletable", new()
{
InstanceName = "string",
AutomatedBackupPolicy = new Gcp.BigTable.Inputs.TableAutomatedBackupPolicyArgs
{
Frequency = "string",
RetentionPeriod = "string",
},
ChangeStreamRetention = "string",
ColumnFamilies = new[]
{
new Gcp.BigTable.Inputs.TableColumnFamilyArgs
{
Family = "string",
},
},
DeletionProtection = "string",
Name = "string",
Project = "string",
SplitKeys = new[]
{
"string",
},
});
example, err := bigtable.NewTable(ctx, "exampletableResourceResourceFromBigtabletable", &bigtable.TableArgs{
InstanceName: pulumi.String("string"),
AutomatedBackupPolicy: &bigtable.TableAutomatedBackupPolicyArgs{
Frequency: pulumi.String("string"),
RetentionPeriod: pulumi.String("string"),
},
ChangeStreamRetention: pulumi.String("string"),
ColumnFamilies: bigtable.TableColumnFamilyArray{
&bigtable.TableColumnFamilyArgs{
Family: pulumi.String("string"),
},
},
DeletionProtection: pulumi.String("string"),
Name: pulumi.String("string"),
Project: pulumi.String("string"),
SplitKeys: pulumi.StringArray{
pulumi.String("string"),
},
})
var exampletableResourceResourceFromBigtabletable = new Table("exampletableResourceResourceFromBigtabletable", TableArgs.builder()
.instanceName("string")
.automatedBackupPolicy(TableAutomatedBackupPolicyArgs.builder()
.frequency("string")
.retentionPeriod("string")
.build())
.changeStreamRetention("string")
.columnFamilies(TableColumnFamilyArgs.builder()
.family("string")
.build())
.deletionProtection("string")
.name("string")
.project("string")
.splitKeys("string")
.build());
exampletable_resource_resource_from_bigtabletable = gcp.bigtable.Table("exampletableResourceResourceFromBigtabletable",
instance_name="string",
automated_backup_policy=gcp.bigtable.TableAutomatedBackupPolicyArgs(
frequency="string",
retention_period="string",
),
change_stream_retention="string",
column_families=[gcp.bigtable.TableColumnFamilyArgs(
family="string",
)],
deletion_protection="string",
name="string",
project="string",
split_keys=["string"])
const exampletableResourceResourceFromBigtabletable = new gcp.bigtable.Table("exampletableResourceResourceFromBigtabletable", {
instanceName: "string",
automatedBackupPolicy: {
frequency: "string",
retentionPeriod: "string",
},
changeStreamRetention: "string",
columnFamilies: [{
family: "string",
}],
deletionProtection: "string",
name: "string",
project: "string",
splitKeys: ["string"],
});
type: gcp:bigtable:Table
properties:
automatedBackupPolicy:
frequency: string
retentionPeriod: string
changeStreamRetention: string
columnFamilies:
- family: string
deletionProtection: string
instanceName: string
name: string
project: string
splitKeys:
- string
Table 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 Table resource accepts the following input properties:
- Instance
Name string - The name of the Bigtable instance.
- Automated
Backup TablePolicy Automated Backup Policy - Defines an automated backup policy for a table, specified by Retention Period and Frequency. To disable, set both Retention Period and Frequency to 0.
- Change
Stream stringRetention - Duration to retain change stream data for the table. Set to 0 to disable. Must be between 1 and 7 days.
- Column
Families List<TableColumn Family> - A group of columns within a table which share a common configuration. This can be specified multiple times. Structure is documented below.
- Deletion
Protection string - A field to make the table protected against data loss i.e. when set to PROTECTED, deleting the table, the column families in the table, and the instance containing the table would be prohibited. If not provided, deletion protection will be set to UNPROTECTED.
- Name string
- The name of the table. Must be 1-50 characters and must only contain hyphens, underscores, periods, letters and numbers.
- Project string
- The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
- Split
Keys List<string> - 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 entiregcp.bigtable.Table
resource.
- Instance
Name string - The name of the Bigtable instance.
- Automated
Backup TablePolicy Automated Backup Policy Args - Defines an automated backup policy for a table, specified by Retention Period and Frequency. To disable, set both Retention Period and Frequency to 0.
- Change
Stream stringRetention - Duration to retain change stream data for the table. Set to 0 to disable. Must be between 1 and 7 days.
- Column
Families []TableColumn Family Args - A group of columns within a table which share a common configuration. This can be specified multiple times. Structure is documented below.
- Deletion
Protection string - A field to make the table protected against data loss i.e. when set to PROTECTED, deleting the table, the column families in the table, and the instance containing the table would be prohibited. If not provided, deletion protection will be set to UNPROTECTED.
- Name string
- The name of the table. Must be 1-50 characters and must only contain hyphens, underscores, periods, letters and numbers.
- Project string
- The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
- Split
Keys []string - 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 entiregcp.bigtable.Table
resource.
- instance
Name String - The name of the Bigtable instance.
- automated
Backup TablePolicy Automated Backup Policy - Defines an automated backup policy for a table, specified by Retention Period and Frequency. To disable, set both Retention Period and Frequency to 0.
- change
Stream StringRetention - Duration to retain change stream data for the table. Set to 0 to disable. Must be between 1 and 7 days.
- column
Families List<TableColumn Family> - A group of columns within a table which share a common configuration. This can be specified multiple times. Structure is documented below.
- deletion
Protection String - A field to make the table protected against data loss i.e. when set to PROTECTED, deleting the table, the column families in the table, and the instance containing the table would be prohibited. If not provided, deletion protection will be set to UNPROTECTED.
- name String
- The name of the table. Must be 1-50 characters and must only contain hyphens, underscores, periods, letters and numbers.
- project String
- The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
- split
Keys List<String> - 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 entiregcp.bigtable.Table
resource.
- instance
Name string - The name of the Bigtable instance.
- automated
Backup TablePolicy Automated Backup Policy - Defines an automated backup policy for a table, specified by Retention Period and Frequency. To disable, set both Retention Period and Frequency to 0.
- change
Stream stringRetention - Duration to retain change stream data for the table. Set to 0 to disable. Must be between 1 and 7 days.
- column
Families TableColumn Family[] - A group of columns within a table which share a common configuration. This can be specified multiple times. Structure is documented below.
- deletion
Protection string - A field to make the table protected against data loss i.e. when set to PROTECTED, deleting the table, the column families in the table, and the instance containing the table would be prohibited. If not provided, deletion protection will be set to UNPROTECTED.
- name string
- The name of the table. Must be 1-50 characters and must only contain hyphens, underscores, periods, letters and numbers.
- project string
- The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
- split
Keys string[] - 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 entiregcp.bigtable.Table
resource.
- instance_
name str - The name of the Bigtable instance.
- automated_
backup_ Tablepolicy Automated Backup Policy Args - Defines an automated backup policy for a table, specified by Retention Period and Frequency. To disable, set both Retention Period and Frequency to 0.
- change_
stream_ strretention - Duration to retain change stream data for the table. Set to 0 to disable. Must be between 1 and 7 days.
- column_
families Sequence[TableColumn Family Args] - A group of columns within a table which share a common configuration. This can be specified multiple times. Structure is documented below.
- deletion_
protection str - A field to make the table protected against data loss i.e. when set to PROTECTED, deleting the table, the column families in the table, and the instance containing the table would be prohibited. If not provided, deletion protection will be set to UNPROTECTED.
- name str
- The name of the table. Must be 1-50 characters and must only contain hyphens, underscores, periods, letters and numbers.
- project str
- The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
- split_
keys Sequence[str] - 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 entiregcp.bigtable.Table
resource.
- instance
Name String - The name of the Bigtable instance.
- automated
Backup Property MapPolicy - Defines an automated backup policy for a table, specified by Retention Period and Frequency. To disable, set both Retention Period and Frequency to 0.
- change
Stream StringRetention - Duration to retain change stream data for the table. Set to 0 to disable. Must be between 1 and 7 days.
- column
Families List<Property Map> - A group of columns within a table which share a common configuration. This can be specified multiple times. Structure is documented below.
- deletion
Protection String - A field to make the table protected against data loss i.e. when set to PROTECTED, deleting the table, the column families in the table, and the instance containing the table would be prohibited. If not provided, deletion protection will be set to UNPROTECTED.
- name String
- The name of the table. Must be 1-50 characters and must only contain hyphens, underscores, periods, letters and numbers.
- project String
- The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
- split
Keys List<String> - 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 entiregcp.bigtable.Table
resource.
Outputs
All input properties are implicitly available as output properties. Additionally, the Table resource produces the following output properties:
- Id string
- The provider-assigned unique ID for this managed resource.
- Id string
- The provider-assigned unique ID for this managed resource.
- id String
- The provider-assigned unique ID for this managed resource.
- id string
- The provider-assigned unique ID for this managed resource.
- id str
- The provider-assigned unique ID for this managed resource.
- id String
- The provider-assigned unique ID for this managed resource.
Look up Existing Table Resource
Get an existing Table resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.
public static get(name: string, id: Input<ID>, state?: TableState, opts?: CustomResourceOptions): Table
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
automated_backup_policy: Optional[TableAutomatedBackupPolicyArgs] = None,
change_stream_retention: Optional[str] = None,
column_families: Optional[Sequence[TableColumnFamilyArgs]] = None,
deletion_protection: Optional[str] = None,
instance_name: Optional[str] = None,
name: Optional[str] = None,
project: Optional[str] = None,
split_keys: Optional[Sequence[str]] = None) -> Table
func GetTable(ctx *Context, name string, id IDInput, state *TableState, opts ...ResourceOption) (*Table, error)
public static Table Get(string name, Input<string> id, TableState? state, CustomResourceOptions? opts = null)
public static Table get(String name, Output<String> id, TableState state, CustomResourceOptions options)
Resource lookup is not supported in YAML
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- resource_name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- Automated
Backup TablePolicy Automated Backup Policy - Defines an automated backup policy for a table, specified by Retention Period and Frequency. To disable, set both Retention Period and Frequency to 0.
- Change
Stream stringRetention - Duration to retain change stream data for the table. Set to 0 to disable. Must be between 1 and 7 days.
- Column
Families List<TableColumn Family> - A group of columns within a table which share a common configuration. This can be specified multiple times. Structure is documented below.
- Deletion
Protection string - A field to make the table protected against data loss i.e. when set to PROTECTED, deleting the table, the column families in the table, and the instance containing the table would be prohibited. If not provided, deletion protection will be set to UNPROTECTED.
- Instance
Name string - The name of the Bigtable instance.
- Name string
- The name of the table. Must be 1-50 characters and must only contain hyphens, underscores, periods, letters and numbers.
- Project string
- The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
- Split
Keys List<string> - 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 entiregcp.bigtable.Table
resource.
- Automated
Backup TablePolicy Automated Backup Policy Args - Defines an automated backup policy for a table, specified by Retention Period and Frequency. To disable, set both Retention Period and Frequency to 0.
- Change
Stream stringRetention - Duration to retain change stream data for the table. Set to 0 to disable. Must be between 1 and 7 days.
- Column
Families []TableColumn Family Args - A group of columns within a table which share a common configuration. This can be specified multiple times. Structure is documented below.
- Deletion
Protection string - A field to make the table protected against data loss i.e. when set to PROTECTED, deleting the table, the column families in the table, and the instance containing the table would be prohibited. If not provided, deletion protection will be set to UNPROTECTED.
- Instance
Name string - The name of the Bigtable instance.
- Name string
- The name of the table. Must be 1-50 characters and must only contain hyphens, underscores, periods, letters and numbers.
- Project string
- The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
- Split
Keys []string - 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 entiregcp.bigtable.Table
resource.
- automated
Backup TablePolicy Automated Backup Policy - Defines an automated backup policy for a table, specified by Retention Period and Frequency. To disable, set both Retention Period and Frequency to 0.
- change
Stream StringRetention - Duration to retain change stream data for the table. Set to 0 to disable. Must be between 1 and 7 days.
- column
Families List<TableColumn Family> - A group of columns within a table which share a common configuration. This can be specified multiple times. Structure is documented below.
- deletion
Protection String - A field to make the table protected against data loss i.e. when set to PROTECTED, deleting the table, the column families in the table, and the instance containing the table would be prohibited. If not provided, deletion protection will be set to UNPROTECTED.
- instance
Name String - The name of the Bigtable instance.
- name String
- The name of the table. Must be 1-50 characters and must only contain hyphens, underscores, periods, letters and numbers.
- project String
- The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
- split
Keys List<String> - 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 entiregcp.bigtable.Table
resource.
- automated
Backup TablePolicy Automated Backup Policy - Defines an automated backup policy for a table, specified by Retention Period and Frequency. To disable, set both Retention Period and Frequency to 0.
- change
Stream stringRetention - Duration to retain change stream data for the table. Set to 0 to disable. Must be between 1 and 7 days.
- column
Families TableColumn Family[] - A group of columns within a table which share a common configuration. This can be specified multiple times. Structure is documented below.
- deletion
Protection string - A field to make the table protected against data loss i.e. when set to PROTECTED, deleting the table, the column families in the table, and the instance containing the table would be prohibited. If not provided, deletion protection will be set to UNPROTECTED.
- instance
Name string - The name of the Bigtable instance.
- name string
- The name of the table. Must be 1-50 characters and must only contain hyphens, underscores, periods, letters and numbers.
- project string
- The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
- split
Keys string[] - 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 entiregcp.bigtable.Table
resource.
- automated_
backup_ Tablepolicy Automated Backup Policy Args - Defines an automated backup policy for a table, specified by Retention Period and Frequency. To disable, set both Retention Period and Frequency to 0.
- change_
stream_ strretention - Duration to retain change stream data for the table. Set to 0 to disable. Must be between 1 and 7 days.
- column_
families Sequence[TableColumn Family Args] - A group of columns within a table which share a common configuration. This can be specified multiple times. Structure is documented below.
- deletion_
protection str - A field to make the table protected against data loss i.e. when set to PROTECTED, deleting the table, the column families in the table, and the instance containing the table would be prohibited. If not provided, deletion protection will be set to UNPROTECTED.
- instance_
name str - The name of the Bigtable instance.
- name str
- The name of the table. Must be 1-50 characters and must only contain hyphens, underscores, periods, letters and numbers.
- project str
- The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
- split_
keys Sequence[str] - 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 entiregcp.bigtable.Table
resource.
- automated
Backup Property MapPolicy - Defines an automated backup policy for a table, specified by Retention Period and Frequency. To disable, set both Retention Period and Frequency to 0.
- change
Stream StringRetention - Duration to retain change stream data for the table. Set to 0 to disable. Must be between 1 and 7 days.
- column
Families List<Property Map> - A group of columns within a table which share a common configuration. This can be specified multiple times. Structure is documented below.
- deletion
Protection String - A field to make the table protected against data loss i.e. when set to PROTECTED, deleting the table, the column families in the table, and the instance containing the table would be prohibited. If not provided, deletion protection will be set to UNPROTECTED.
- instance
Name String - The name of the Bigtable instance.
- name String
- The name of the table. Must be 1-50 characters and must only contain hyphens, underscores, periods, letters and numbers.
- project String
- The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
- split
Keys List<String> - 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 entiregcp.bigtable.Table
resource.
Supporting Types
TableAutomatedBackupPolicy, TableAutomatedBackupPolicyArgs
- Frequency string
- How frequently automated backups should occur.
- Retention
Period string - How long the automated backups should be retained.
- Frequency string
- How frequently automated backups should occur.
- Retention
Period string - How long the automated backups should be retained.
- frequency String
- How frequently automated backups should occur.
- retention
Period String - How long the automated backups should be retained.
- frequency string
- How frequently automated backups should occur.
- retention
Period string - How long the automated backups should be retained.
- frequency str
- How frequently automated backups should occur.
- retention_
period str - How long the automated backups should be retained.
- frequency String
- How frequently automated backups should occur.
- retention
Period String - How long the automated backups should be retained.
TableColumnFamily, TableColumnFamilyArgs
- Family string
- The name of the column family.
- Family string
- The name of the column family.
- family String
- The name of the column family.
- family string
- The name of the column family.
- family str
- The name of the column family.
- family String
- The name of the column family.
Import
-> Fields affected by import The following fields can’t be read and will show diffs if set in config when imported: split_keys
Bigtable Tables can be imported using any of these accepted formats:
projects/{{project}}/instances/{{instance_name}}/tables/{{name}}
{{project}}/{{instance_name}}/{{name}}
{{instance_name}}/{{name}}
When using the pulumi import
command, Bigtable Tables can be imported using one of the formats above. For example:
$ pulumi import gcp:bigtable/table:Table default projects/{{project}}/instances/{{instance_name}}/tables/{{name}}
$ pulumi import gcp:bigtable/table:Table default {{project}}/{{instance_name}}/{{name}}
$ pulumi import gcp:bigtable/table:Table default {{instance_name}}/{{name}}
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- Google Cloud (GCP) Classic pulumi/pulumi-gcp
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
google-beta
Terraform Provider.