class Google::Apis::DataflowV1b3::WriteInstruction
An instruction that writes records. Takes one input, produces no outputs.
Attributes
input[RW]
An input of an instruction, as a reference to an output of a producer instruction. Corresponds to the JSON property `input` @return [Google::Apis::DataflowV1b3::InstructionInput]
sink[RW]
A sink that records can be encoded and written to. Corresponds to the JSON property `sink` @return [Google::Apis::DataflowV1b3::Sink]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/dataflow_v1b3/classes.rb, line 6742 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 6747 def update!(**args) @input = args[:input] if args.key?(:input) @sink = args[:sink] if args.key?(:sink) end