Class: Google::Apis::DataflowV1b3::StreamingComputationRanges
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::DataflowV1b3::StreamingComputationRanges
 
- 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
Describes full or partial data disk assignment information of the computation ranges.
Instance Attribute Summary collapse
- 
  
    
      #computation_id  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The ID of the computation. 
- 
  
    
      #range_assignments  ⇒ Array<Google::Apis::DataflowV1b3::KeyRangeDataDiskAssignment> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Data disk assignments for ranges from this computation. 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ StreamingComputationRanges 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of StreamingComputationRanges. 
- 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    Update properties of this object. 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ StreamingComputationRanges
Returns a new instance of StreamingComputationRanges
| 4020 4021 4022 | # File 'generated/google/apis/dataflow_v1b3/classes.rb', line 4020 def initialize(**args) update!(**args) end | 
Instance Attribute Details
#computation_id ⇒ String
The ID of the computation.
Corresponds to the JSON property computationId
| 4013 4014 4015 | # File 'generated/google/apis/dataflow_v1b3/classes.rb', line 4013 def computation_id @computation_id end | 
#range_assignments ⇒ Array<Google::Apis::DataflowV1b3::KeyRangeDataDiskAssignment>
Data disk assignments for ranges from this computation.
Corresponds to the JSON property rangeAssignments
| 4018 4019 4020 | # File 'generated/google/apis/dataflow_v1b3/classes.rb', line 4018 def range_assignments @range_assignments end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 4025 4026 4027 4028 | # File 'generated/google/apis/dataflow_v1b3/classes.rb', line 4025 def update!(**args) @computation_id = args[:computation_id] if args.key?(:computation_id) @range_assignments = args[:range_assignments] if args.key?(:range_assignments) end |