Class: Google::Apis::DataflowV1b3::StreamingComputationConfig
- Inherits:
-
Object
- Object
- Google::Apis::DataflowV1b3::StreamingComputationConfig
- 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
Configuration information for a single streaming computation.
Instance Attribute Summary collapse
-
#computation_id ⇒ String
Unique identifier for this computation.
-
#instructions ⇒ Array<Google::Apis::DataflowV1b3::ParallelInstruction>
Instructions that comprise the computation.
-
#stage_name ⇒ String
Stage name of this computation.
-
#system_name ⇒ String
System defined name for this computation.
Instance Method Summary collapse
-
#initialize(**args) ⇒ StreamingComputationConfig
constructor
A new instance of StreamingComputationConfig.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ StreamingComputationConfig
Returns a new instance of StreamingComputationConfig
1200 1201 1202 |
# File 'generated/google/apis/dataflow_v1b3/classes.rb', line 1200 def initialize(**args) update!(**args) end |
Instance Attribute Details
#computation_id ⇒ String
Unique identifier for this computation.
Corresponds to the JSON property computationId
1183 1184 1185 |
# File 'generated/google/apis/dataflow_v1b3/classes.rb', line 1183 def computation_id @computation_id end |
#instructions ⇒ Array<Google::Apis::DataflowV1b3::ParallelInstruction>
Instructions that comprise the computation.
Corresponds to the JSON property instructions
1198 1199 1200 |
# File 'generated/google/apis/dataflow_v1b3/classes.rb', line 1198 def instructions @instructions end |
#stage_name ⇒ String
Stage name of this computation.
Corresponds to the JSON property stageName
1193 1194 1195 |
# File 'generated/google/apis/dataflow_v1b3/classes.rb', line 1193 def stage_name @stage_name end |
#system_name ⇒ String
System defined name for this computation.
Corresponds to the JSON property systemName
1188 1189 1190 |
# File 'generated/google/apis/dataflow_v1b3/classes.rb', line 1188 def system_name @system_name end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1205 1206 1207 1208 1209 1210 |
# File 'generated/google/apis/dataflow_v1b3/classes.rb', line 1205 def update!(**args) @computation_id = args[:computation_id] if args.key?(:computation_id) @system_name = args[:system_name] if args.key?(:system_name) @stage_name = args[:stage_name] if args.key?(:stage_name) @instructions = args[:instructions] if args.key?(:instructions) end |