Show / Hide Table of Contents

Class KeyRangeInfo

A message representing information for a key range (possibly one key).

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

Properties

ContextValues

The list of context values for this key range.

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

EndKeyIndex

The index of the end key in indexed_keys.

Declaration
[JsonProperty("endKeyIndex")]
public virtual int? EndKeyIndex { get; set; }
Property Value
Type Description
System.Nullable<System.Int32>

ETag

The ETag of the item.

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

Info

Information about this key range, for all metrics.

Declaration
[JsonProperty("info")]
public virtual LocalizedString Info { get; set; }
Property Value
Type Description
LocalizedString

KeysCount

The number of keys this range covers.

Declaration
[JsonProperty("keysCount")]
public virtual long? KeysCount { get; set; }
Property Value
Type Description
System.Nullable<System.Int64>

Metric

The name of the metric. e.g. "latency".

Declaration
[JsonProperty("metric")]
public virtual LocalizedString Metric { get; set; }
Property Value
Type Description
LocalizedString

StartKeyIndex

The index of the start key in indexed_keys.

Declaration
[JsonProperty("startKeyIndex")]
public virtual int? StartKeyIndex { get; set; }
Property Value
Type Description
System.Nullable<System.Int32>

Unit

The unit of the metric. This is an unstructured field and will be mapped as is to the user.

Declaration
[JsonProperty("unit")]
public virtual LocalizedString Unit { get; set; }
Property Value
Type Description
LocalizedString

Value

The value of the metric.

Declaration
[JsonProperty("value")]
public virtual float? Value { get; set; }
Property Value
Type Description
System.Nullable<System.Single>

Implements

IDirectResponseSchema
In This Article
Back to top