Class: Google::Apis::DataflowV1b3::StreamingComputationRanges

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/dataflow_v1b3/classes.rb,
lib/google/apis/dataflow_v1b3/representations.rb,
lib/google/apis/dataflow_v1b3/representations.rb

Overview

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ StreamingComputationRanges

Returns a new instance of StreamingComputationRanges.



5370
5371
5372
# File 'lib/google/apis/dataflow_v1b3/classes.rb', line 5370

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#computation_idString

The ID of the computation. Corresponds to the JSON property computationId

Returns:

  • (String)


5363
5364
5365
# File 'lib/google/apis/dataflow_v1b3/classes.rb', line 5363

def computation_id
  @computation_id
end

#range_assignmentsArray<Google::Apis::DataflowV1b3::KeyRangeDataDiskAssignment>

Data disk assignments for ranges from this computation. Corresponds to the JSON property rangeAssignments



5368
5369
5370
# File 'lib/google/apis/dataflow_v1b3/classes.rb', line 5368

def range_assignments
  @range_assignments
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



5375
5376
5377
5378
# File 'lib/google/apis/dataflow_v1b3/classes.rb', line 5375

def update!(**args)
  @computation_id = args[:computation_id] if args.key?(:computation_id)
  @range_assignments = args[:range_assignments] if args.key?(:range_assignments)
end