Class: Google::Apis::DataflowV1b3::JobExecutionStageInfo

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/dataflow_v1b3/classes.rb,
lib/google/apis/dataflow_v1b3/representations.rb,
lib/google/apis/dataflow_v1b3/representations.rb

Overview

Contains information about how a particular google.dataflow.v1beta3.Step will be executed.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ JobExecutionStageInfo

Returns a new instance of JobExecutionStageInfo.



2716
2717
2718
# File 'lib/google/apis/dataflow_v1b3/classes.rb', line 2716

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

Instance Attribute Details

#step_nameArray<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

Returns:

  • (Array<String>)


2714
2715
2716
# File 'lib/google/apis/dataflow_v1b3/classes.rb', line 2714

def step_name
  @step_name
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2721
2722
2723
# File 'lib/google/apis/dataflow_v1b3/classes.rb', line 2721

def update!(**args)
  @step_name = args[:step_name] if args.key?(:step_name)
end