class Google::Apis::DataflowV1b3::StreamingComputationRanges

Describes full or partial data disk assignment information of the computation ranges.

Attributes

computation_id[RW]

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

range_assignments[RW]

Data disk assignments for ranges from this computation. Corresponds to the JSON property `rangeAssignments` @return [Array<Google::Apis::DataflowV1b3::KeyRangeDataDiskAssignment>]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/dataflow_v1b3/classes.rb, line 5258
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 5263
def update!(**args)
  @computation_id = args[:computation_id] if args.key?(:computation_id)
  @range_assignments = args[:range_assignments] if args.key?(:range_assignments)
end