Class: Google::Apis::MonitoringV3::Range
- Inherits:
-
Object
- Object
- Google::Apis::MonitoringV3::Range
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/monitoring_v3/classes.rb,
lib/google/apis/monitoring_v3/representations.rb,
lib/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.
Constructor Details
#initialize(**args) ⇒ Range
Returns a new instance of Range.
3321 3322 3323 |
# File 'lib/google/apis/monitoring_v3/classes.rb', line 3321 def initialize(**args) update!(**args) end |
Instance Attribute Details
#max ⇒ Float
The maximum of the population values.
Corresponds to the JSON property max
3314 3315 3316 |
# File 'lib/google/apis/monitoring_v3/classes.rb', line 3314 def max @max end |
#min ⇒ Float
The minimum of the population values.
Corresponds to the JSON property min
3319 3320 3321 |
# File 'lib/google/apis/monitoring_v3/classes.rb', line 3319 def min @min end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
3326 3327 3328 3329 |
# File 'lib/google/apis/monitoring_v3/classes.rb', line 3326 def update!(**args) @max = args[:max] if args.key?(:max) @min = args[:min] if args.key?(:min) end |