class Google::Apis::DataflowV1b3::StreamingSideInputLocation

Identifies the location of a streaming side input.

Attributes

state_family[RW]

Identifies the state family where this side input is stored. Corresponds to the JSON property `stateFamily` @return [String]

tag[RW]

Identifies the particular side input within the streaming Dataflow job. Corresponds to the JSON property `tag` @return [String]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/dataflow_v1b3/classes.rb, line 5420
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/dataflow_v1b3/classes.rb, line 5425
def update!(**args)
  @state_family = args[:state_family] if args.key?(:state_family)
  @tag = args[:tag] if args.key?(:tag)
end