Class: Google::Apis::DataflowV1b3::SeqMapTask
- Inherits:
-
Object
- Object
- Google::Apis::DataflowV1b3::SeqMapTask
- 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
Describes a particular function to invoke.
Instance Attribute Summary collapse
-
#inputs ⇒ Array<Google::Apis::DataflowV1b3::SideInputInfo>
Information about each of the inputs.
-
#name ⇒ String
The user-provided name of the SeqDo operation.
-
#output_infos ⇒ Array<Google::Apis::DataflowV1b3::SeqMapTaskOutputInfo>
Information about each of the outputs.
-
#stage_name ⇒ String
System-defined name of the stage containing the SeqDo operation.
-
#system_name ⇒ String
System-defined name of the SeqDo operation.
-
#user_fn ⇒ Hash<String,Object>
The user function to invoke.
Instance Method Summary collapse
-
#initialize(**args) ⇒ SeqMapTask
constructor
A new instance of SeqMapTask.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ SeqMapTask
Returns a new instance of SeqMapTask
1341 1342 1343 |
# File 'generated/google/apis/dataflow_v1b3/classes.rb', line 1341 def initialize(**args) update!(**args) end |
Instance Attribute Details
#inputs ⇒ Array<Google::Apis::DataflowV1b3::SideInputInfo>
Information about each of the inputs.
Corresponds to the JSON property inputs
1322 1323 1324 |
# File 'generated/google/apis/dataflow_v1b3/classes.rb', line 1322 def inputs @inputs end |
#name ⇒ String
The user-provided name of the SeqDo operation.
Corresponds to the JSON property name
1312 1313 1314 |
# File 'generated/google/apis/dataflow_v1b3/classes.rb', line 1312 def name @name end |
#output_infos ⇒ Array<Google::Apis::DataflowV1b3::SeqMapTaskOutputInfo>
Information about each of the outputs.
Corresponds to the JSON property outputInfos
1317 1318 1319 |
# File 'generated/google/apis/dataflow_v1b3/classes.rb', line 1317 def output_infos @output_infos end |
#stage_name ⇒ String
System-defined name of the stage containing the SeqDo operation.
Unique across the workflow.
Corresponds to the JSON property stageName
1334 1335 1336 |
# File 'generated/google/apis/dataflow_v1b3/classes.rb', line 1334 def stage_name @stage_name end |
#system_name ⇒ String
System-defined name of the SeqDo operation.
Unique across the workflow.
Corresponds to the JSON property systemName
1328 1329 1330 |
# File 'generated/google/apis/dataflow_v1b3/classes.rb', line 1328 def system_name @system_name end |
#user_fn ⇒ Hash<String,Object>
The user function to invoke.
Corresponds to the JSON property userFn
1339 1340 1341 |
# File 'generated/google/apis/dataflow_v1b3/classes.rb', line 1339 def user_fn @user_fn end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1346 1347 1348 1349 1350 1351 1352 1353 |
# File 'generated/google/apis/dataflow_v1b3/classes.rb', line 1346 def update!(**args) @name = args[:name] if args.key?(:name) @output_infos = args[:output_infos] if args.key?(:output_infos) @inputs = args[:inputs] if args.key?(:inputs) @system_name = args[:system_name] if args.key?(:system_name) @stage_name = args[:stage_name] if args.key?(:stage_name) @user_fn = args[:user_fn] if args.key?(:user_fn) end |