Show / Hide Table of Contents

Class PartitionResponse

The response for PartitionQuery or PartitionRead

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

Properties

ETag

The ETag of the item.

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

Partitions

Partitions created by this request.

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

Transaction

Transaction created by this request.

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

Implements

IDirectResponseSchema
In This Article
Back to top