Class: Google::Apis::DataplexV1::GoogleCloudDataplexV1DataScanExecutionStatus

Inherits:
Object
  • Object
show all
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

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudDataplexV1DataScanExecutionStatus

Returns a new instance of GoogleCloudDataplexV1DataScanExecutionStatus.



5554
5555
5556
# File 'lib/google/apis/dataplex_v1/classes.rb', line 5554

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#latest_job_create_timeString

Optional. The time when the DataScanJob execution was created. Corresponds to the JSON property latestJobCreateTime

Returns:

  • (String)


5542
5543
5544
# File 'lib/google/apis/dataplex_v1/classes.rb', line 5542

def latest_job_create_time
  @latest_job_create_time
end

#latest_job_end_timeString

Optional. The time when the latest DataScanJob ended. Corresponds to the JSON property latestJobEndTime

Returns:

  • (String)


5547
5548
5549
# File 'lib/google/apis/dataplex_v1/classes.rb', line 5547

def latest_job_end_time
  @latest_job_end_time
end

#latest_job_start_timeString

Optional. The time when the latest DataScanJob started. Corresponds to the JSON property latestJobStartTime

Returns:

  • (String)


5552
5553
5554
# File 'lib/google/apis/dataplex_v1/classes.rb', line 5552

def latest_job_start_time
  @latest_job_start_time
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



5559
5560
5561
5562
5563
# File 'lib/google/apis/dataplex_v1/classes.rb', line 5559

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