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



3195
3196
3197
# File 'generated/google/apis/dataflow_v1b3/classes.rb', line 3195

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)


3188
3189
3190
# File 'generated/google/apis/dataflow_v1b3/classes.rb', line 3188

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)


3193
3194
3195
# File 'generated/google/apis/dataflow_v1b3/classes.rb', line 3193

def input_index
  @input_index
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



3200
3201
3202
3203
# File 'generated/google/apis/dataflow_v1b3/classes.rb', line 3200

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