Class: Google::Apis::CloudmonitoringV2beta2::PointDistributionOverflowBucket
- Inherits:
-
Object
- Object
- Google::Apis::CloudmonitoringV2beta2::PointDistributionOverflowBucket
- Defined in:
- generated/google/apis/cloudmonitoring_v2beta2/classes.rb,
generated/google/apis/cloudmonitoring_v2beta2/representations.rb,
generated/google/apis/cloudmonitoring_v2beta2/representations.rb
Overview
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.
Instance Attribute Summary collapse
-
#count ⇒ Fixnum
The number of events whose values are in the interval defined by this bucket.
-
#lower_bound ⇒ Float
The lower bound of the value interval of this bucket (inclusive).
Instance Method Summary collapse
-
#initialize(**args) ⇒ PointDistributionOverflowBucket
constructor
A new instance of PointDistributionOverflowBucket.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Google::Apis::Core::JsonObjectSupport
Methods included from Google::Apis::Core::Hashable
Constructor Details
#initialize(**args) ⇒ PointDistributionOverflowBucket
Returns a new instance of PointDistributionOverflowBucket
482 483 484 |
# File 'generated/google/apis/cloudmonitoring_v2beta2/classes.rb', line 482 def initialize(**args) update!(**args) end |
Instance Attribute Details
#count ⇒ Fixnum
The number of events whose values are in the interval defined by this bucket.
Corresponds to the JSON property count
475 476 477 |
# File 'generated/google/apis/cloudmonitoring_v2beta2/classes.rb', line 475 def count @count end |
#lower_bound ⇒ Float
The lower bound of the value interval of this bucket (inclusive).
Corresponds to the JSON property lowerBound
480 481 482 |
# File 'generated/google/apis/cloudmonitoring_v2beta2/classes.rb', line 480 def lower_bound @lower_bound end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
487 488 489 490 |
# 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 |