Class: Google::Apis::DataflowV1b3::ExecutionStageState
- Inherits:
-
Object
- Object
- Google::Apis::DataflowV1b3::ExecutionStageState
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/dataflow_v1b3/classes.rb,
generated/google/apis/dataflow_v1b3/representations.rb,
generated/google/apis/dataflow_v1b3/representations.rb
Overview
A message describing the state of a particular execution stage.
Instance Attribute Summary collapse
-
#current_state_time ⇒ String
The time at which the stage transitioned to this state.
-
#execution_stage_name ⇒ String
The name of the execution stage.
-
#execution_stage_state ⇒ String
Executions stage states allow the same set of values as JobState.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ExecutionStageState
constructor
A new instance of ExecutionStageState.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ ExecutionStageState
Returns a new instance of ExecutionStageState
2420 2421 2422 |
# File 'generated/google/apis/dataflow_v1b3/classes.rb', line 2420 def initialize(**args) update!(**args) end |
Instance Attribute Details
#current_state_time ⇒ String
The time at which the stage transitioned to this state.
Corresponds to the JSON property currentStateTime
2413 2414 2415 |
# File 'generated/google/apis/dataflow_v1b3/classes.rb', line 2413 def current_state_time @current_state_time end |
#execution_stage_name ⇒ String
The name of the execution stage.
Corresponds to the JSON property executionStageName
2408 2409 2410 |
# File 'generated/google/apis/dataflow_v1b3/classes.rb', line 2408 def execution_stage_name @execution_stage_name end |
#execution_stage_state ⇒ String
Executions stage states allow the same set of values as JobState.
Corresponds to the JSON property executionStageState
2418 2419 2420 |
# File 'generated/google/apis/dataflow_v1b3/classes.rb', line 2418 def execution_stage_state @execution_stage_state end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2425 2426 2427 2428 2429 |
# File 'generated/google/apis/dataflow_v1b3/classes.rb', line 2425 def update!(**args) @execution_stage_name = args[:execution_stage_name] if args.key?(:execution_stage_name) @current_state_time = args[:current_state_time] if args.key?(:current_state_time) @execution_stage_state = args[:execution_stage_state] if args.key?(:execution_stage_state) end |