Show / Hide Table of Contents

Class ListInstancesResponse

The response for ListInstances.

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

Properties

ETag

The ETag of the item.

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

Instances

The list of requested instances.

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

NextPageToken

next_page_token can be sent in a subsequent ListInstances call to fetch more of the matching instances.

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

Unreachable

The list of unreachable instances. It includes the names of instances whose metadata could not be retrieved within instance_deadline.

Declaration
[JsonProperty("unreachable")]
public virtual IList<string> Unreachable { get; set; }
Property Value
Type Description
System.Collections.Generic.IList<System.String>

Implements

IDirectResponseSchema
In This Article
Back to top