class Google::Apis::SpannerV1::Scan

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

Attributes

details[RW]

Additional information provided by the implementer. Corresponds to the JSON property `details` @return [Hash<String,Object>]

end_time[RW]

The upper bound for when the scan is defined. Corresponds to the JSON property `endTime` @return [String]

name[RW]

The unique name of the scan, specific to the Database service implementing this interface. Corresponds to the JSON property `name` @return [String]

scan_data[RW]

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]

start_time[RW]

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

new(**args) click to toggle source
# File lib/google/apis/spanner_v1/classes.rb, line 3674
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 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