Class: Google::Apis::MonitoringV3::Range
- Inherits:
 - 
      Object
      
        
- Object
 - Google::Apis::MonitoringV3::Range
 
 
- Includes:
 - Core::Hashable, Core::JsonObjectSupport
 
- Defined in:
 - generated/google/apis/monitoring_v3/classes.rb,
generated/google/apis/monitoring_v3/representations.rb,
generated/google/apis/monitoring_v3/representations.rb 
Overview
The range of the population values.
Instance Attribute Summary collapse
- 
  
    
      #max  ⇒ Float 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The maximum of the population values.
 - 
  
    
      #min  ⇒ Float 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The minimum of the population values.
 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ Range 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of Range.
 - 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
Update properties of this object.
 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ Range
Returns a new instance of Range
      2353 2354 2355  | 
    
      # File 'generated/google/apis/monitoring_v3/classes.rb', line 2353 def initialize(**args) update!(**args) end  | 
  
Instance Attribute Details
#max ⇒ Float
The maximum of the population values.
Corresponds to the JSON property max
      2346 2347 2348  | 
    
      # File 'generated/google/apis/monitoring_v3/classes.rb', line 2346 def max @max end  | 
  
#min ⇒ Float
The minimum of the population values.
Corresponds to the JSON property min
      2351 2352 2353  | 
    
      # File 'generated/google/apis/monitoring_v3/classes.rb', line 2351 def min @min end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      2358 2359 2360 2361  | 
    
      # File 'generated/google/apis/monitoring_v3/classes.rb', line 2358 def update!(**args) @max = args[:max] if args.key?(:max) @min = args[:min] if args.key?(:min) end  |