Show / Hide Table of Contents

Class InstanceConfig

A possible configuration for a Cloud Spanner instance. Configurations define the geographic placement of nodes and their replication.

Inheritance
System.Object
InstanceConfig
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 InstanceConfig : IDirectResponseSchema

Properties

DisplayName

The name of this instance configuration as it appears in UIs.

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

ETag

The ETag of the item.

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

Name

A unique identifier for the instance configuration. Values are of the form projects//instanceConfigs/a-z*

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

Replicas

The geographic placement of nodes in this instance configuration and their replication properties.

Declaration
[JsonProperty("replicas")]
public virtual IList<ReplicaInfo> Replicas { get; set; }
Property Value
Type Description
System.Collections.Generic.IList<ReplicaInfo>

Implements

IDirectResponseSchema
In This Article
Back to top