class Google::Apis::DataflowV1b3::ExecutionStageState
A message describing the state of a particular execution stage.
Attributes
current_state_time[RW]
The time at which the stage transitioned to this state. Corresponds to the JSON property `currentStateTime` @return [String]
execution_stage_name[RW]
The name of the execution stage. Corresponds to the JSON property `executionStageName` @return [String]
execution_stage_state[RW]
Executions stage states allow the same set of values as JobState. Corresponds to the JSON property `executionStageState` @return [String]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/dataflow_v1b3/classes.rb, line 1313 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File lib/google/apis/dataflow_v1b3/classes.rb, line 1318 def update!(**args) @current_state_time = args[:current_state_time] if args.key?(:current_state_time) @execution_stage_name = args[:execution_stage_name] if args.key?(:execution_stage_name) @execution_stage_state = args[:execution_stage_state] if args.key?(:execution_stage_state) end