Show / Hide Table of Contents

Class InstanceArgs

Inheritance
System.Object
InputArgs
ResourceArgs
InstanceArgs
Inherited Members
ResourceArgs.Empty
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 InstanceArgs : ResourceArgs

Constructors

View Source

InstanceArgs()

Declaration
public InstanceArgs()

Properties

View Source

Clusters

A block of cluster configuration options. This can be specified 1 or 2 times. See structure below.

Declaration
public InputList<InstanceClusterArgs> Clusters { get; set; }
Property Value
Type Description
InputList<InstanceClusterArgs>
View Source

DeletionProtection

Whether or not to allow this provider to destroy the instance. Unless this field is set to false in the statefile, a pulumi destroy or pulumi up that would delete the instance will fail.

Declaration
public Input<bool> DeletionProtection { get; set; }
Property Value
Type Description
Input<System.Boolean>
View Source

DisplayName

The human-readable display name of the Bigtable instance. Defaults to the instance name.

Declaration
public Input<string> DisplayName { get; set; }
Property Value
Type Description
Input<System.String>
View Source

InstanceType

The instance type to create. One of &quot;DEVELOPMENT&quot; or &quot;PRODUCTION&quot;. Defaults to &quot;PRODUCTION&quot;.

Declaration
public Input<string> InstanceType { get; set; }
Property Value
Type Description
Input<System.String>
View Source

Name

The name (also called Instance Id in the Cloud Console) of the Cloud Bigtable instance.

Declaration
public Input<string> Name { get; set; }
Property Value
Type Description
Input<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 Input<string> Project { get; set; }
Property Value
Type Description
Input<System.String>
  • View Source
Back to top Copyright 2016-2020, Pulumi Corporation.