Class: Google::Apis::SpannerV1::Scan
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::SpannerV1::Scan
 
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/spanner_v1/classes.rb,
 lib/google/apis/spanner_v1/representations.rb,
 lib/google/apis/spanner_v1/representations.rb
Overview
Scan is a structure which describes Cloud Key Visualizer scan information.
Instance Attribute Summary collapse
- 
  
    
      #details  ⇒ Hash<String,Object> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Additional information provided by the implementer. 
- 
  
    
      #end_time  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The upper bound for when the scan is defined. 
- 
  
    
      #name  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The unique name of the scan, specific to the Database service implementing this interface. 
- 
  
    
      #scan_data  ⇒ Google::Apis::SpannerV1::ScanData 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    ScanData contains Cloud Key Visualizer scan data used by the caller to construct a visualization. 
- 
  
    
      #start_time  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    A range of time (inclusive) for when the scan is defined. 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ Scan 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of Scan. 
- 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    Update properties of this object. 
Constructor Details
#initialize(**args) ⇒ Scan
Returns a new instance of Scan.
| 4020 4021 4022 | # File 'lib/google/apis/spanner_v1/classes.rb', line 4020 def initialize(**args) update!(**args) end | 
Instance Attribute Details
#details ⇒ Hash<String,Object>
Additional information provided by the implementer.
Corresponds to the JSON property details
| 3995 3996 3997 | # File 'lib/google/apis/spanner_v1/classes.rb', line 3995 def details @details end | 
#end_time ⇒ String
The upper bound for when the scan is defined.
Corresponds to the JSON property endTime
| 4000 4001 4002 | # File 'lib/google/apis/spanner_v1/classes.rb', line 4000 def end_time @end_time end | 
#name ⇒ String
The unique name of the scan, specific to the Database service implementing
this interface.
Corresponds to the JSON property name
| 4006 4007 4008 | # File 'lib/google/apis/spanner_v1/classes.rb', line 4006 def name @name end | 
#scan_data ⇒ Google::Apis::SpannerV1::ScanData
ScanData contains Cloud Key Visualizer scan data used by the caller to
construct a visualization.
Corresponds to the JSON property scanData
| 4012 4013 4014 | # File 'lib/google/apis/spanner_v1/classes.rb', line 4012 def scan_data @scan_data end | 
#start_time ⇒ String
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
| 4018 4019 4020 | # File 'lib/google/apis/spanner_v1/classes.rb', line 4018 def start_time @start_time end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 4025 4026 4027 4028 4029 4030 4031 | # File 'lib/google/apis/spanner_v1/classes.rb', line 4025 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 |