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

custom_source_location[RW]

Identifies the location of a custom souce. Corresponds to the JSON property `customSourceLocation` @return [Google::Apis::DataflowV1b3::CustomSourceLocation]

pubsub_location[RW]

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]

side_input_location[RW]

Identifies the location of a streaming side input. Corresponds to the JSON property `sideInputLocation` @return [Google::Apis::DataflowV1b3::StreamingSideInputLocation]

streaming_stage_location[RW]

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

new(**args) click to toggle source
# File lib/google/apis/dataflow_v1b3/classes.rb, line 5162
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 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