Show / Hide Table of Contents

Class CreateInstanceRequest

The request for CreateInstance.

Inheritance
System.Object
CreateInstanceRequest
Implements
IDirectResponseSchema
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: Google.Apis.Spanner.v1.Data
Assembly: Google.Apis.Spanner.v1.dll
Syntax
public class CreateInstanceRequest : IDirectResponseSchema

Properties

ETag

The ETag of the item.

Declaration
public virtual string ETag { get; set; }
Property Value
Type Description
System.String

Instance

Required. The instance to create. The name may be omitted, but if specified must be /instances/.

Declaration
[JsonProperty("instance")]
public virtual Instance Instance { get; set; }
Property Value
Type Description
Instance

InstanceId

Required. The ID of the instance to create. Valid identifiers are of the form a-z*[a-z0-9] and must be between 2 and 64 characters in length.

Declaration
[JsonProperty("instanceId")]
public virtual string InstanceId { get; set; }
Property Value
Type Description
System.String

Implements

IDirectResponseSchema
In This Article
Back to top