Class: Google::Apis::DataflowV1b3::StreamingSideInputLocation

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

Identifies the location of a streaming 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) ⇒ StreamingSideInputLocation

Returns a new instance of StreamingSideInputLocation



4633
4634
4635
# File 'generated/google/apis/dataflow_v1b3/classes.rb', line 4633

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#state_familyString

Identifies the state family where this side input is stored. Corresponds to the JSON property stateFamily

Returns:

  • (String)


4631
4632
4633
# File 'generated/google/apis/dataflow_v1b3/classes.rb', line 4631

def state_family
  @state_family
end

#tagString

Identifies the particular side input within the streaming Dataflow job. Corresponds to the JSON property tag

Returns:

  • (String)


4626
4627
4628
# File 'generated/google/apis/dataflow_v1b3/classes.rb', line 4626

def tag
  @tag
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



4638
4639
4640
4641
# File 'generated/google/apis/dataflow_v1b3/classes.rb', line 4638

def update!(**args)
  @tag = args[:tag] if args.key?(:tag)
  @state_family = args[:state_family] if args.key?(:state_family)
end