class Google::Apis::CloudmonitoringV2beta2::PointDistributionBucket
The histogram's bucket. Buckets that form the histogram of a distribution value. If the upper bound of a bucket, say U1, does not equal the lower bound of the next bucket, say L2, this means that there is no event in [U1, L2).
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]
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 455 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 460 def update!(**args) @count = args[:count] if args.key?(:count) @lower_bound = args[:lower_bound] if args.key?(:lower_bound) @upper_bound = args[:upper_bound] if args.key?(:upper_bound) end