Class: Google::Apis::DataflowV1b3::JobExecutionStageInfo
- Inherits:
-
Object
- Object
- Google::Apis::DataflowV1b3::JobExecutionStageInfo
- 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
Contains information about how a particular google.dataflow.v1beta3.Step will be executed.
Instance Attribute Summary collapse
-
#step_name ⇒ Array<String>
The steps associated with the execution stage.
Instance Method Summary collapse
-
#initialize(**args) ⇒ JobExecutionStageInfo
constructor
A new instance of JobExecutionStageInfo.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ JobExecutionStageInfo
Returns a new instance of JobExecutionStageInfo
1936 1937 1938 |
# File 'generated/google/apis/dataflow_v1b3/classes.rb', line 1936 def initialize(**args) update!(**args) end |
Instance Attribute Details
#step_name ⇒ Array<String>
The steps associated with the execution stage.
Note that stages may have several steps, and that a given step
might be run by more than one stage.
Corresponds to the JSON property stepName
1934 1935 1936 |
# File 'generated/google/apis/dataflow_v1b3/classes.rb', line 1934 def step_name @step_name end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1941 1942 1943 |
# File 'generated/google/apis/dataflow_v1b3/classes.rb', line 1941 def update!(**args) @step_name = args[:step_name] if args.key?(:step_name) end |