Class: Google::Apis::MonitoringV3::Range

Inherits:
Object
  • Object
show all
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

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ Range

Returns a new instance of Range



2338
2339
2340
# File 'generated/google/apis/monitoring_v3/classes.rb', line 2338

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#maxFloat

The maximum of the population values. Corresponds to the JSON property max

Returns:

  • (Float)


2331
2332
2333
# File 'generated/google/apis/monitoring_v3/classes.rb', line 2331

def max
  @max
end

#minFloat

The minimum of the population values. Corresponds to the JSON property min

Returns:

  • (Float)


2336
2337
2338
# File 'generated/google/apis/monitoring_v3/classes.rb', line 2336

def min
  @min
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2343
2344
2345
2346
# File 'generated/google/apis/monitoring_v3/classes.rb', line 2343

def update!(**args)
  @max = args[:max] if args.key?(:max)
  @min = args[:min] if args.key?(:min)
end