class Google::Apis::DataprocV1beta2::JobStatus

Dataproc job status.

Attributes

details[RW]

Output only. Optional Job state details, such as an error description if the state is ERROR. Corresponds to the JSON property `details` @return [String]

state[RW]

Output only. A state message specifying the overall job state. Corresponds to the JSON property `state` @return [String]

state_start_time[RW]

Output only. The time when this state was entered. Corresponds to the JSON property `stateStartTime` @return [String]

substate[RW]

Output only. Additional state information, which includes status reported by the agent. Corresponds to the JSON property `substate` @return [String]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/dataproc_v1beta2/classes.rb, line 1823
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 1828
def update!(**args)
  @details = args[:details] if args.key?(:details)
  @state = args[:state] if args.key?(:state)
  @state_start_time = args[:state_start_time] if args.key?(:state_start_time)
  @substate = args[:substate] if args.key?(:substate)
end