Class: Google::Apis::DataflowV1b3::ParDoInstruction
- Inherits:
-
Object
- Object
- Google::Apis::DataflowV1b3::ParDoInstruction
- 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
An instruction that does a ParDo operation. Takes one main input and zero or more side inputs, and produces zero or more outputs. Runs user code.
Instance Attribute Summary collapse
-
#input ⇒ Google::Apis::DataflowV1b3::InstructionInput
An input of an instruction, as a reference to an output of a producer instruction.
-
#multi_output_infos ⇒ Array<Google::Apis::DataflowV1b3::MultiOutputInfo>
Information about each of the outputs, if user_fn is a MultiDoFn.
-
#num_outputs ⇒ Fixnum
The number of outputs.
-
#side_inputs ⇒ Array<Google::Apis::DataflowV1b3::SideInputInfo>
Zero or more side inputs.
-
#user_fn ⇒ Hash<String,Object>
The user function to invoke.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ParDoInstruction
constructor
A new instance of ParDoInstruction.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ ParDoInstruction
Returns a new instance of ParDoInstruction
2685 2686 2687 |
# File 'generated/google/apis/dataflow_v1b3/classes.rb', line 2685 def initialize(**args) update!(**args) end |
Instance Attribute Details
#input ⇒ Google::Apis::DataflowV1b3::InstructionInput
An input of an instruction, as a reference to an output of a
producer instruction.
Corresponds to the JSON property input
2663 2664 2665 |
# File 'generated/google/apis/dataflow_v1b3/classes.rb', line 2663 def input @input end |
#multi_output_infos ⇒ Array<Google::Apis::DataflowV1b3::MultiOutputInfo>
Information about each of the outputs, if user_fn is a MultiDoFn.
Corresponds to the JSON property multiOutputInfos
2668 2669 2670 |
# File 'generated/google/apis/dataflow_v1b3/classes.rb', line 2668 def multi_output_infos @multi_output_infos end |
#num_outputs ⇒ Fixnum
The number of outputs.
Corresponds to the JSON property numOutputs
2673 2674 2675 |
# File 'generated/google/apis/dataflow_v1b3/classes.rb', line 2673 def num_outputs @num_outputs end |
#side_inputs ⇒ Array<Google::Apis::DataflowV1b3::SideInputInfo>
Zero or more side inputs.
Corresponds to the JSON property sideInputs
2678 2679 2680 |
# File 'generated/google/apis/dataflow_v1b3/classes.rb', line 2678 def side_inputs @side_inputs end |
#user_fn ⇒ Hash<String,Object>
The user function to invoke.
Corresponds to the JSON property userFn
2683 2684 2685 |
# File 'generated/google/apis/dataflow_v1b3/classes.rb', line 2683 def user_fn @user_fn end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2690 2691 2692 2693 2694 2695 2696 |
# File 'generated/google/apis/dataflow_v1b3/classes.rb', line 2690 def update!(**args) @input = args[:input] if args.key?(:input) @multi_output_infos = args[:multi_output_infos] if args.key?(:multi_output_infos) @num_outputs = args[:num_outputs] if args.key?(:num_outputs) @side_inputs = args[:side_inputs] if args.key?(:side_inputs) @user_fn = args[:user_fn] if args.key?(:user_fn) end |