class Google::Apis::DataflowV1b3::SeqMapTaskOutputInfo

Information about an output of a SeqMapTask.

Attributes

sink[RW]

A sink that records can be encoded and written to. Corresponds to the JSON property `sink` @return [Google::Apis::DataflowV1b3::Sink]

tag[RW]

The id of the TupleTag the user code will tag the output value by. 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 4258
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 4263
def update!(**args)
  @sink = args[:sink] if args.key?(:sink)
  @tag = args[:tag] if args.key?(:tag)
end