class Google::Apis::MonitoringV3::Range

The range of the population values.

Attributes

max[RW]

The maximum of the population values. Corresponds to the JSON property `max` @return [Float]

min[RW]

The minimum of the population values. Corresponds to the JSON property `min` @return [Float]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/monitoring_v3/classes.rb, line 3321
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# 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