class Google::Apis::SpannerV1::ScanData
ScanData
contains Cloud Key Visualizer scan data used by the caller to construct a visualization.
Attributes
data[RW]
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. Corresponds to the JSON property `data` @return [Google::Apis::SpannerV1::VisualizationData]
end_time[RW]
The upper bound for when the contained data is defined. Corresponds to the JSON property `endTime` @return [String]
start_time[RW]
A range of time (inclusive) for when the contained data is defined. The lower bound for when the contained data is defined. Corresponds to the JSON property `startTime` @return [String]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/spanner_v1/classes.rb, line 3711 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File lib/google/apis/spanner_v1/classes.rb, line 3716 def update!(**args) @data = args[:data] if args.key?(:data) @end_time = args[:end_time] if args.key?(:end_time) @start_time = args[:start_time] if args.key?(:start_time) end