Class: Google::Apis::DataflowV1b3::FloatingPointList
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::DataflowV1b3::FloatingPointList
 
- 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
A metric value representing a list of floating point numbers.
Instance Attribute Summary collapse
- 
  
    
      #elements  ⇒ Array<Float> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Elements of the list. 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ FloatingPointList 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of FloatingPointList. 
- 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    Update properties of this object. 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ FloatingPointList
Returns a new instance of FloatingPointList
| 1228 1229 1230 | # File 'generated/google/apis/dataflow_v1b3/classes.rb', line 1228 def initialize(**args) update!(**args) end | 
Instance Attribute Details
#elements ⇒ Array<Float>
Elements of the list.
Corresponds to the JSON property elements
| 1226 1227 1228 | # File 'generated/google/apis/dataflow_v1b3/classes.rb', line 1226 def elements @elements end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 1233 1234 1235 | # File 'generated/google/apis/dataflow_v1b3/classes.rb', line 1233 def update!(**args) @elements = args[:elements] if args.key?(:elements) end |