class Google::Apis::DataflowV1b3::StreamLocation
Describes a stream of data, either as input to be processed or as output of a streaming Dataflow job.
Attributes
Identifies the location of a custom souce. Corresponds to the JSON property `customSourceLocation` @return [Google::Apis::DataflowV1b3::CustomSourceLocation]
Identifies a pubsub location to use for transferring data into or out of a streaming Dataflow job. Corresponds to the JSON property `pubsubLocation` @return [Google::Apis::DataflowV1b3::PubsubLocation]
Identifies the location of a streaming side input. Corresponds to the JSON property `sideInputLocation` @return [Google::Apis::DataflowV1b3::StreamingSideInputLocation]
Identifies the location of a streaming computation stage, for stage-to-stage communication. Corresponds to the JSON property `streamingStageLocation` @return [Google::Apis::DataflowV1b3::StreamingStageLocation]
Public Class Methods
# File lib/google/apis/dataflow_v1b3/classes.rb, line 5162 def initialize(**args) update!(**args) end
Public Instance Methods
Update properties of this object
# File lib/google/apis/dataflow_v1b3/classes.rb, line 5167 def update!(**args) @custom_source_location = args[:custom_source_location] if args.key?(:custom_source_location) @pubsub_location = args[:pubsub_location] if args.key?(:pubsub_location) @side_input_location = args[:side_input_location] if args.key?(:side_input_location) @streaming_stage_location = args[:streaming_stage_location] if args.key?(:streaming_stage_location) end