class Google::Apis::SpannerV1::Scan
Scan
is a structure which describes Cloud Key Visualizer scan information.
Attributes
Additional information provided by the implementer. Corresponds to the JSON property `details` @return [Hash<String,Object>]
The upper bound for when the scan is defined. Corresponds to the JSON property `endTime` @return [String]
The unique name of the scan, specific to the Database
service implementing this interface. Corresponds to the JSON property `name` @return [String]
ScanData
contains Cloud Key Visualizer scan data used by the caller to construct a visualization. Corresponds to the JSON property `scanData` @return [Google::Apis::SpannerV1::ScanData]
A range of time (inclusive) for when the scan is defined. The lower bound for when the scan is defined. Corresponds to the JSON property `startTime` @return [String]
Public Class Methods
# File lib/google/apis/spanner_v1/classes.rb, line 3674 def initialize(**args) update!(**args) end
Public Instance Methods
Update properties of this object
# File lib/google/apis/spanner_v1/classes.rb, line 3679 def update!(**args) @details = args[:details] if args.key?(:details) @end_time = args[:end_time] if args.key?(:end_time) @name = args[:name] if args.key?(:name) @scan_data = args[:scan_data] if args.key?(:scan_data) @start_time = args[:start_time] if args.key?(:start_time) end