class Google::Apis::DataflowV1b3::ComputationTopology

All configuration data for a particular Computation.

Attributes

computation_id[RW]

The ID of the computation. Corresponds to the JSON property `computationId` @return [String]

inputs[RW]

The inputs to the computation. Corresponds to the JSON property `inputs` @return [Array<Google::Apis::DataflowV1b3::StreamLocation>]

key_ranges[RW]

The key ranges processed by the computation. Corresponds to the JSON property `keyRanges` @return [Array<Google::Apis::DataflowV1b3::KeyRangeLocation>]

outputs[RW]

The outputs from the computation. Corresponds to the JSON property `outputs` @return [Array<Google::Apis::DataflowV1b3::StreamLocation>]

state_families[RW]

The state family values. Corresponds to the JSON property `stateFamilies` @return [Array<Google::Apis::DataflowV1b3::StateFamilyConfig>]

system_stage_name[RW]

The system stage name. Corresponds to the JSON property `systemStageName` @return [String]

Public Class Methods

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