class Google::Apis::CloudmonitoringV2beta2::PointDistributionOverflowBucket
The overflow bucket is a special bucket that does not have the upperBound field; it includes all of the events that are no less than its lower 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]
lower_bound[RW]
The lower bound of the value interval of this bucket (inclusive). Corresponds to the JSON property `lowerBound` @return [Float]
Public Class Methods
new(**args)
click to toggle source
# File generated/google/apis/cloudmonitoring_v2beta2/classes.rb, line 482 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 487 def update!(**args) @count = args[:count] if args.key?(:count) @lower_bound = args[:lower_bound] if args.key?(:lower_bound) end