Show / Hide Table of Contents

Class Table

Creates a Google Cloud Bigtable table inside an instance. For more information see the official documentation and API.

Inheritance
System.Object
Resource
CustomResource
Table
Inherited Members
CustomResource.Id
Resource.GetResourceType()
Resource.GetResourceName()
Resource.Urn
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 class Table : CustomResource

Constructors

View Source

Table(String, TableArgs, CustomResourceOptions)

Create a Table resource with the given unique name, arguments, and options.

Declaration
public Table(string name, TableArgs args, CustomResourceOptions options = null)
Parameters
Type Name Description
System.String name

The unique name of the resource

TableArgs args

The arguments used to populate this resource's properties

CustomResourceOptions options

A bag of options that control this resource's behavior

Properties

View Source

ColumnFamilies

A group of columns within a table which share a common configuration. This can be specified multiple times. Structure is documented below.

Declaration
public Output<ImmutableArray<TableColumnFamily>> ColumnFamilies { get; }
Property Value
Type Description
Output<System.Collections.Immutable.ImmutableArray<TableColumnFamily>>
View Source

InstanceName

The name of the Bigtable instance.

Declaration
public Output<string> InstanceName { get; }
Property Value
Type Description
Output<System.String>
View Source

Name

The name of the table.

Declaration
public Output<string> Name { get; }
Property Value
Type Description
Output<System.String>
View Source

Project

The ID of the project in which the resource belongs. If it is not provided, the provider project is used.

Declaration
public Output<string> Project { get; }
Property Value
Type Description
Output<System.String>
View Source

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 Output<ImmutableArray<string>> SplitKeys { get; }
Property Value
Type Description
Output<System.Collections.Immutable.ImmutableArray<System.String>>

Methods

View Source

Get(String, Input<String>, TableState, CustomResourceOptions)

Get an existing Table resource's state with the given name, ID, and optional extra properties used to qualify the lookup.

Declaration
public static Table Get(string name, Input<string> id, TableState state = null, CustomResourceOptions options = null)
Parameters
Type Name Description
System.String name

The unique name of the resulting resource.

Input<System.String> id

The unique provider ID of the resource to lookup.

TableState state

Any extra arguments used during the lookup.

CustomResourceOptions options

A bag of options that control this resource's behavior

Returns
Type Description
Table
  • View Source
Back to top Copyright 2016-2020, Pulumi Corporation.