Class: Google::Apis::DataflowV1b3::StreamLocation
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::DataflowV1b3::StreamLocation
 
- 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
Describes a stream of data, either as input to be processed or as output of a streaming Dataflow job.
Instance Attribute Summary collapse
- 
  
    
      #custom_source_location  ⇒ Google::Apis::DataflowV1b3::CustomSourceLocation 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Identifies the location of a custom souce. 
- 
  
    
      #pubsub_location  ⇒ Google::Apis::DataflowV1b3::PubsubLocation 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Identifies a pubsub location to use for transferring data into or out of a streaming Dataflow job. 
- 
  
    
      #side_input_location  ⇒ Google::Apis::DataflowV1b3::StreamingSideInputLocation 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Identifies the location of a streaming side input. 
- 
  
    
      #streaming_stage_location  ⇒ Google::Apis::DataflowV1b3::StreamingStageLocation 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Identifies the location of a streaming computation stage, for stage-to-stage communication. 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ StreamLocation 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of StreamLocation. 
- 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    Update properties of this object. 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ StreamLocation
Returns a new instance of StreamLocation
| 3955 3956 3957 | # File 'generated/google/apis/dataflow_v1b3/classes.rb', line 3955 def initialize(**args) update!(**args) end | 
Instance Attribute Details
#custom_source_location ⇒ Google::Apis::DataflowV1b3::CustomSourceLocation
Identifies the location of a custom souce.
Corresponds to the JSON property customSourceLocation
| 3936 3937 3938 | # File 'generated/google/apis/dataflow_v1b3/classes.rb', line 3936 def custom_source_location @custom_source_location end | 
#pubsub_location ⇒ Google::Apis::DataflowV1b3::PubsubLocation
Identifies a pubsub location to use for transferring data into or
out of a streaming Dataflow job.
Corresponds to the JSON property pubsubLocation
| 3942 3943 3944 | # File 'generated/google/apis/dataflow_v1b3/classes.rb', line 3942 def pubsub_location @pubsub_location end | 
#side_input_location ⇒ Google::Apis::DataflowV1b3::StreamingSideInputLocation
Identifies the location of a streaming side input.
Corresponds to the JSON property sideInputLocation
| 3947 3948 3949 | # File 'generated/google/apis/dataflow_v1b3/classes.rb', line 3947 def side_input_location @side_input_location end | 
#streaming_stage_location ⇒ Google::Apis::DataflowV1b3::StreamingStageLocation
Identifies the location of a streaming computation stage, for
stage-to-stage communication.
Corresponds to the JSON property streamingStageLocation
| 3953 3954 3955 | # File 'generated/google/apis/dataflow_v1b3/classes.rb', line 3953 def streaming_stage_location @streaming_stage_location end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 3960 3961 3962 3963 3964 3965 | # File 'generated/google/apis/dataflow_v1b3/classes.rb', line 3960 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 |