class Google::Apis::CloudmonitoringV2beta2::PointDistributionUnderflowBucket
The underflow bucket is a special bucket that does not have the lowerBound field; it includes all of the events that are less than its upper bound.
Attributes
count[RW]
The number of events whose values are in the interval defined by this bucket. Corresponds to the JSON property `count` @return [String]
upper_bound[RW]
The upper bound of the value interval of this bucket (exclusive). Corresponds to the JSON property `upperBound` @return [Float]
Public Class Methods
new(**args)
click to toggle source
# File generated/google/apis/cloudmonitoring_v2beta2/classes.rb, line 508 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File generated/google/apis/cloudmonitoring_v2beta2/classes.rb, line 513 def update!(**args) @count = args[:count] if args.key?(:count) @upper_bound = args[:upper_bound] if args.key?(:upper_bound) end