class Google::Apis::DataflowV1b3::ComputationTopology
All configuration data for a particular Computation.
Attributes
The ID of the computation. Corresponds to the JSON property `computationId` @return [String]
The inputs to the computation. Corresponds to the JSON property `inputs` @return [Array<Google::Apis::DataflowV1b3::StreamLocation>]
The key ranges processed by the computation. Corresponds to the JSON property `keyRanges` @return [Array<Google::Apis::DataflowV1b3::KeyRangeLocation>]
The outputs from the computation. Corresponds to the JSON property `outputs` @return [Array<Google::Apis::DataflowV1b3::StreamLocation>]
The state family values. Corresponds to the JSON property `stateFamilies` @return [Array<Google::Apis::DataflowV1b3::StateFamilyConfig>]
The system stage name. Corresponds to the JSON property `systemStageName` @return [String]
Public Class Methods
# File lib/google/apis/dataflow_v1b3/classes.rb, line 411 def initialize(**args) update!(**args) end
Public Instance Methods
Update properties of this object
# File lib/google/apis/dataflow_v1b3/classes.rb, line 416 def update!(**args) @computation_id = args[:computation_id] if args.key?(:computation_id) @inputs = args[:inputs] if args.key?(:inputs) @key_ranges = args[:key_ranges] if args.key?(:key_ranges) @outputs = args[:outputs] if args.key?(:outputs) @state_families = args[:state_families] if args.key?(:state_families) @system_stage_name = args[:system_stage_name] if args.key?(:system_stage_name) end