class Google::Apis::DataprocV1beta2::JobMetadata

Job Operation metadata.

Attributes

job_id[RW]

Output only. The job id. Corresponds to the JSON property `jobId` @return [String]

operation_type[RW]

Output only. Operation type. Corresponds to the JSON property `operationType` @return [String]

start_time[RW]

Output only. Job submission time. Corresponds to the JSON property `startTime` @return [String]

status[RW]

Dataproc job status. Corresponds to the JSON property `status` @return [Google::Apis::DataprocV1beta2::JobStatus]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/dataproc_v1beta2/classes.rb, line 1693
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/dataproc_v1beta2/classes.rb, line 1698
def update!(**args)
  @job_id = args[:job_id] if args.key?(:job_id)
  @operation_type = args[:operation_type] if args.key?(:operation_type)
  @start_time = args[:start_time] if args.key?(:start_time)
  @status = args[:status] if args.key?(:status)
end