Class CreateInstanceRequest
Request message for BigtableInstanceAdmin.CreateInstance.
Implements
Inherited Members
Namespace: Google.Apis.BigtableAdmin.v2.Data
Assembly: Google.Apis.BigtableAdmin.v2.dll
Syntax
public class CreateInstanceRequest : IDirectResponseSchema
Properties
Clusters
Required. The clusters to be created within the instance, mapped by desired cluster ID, e.g., just
mycluster
rather than projects/myproject/instances/myinstance/clusters/mycluster
. Fields marked
OutputOnly
must be left blank.
Declaration
[JsonProperty("clusters")]
public virtual IDictionary<string, Cluster> Clusters { get; set; }
Property Value
Type | Description |
---|---|
IDictionary<string, Cluster> |
ETag
The ETag of the item.
Declaration
public virtual string ETag { get; set; }
Property Value
Type | Description |
---|---|
string |
Instance
Required. The instance to create. Fields marked OutputOnly
must be left blank.
Declaration
[JsonProperty("instance")]
public virtual Instance Instance { get; set; }
Property Value
Type | Description |
---|---|
Instance |
InstanceId
Required. The ID to be used when referring to the new instance within its project, e.g., just myinstance
rather than projects/myproject/instances/myinstance
.
Declaration
[JsonProperty("instanceId")]
public virtual string InstanceId { get; set; }
Property Value
Type | Description |
---|---|
string |
Parent
Required. The unique name of the project in which to create the new instance. Values are of the form
projects/{project}
.
Declaration
[JsonProperty("parent")]
public virtual string Parent { get; set; }
Property Value
Type | Description |
---|---|
string |