Class: Google::Apis::DataprocV1::JobStatus

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/dataproc_v1/classes.rb,
lib/google/apis/dataproc_v1/representations.rb,
lib/google/apis/dataproc_v1/representations.rb

Overview

Dataproc job status.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ JobStatus

Returns a new instance of JobStatus.



2856
2857
2858
# File 'lib/google/apis/dataproc_v1/classes.rb', line 2856

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

Instance Attribute Details

#detailsString

Optional. Output only. Job state details, such as an error description if the state is ERROR. Corresponds to the JSON property details

Returns:

  • (String)


2838
2839
2840
# File 'lib/google/apis/dataproc_v1/classes.rb', line 2838

def details
  @details
end

#stateString

Output only. A state message specifying the overall job state. Corresponds to the JSON property state

Returns:

  • (String)


2843
2844
2845
# File 'lib/google/apis/dataproc_v1/classes.rb', line 2843

def state
  @state
end

#state_start_timeString

Output only. The time when this state was entered. Corresponds to the JSON property stateStartTime

Returns:

  • (String)


2848
2849
2850
# File 'lib/google/apis/dataproc_v1/classes.rb', line 2848

def state_start_time
  @state_start_time
end

#substateString

Output only. Additional state information, which includes status reported by the agent. Corresponds to the JSON property substate

Returns:

  • (String)


2854
2855
2856
# File 'lib/google/apis/dataproc_v1/classes.rb', line 2854

def substate
  @substate
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2861
2862
2863
2864
2865
2866
# File 'lib/google/apis/dataproc_v1/classes.rb', line 2861

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