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.



2270
2271
2272
# File 'lib/google/apis/dataflow_v1b3/classes.rb', line 2270

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


2268
2269
2270
# File 'lib/google/apis/dataflow_v1b3/classes.rb', line 2268

def step_name
  @step_name
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2275
2276
2277
# File 'lib/google/apis/dataflow_v1b3/classes.rb', line 2275

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