Show / Hide Table of Contents

Class Scan

Scan is a structure which describes Cloud Key Visualizer scan information.

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

Properties

Details

Additional information provided by the implementer.

Declaration
[JsonProperty("details")]
public virtual IDictionary<string, object> Details { get; set; }
Property Value
Type Description
System.Collections.Generic.IDictionary<System.String, System.Object>

EndTime

The upper bound for when the scan 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

Name

The unique name of the scan, specific to the Database service implementing this interface.

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

ScanData

Output only. Cloud Key Visualizer scan data. Note, this field is not available to the ListScans method.

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

StartTime

A range of time (inclusive) for when the scan is defined. The lower bound for when the scan 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