Class: Google::Apis::DataprocV1beta2::JobStatus

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
generated/google/apis/dataproc_v1beta2/classes.rb,
generated/google/apis/dataproc_v1beta2/representations.rb,
generated/google/apis/dataproc_v1beta2/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.



1812
1813
1814
# File 'generated/google/apis/dataproc_v1beta2/classes.rb', line 1812

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

Instance Attribute Details

#detailsString

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

Returns:

  • (String)


1794
1795
1796
# File 'generated/google/apis/dataproc_v1beta2/classes.rb', line 1794

def details
  @details
end

#stateString

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

Returns:

  • (String)


1799
1800
1801
# File 'generated/google/apis/dataproc_v1beta2/classes.rb', line 1799

def state
  @state
end

#state_start_timeString

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

Returns:

  • (String)


1804
1805
1806
# File 'generated/google/apis/dataproc_v1beta2/classes.rb', line 1804

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)


1810
1811
1812
# File 'generated/google/apis/dataproc_v1beta2/classes.rb', line 1810

def substate
  @substate
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1817
1818
1819
1820
1821
1822
# File 'generated/google/apis/dataproc_v1beta2/classes.rb', line 1817

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