Class: Google::Apis::DataflowV1b3::Step
- Inherits:
-
Object
- Object
- Google::Apis::DataflowV1b3::Step
- 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
Defines a particular step within a Cloud Dataflow job. A job consists of multiple steps, each of which performs some specific operation as part of the overall job. Data is typically passed from one step to another as part of the job. Here's an example of a sequence of steps which together implement a Map- Reduce job: * Read a collection of data from some source, parsing the collection's elements. * Validate the elements. * Apply a user-defined function to map each element to some value and extract an element-specific key value. * Group elements with the same key into a single element with that key, transforming a multiply-keyed collection into a uniquely-keyed collection. * Write the elements out to some data sink. Note that the Cloud Dataflow service may be used to run many different types of jobs, not just Map-Reduce.
Instance Attribute Summary collapse
-
#kind ⇒ String
The kind of step in the Cloud Dataflow job.
-
#name ⇒ String
The name that identifies the step.
-
#properties ⇒ Hash<String,Object>
Named properties associated with the step.
Instance Method Summary collapse
-
#initialize(**args) ⇒ Step
constructor
A new instance of Step.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ Step
Returns a new instance of Step.
5236 5237 5238 |
# File 'lib/google/apis/dataflow_v1b3/classes.rb', line 5236 def initialize(**args) update!(**args) end |
Instance Attribute Details
#kind ⇒ String
The kind of step in the Cloud Dataflow job.
Corresponds to the JSON property kind
5221 5222 5223 |
# File 'lib/google/apis/dataflow_v1b3/classes.rb', line 5221 def kind @kind end |
#name ⇒ String
The name that identifies the step. This must be unique for each step with
respect to all other steps in the Cloud Dataflow job.
Corresponds to the JSON property name
5227 5228 5229 |
# File 'lib/google/apis/dataflow_v1b3/classes.rb', line 5227 def name @name end |
#properties ⇒ Hash<String,Object>
Named properties associated with the step. Each kind of predefined step has
its own required set of properties. Must be provided on Create. Only retrieved
with JOB_VIEW_ALL.
Corresponds to the JSON property properties
5234 5235 5236 |
# File 'lib/google/apis/dataflow_v1b3/classes.rb', line 5234 def properties @properties end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
5241 5242 5243 5244 5245 |
# File 'lib/google/apis/dataflow_v1b3/classes.rb', line 5241 def update!(**args) @kind = args[:kind] if args.key?(:kind) @name = args[:name] if args.key?(:name) @properties = args[:properties] if args.key?(:properties) end |