Class: Google::Apis::DataflowV1b3::WriteInstruction

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

An instruction that writes records. Takes one input, produces no outputs.

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) ⇒ WriteInstruction

Returns a new instance of WriteInstruction



5893
5894
5895
# File 'generated/google/apis/dataflow_v1b3/classes.rb', line 5893

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

Instance Attribute Details

#inputGoogle::Apis::DataflowV1b3::InstructionInput

An input of an instruction, as a reference to an output of a producer instruction. Corresponds to the JSON property input



5886
5887
5888
# File 'generated/google/apis/dataflow_v1b3/classes.rb', line 5886

def input
  @input
end

#sinkGoogle::Apis::DataflowV1b3::Sink

A sink that records can be encoded and written to. Corresponds to the JSON property sink



5891
5892
5893
# File 'generated/google/apis/dataflow_v1b3/classes.rb', line 5891

def sink
  @sink
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



5898
5899
5900
5901
# File 'generated/google/apis/dataflow_v1b3/classes.rb', line 5898

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