Class: Google::Apis::DataflowV1b3::ComputationTopology
- Inherits:
 - 
      Object
      
        
- Object
 - Google::Apis::DataflowV1b3::ComputationTopology
 
 
- 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
All configuration data for a particular Computation.
Instance Attribute Summary collapse
- 
  
    
      #computation_id  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The ID of the computation.
 - 
  
    
      #inputs  ⇒ Array<Google::Apis::DataflowV1b3::StreamLocation> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The inputs to the computation.
 - 
  
    
      #key_ranges  ⇒ Array<Google::Apis::DataflowV1b3::KeyRangeLocation> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The key ranges processed by the computation.
 - 
  
    
      #outputs  ⇒ Array<Google::Apis::DataflowV1b3::StreamLocation> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The outputs from the computation.
 - 
  
    
      #state_families  ⇒ Array<Google::Apis::DataflowV1b3::StateFamilyConfig> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The state family values.
 - 
  
    
      #system_stage_name  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The system stage name.
 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ ComputationTopology 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of ComputationTopology.
 - 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
Update properties of this object.
 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ ComputationTopology
Returns a new instance of ComputationTopology
      407 408 409  | 
    
      # File 'generated/google/apis/dataflow_v1b3/classes.rb', line 407 def initialize(**args) update!(**args) end  | 
  
Instance Attribute Details
#computation_id ⇒ String
The ID of the computation.
Corresponds to the JSON property computationId
      380 381 382  | 
    
      # File 'generated/google/apis/dataflow_v1b3/classes.rb', line 380 def computation_id @computation_id end  | 
  
#inputs ⇒ Array<Google::Apis::DataflowV1b3::StreamLocation>
The inputs to the computation.
Corresponds to the JSON property inputs
      385 386 387  | 
    
      # File 'generated/google/apis/dataflow_v1b3/classes.rb', line 385 def inputs @inputs end  | 
  
#key_ranges ⇒ Array<Google::Apis::DataflowV1b3::KeyRangeLocation>
The key ranges processed by the computation.
Corresponds to the JSON property keyRanges
      390 391 392  | 
    
      # File 'generated/google/apis/dataflow_v1b3/classes.rb', line 390 def key_ranges @key_ranges end  | 
  
#outputs ⇒ Array<Google::Apis::DataflowV1b3::StreamLocation>
The outputs from the computation.
Corresponds to the JSON property outputs
      395 396 397  | 
    
      # File 'generated/google/apis/dataflow_v1b3/classes.rb', line 395 def outputs @outputs end  | 
  
#state_families ⇒ Array<Google::Apis::DataflowV1b3::StateFamilyConfig>
The state family values.
Corresponds to the JSON property stateFamilies
      400 401 402  | 
    
      # File 'generated/google/apis/dataflow_v1b3/classes.rb', line 400 def state_families @state_families end  | 
  
#system_stage_name ⇒ String
The system stage name.
Corresponds to the JSON property systemStageName
      405 406 407  | 
    
      # File 'generated/google/apis/dataflow_v1b3/classes.rb', line 405 def system_stage_name @system_stage_name end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      412 413 414 415 416 417 418 419  | 
    
      # File 'generated/google/apis/dataflow_v1b3/classes.rb', line 412 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  |