Class: Google::Apis::DataflowV1b3::StreamingSideInputLocation
- Inherits:
-
Object
- Object
- Google::Apis::DataflowV1b3::StreamingSideInputLocation
- 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
Identifies the location of a streaming side input.
Instance Attribute Summary collapse
-
#state_family ⇒ String
Identifies the state family where this side input is stored.
-
#tag ⇒ String
Identifies the particular side input within the streaming Dataflow job.
Instance Method Summary collapse
-
#initialize(**args) ⇒ StreamingSideInputLocation
constructor
A new instance of StreamingSideInputLocation.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ StreamingSideInputLocation
Returns a new instance of StreamingSideInputLocation
4571 4572 4573 |
# File 'generated/google/apis/dataflow_v1b3/classes.rb', line 4571 def initialize(**args) update!(**args) end |
Instance Attribute Details
#state_family ⇒ String
Identifies the state family where this side input is stored.
Corresponds to the JSON property stateFamily
4564 4565 4566 |
# File 'generated/google/apis/dataflow_v1b3/classes.rb', line 4564 def state_family @state_family end |
#tag ⇒ String
Identifies the particular side input within the streaming Dataflow job.
Corresponds to the JSON property tag
4569 4570 4571 |
# File 'generated/google/apis/dataflow_v1b3/classes.rb', line 4569 def tag @tag end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
4576 4577 4578 4579 |
# File 'generated/google/apis/dataflow_v1b3/classes.rb', line 4576 def update!(**args) @state_family = args[:state_family] if args.key?(:state_family) @tag = args[:tag] if args.key?(:tag) end |