Class: Google::Apis::DataplexV1::GoogleCloudDataplexV1DataScanExecutionStatus
- Inherits:
 - 
      Object
      
        
- Object
 - Google::Apis::DataplexV1::GoogleCloudDataplexV1DataScanExecutionStatus
 
 
- Includes:
 - Core::Hashable, Core::JsonObjectSupport
 
- Defined in:
 - lib/google/apis/dataplex_v1/classes.rb,
lib/google/apis/dataplex_v1/representations.rb,
lib/google/apis/dataplex_v1/representations.rb 
Overview
Status of the data scan execution.
Instance Attribute Summary collapse
- 
  
    
      #latest_job_create_time  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Optional.
 - 
  
    
      #latest_job_end_time  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The time when the latest DataScanJob ended.
 - 
  
    
      #latest_job_start_time  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The time when the latest DataScanJob started.
 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ GoogleCloudDataplexV1DataScanExecutionStatus 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of GoogleCloudDataplexV1DataScanExecutionStatus.
 - 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
Update properties of this object.
 
Constructor Details
#initialize(**args) ⇒ GoogleCloudDataplexV1DataScanExecutionStatus
Returns a new instance of GoogleCloudDataplexV1DataScanExecutionStatus.
      3413 3414 3415  | 
    
      # File 'lib/google/apis/dataplex_v1/classes.rb', line 3413 def initialize(**args) update!(**args) end  | 
  
Instance Attribute Details
#latest_job_create_time ⇒ String
Optional. The time when the DataScanJob execution was created.
Corresponds to the JSON property latestJobCreateTime
      3401 3402 3403  | 
    
      # File 'lib/google/apis/dataplex_v1/classes.rb', line 3401 def latest_job_create_time @latest_job_create_time end  | 
  
#latest_job_end_time ⇒ String
The time when the latest DataScanJob ended.
Corresponds to the JSON property latestJobEndTime
      3406 3407 3408  | 
    
      # File 'lib/google/apis/dataplex_v1/classes.rb', line 3406 def latest_job_end_time @latest_job_end_time end  | 
  
#latest_job_start_time ⇒ String
The time when the latest DataScanJob started.
Corresponds to the JSON property latestJobStartTime
      3411 3412 3413  | 
    
      # File 'lib/google/apis/dataplex_v1/classes.rb', line 3411 def latest_job_start_time @latest_job_start_time end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      3418 3419 3420 3421 3422  | 
    
      # File 'lib/google/apis/dataplex_v1/classes.rb', line 3418 def update!(**args) @latest_job_create_time = args[:latest_job_create_time] if args.key?(:latest_job_create_time) @latest_job_end_time = args[:latest_job_end_time] if args.key?(:latest_job_end_time) @latest_job_start_time = args[:latest_job_start_time] if args.key?(:latest_job_start_time) end  |