Show / Hide Table of Contents

Class ScanData

ScanData contains Cloud Key Visualizer scan data used by the caller to construct a visualization.

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

Properties

Data

Cloud Key Visualizer scan data. The range of time this information covers is captured via the above time range fields. Note, this field is not available to the ListScans method.

Declaration
[JsonProperty("data")]
public virtual VisualizationData Data { get; set; }
Property Value
Type Description
VisualizationData

EndTime

The upper bound for when the contained data is defined.

Declaration
[JsonProperty("endTime")]
public virtual object EndTime { get; set; }
Property Value
Type Description
System.Object

ETag

The ETag of the item.

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

StartTime

A range of time (inclusive) for when the contained data is defined. The lower bound for when the contained data is defined.

Declaration
[JsonProperty("startTime")]
public virtual object StartTime { get; set; }
Property Value
Type Description
System.Object

Implements

IDirectResponseSchema
In This Article
Back to top