Class: Google::Apis::DataflowV1b3::SideInputId

Inherits:
Object
  • Object
show all
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

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

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_nameString

The step that receives and usually consumes this side input. Corresponds to the JSON property declaringStepName

Returns:

  • (String)


3142
3143
3144
# File 'generated/google/apis/dataflow_v1b3/classes.rb', line 3142

def declaring_step_name
  @declaring_step_name
end

#input_indexFixnum

The index of the side input, from the list of non_parallel_inputs. Corresponds to the JSON property inputIndex

Returns:

  • (Fixnum)


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