Class: Google::Apis::DataflowV1b3::SideInputId
- Inherits:
-
Object
- Object
- Google::Apis::DataflowV1b3::SideInputId
- 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
Uniquely identifies a side input.
Instance Attribute Summary collapse
-
#declaring_step_name ⇒ String
The step that receives and usually consumes this side input.
-
#input_index ⇒ Fixnum
The index of the side input, from the list of non_parallel_inputs.
Instance Method Summary collapse
-
#initialize(**args) ⇒ SideInputId
constructor
A new instance of SideInputId.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ SideInputId
Returns a new instance of SideInputId
3149 3150 3151 |
# File 'generated/google/apis/dataflow_v1b3/classes.rb', line 3149 def initialize(**args) update!(**args) end |
Instance Attribute Details
#declaring_step_name ⇒ String
The step that receives and usually consumes this side input.
Corresponds to the JSON property declaringStepName
3142 3143 3144 |
# File 'generated/google/apis/dataflow_v1b3/classes.rb', line 3142 def declaring_step_name @declaring_step_name end |
#input_index ⇒ Fixnum
The index of the side input, from the list of non_parallel_inputs.
Corresponds to the JSON property inputIndex
3147 3148 3149 |
# File 'generated/google/apis/dataflow_v1b3/classes.rb', line 3147 def input_index @input_index end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
3154 3155 3156 3157 |
# File 'generated/google/apis/dataflow_v1b3/classes.rb', line 3154 def update!(**args) @declaring_step_name = args[:declaring_step_name] if args.key?(:declaring_step_name) @input_index = args[:input_index] if args.key?(:input_index) end |