class Google::Apis::MonitoringV3::GoogleMonitoringV3Range

Range of numerical values within min and max.

Attributes

max[RW]

Range maximum. Corresponds to the JSON property `max` @return [Float]

min[RW]

Range minimum. 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 1601
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 1606
def update!(**args)
  @max = args[:max] if args.key?(:max)
  @min = args[:min] if args.key?(:min)
end