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
| 1785 1786 1787 | # File 'generated/google/apis/dataflow_v1b3/classes.rb', line 1785 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
| 1783 1784 1785 | # File 'generated/google/apis/dataflow_v1b3/classes.rb', line 1783 def step_name @step_name end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 1790 1791 1792 | # File 'generated/google/apis/dataflow_v1b3/classes.rb', line 1790 def update!(**args) @step_name = args[:step_name] if args.key?(:step_name) end |