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

Inherits:
Object
  • Object
show all
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

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ JobExecutionStageInfo

Returns a new instance of JobExecutionStageInfo.



2249
2250
2251
# File 'generated/google/apis/dataflow_v1b3/classes.rb', line 2249

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>)


2247
2248
2249
# File 'generated/google/apis/dataflow_v1b3/classes.rb', line 2247

def step_name
  @step_name
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2254
2255
2256
# File 'generated/google/apis/dataflow_v1b3/classes.rb', line 2254

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