Class: Google::Cloud::MigrationCenter::V1::ReportSummary::HistogramChartData
- Inherits:
-
Object
- Object
- Google::Cloud::MigrationCenter::V1::ReportSummary::HistogramChartData
- Extended by:
- Protobuf::MessageExts::ClassMethods
- Includes:
- Protobuf::MessageExts
- Defined in:
- proto_docs/google/cloud/migrationcenter/v1/migrationcenter.rb
Overview
A Histogram Chart shows a distribution of values into buckets, showing a count of values which fall into a bucket.
Defined Under Namespace
Classes: Bucket
Instance Attribute Summary collapse
-
#buckets ⇒ ::Array<::Google::Cloud::MigrationCenter::V1::ReportSummary::HistogramChartData::Bucket>
Buckets in the histogram.
Instance Attribute Details
#buckets ⇒ ::Array<::Google::Cloud::MigrationCenter::V1::ReportSummary::HistogramChartData::Bucket>
Returns Buckets in the histogram.
There will be n+1
buckets matching n
lower bounds in the request.
The first bucket will be from -infinity to the first bound.
Subsequent buckets will be between one bound and the next.
The final bucket will be from the final bound to infinity.
3543 3544 3545 3546 3547 3548 3549 3550 3551 3552 3553 3554 3555 3556 3557 3558 3559 3560 3561 3562 3563 3564 |
# File 'proto_docs/google/cloud/migrationcenter/v1/migrationcenter.rb', line 3543 class HistogramChartData include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # A histogram bucket with a lower and upper bound, and a count of items # with a field value between those bounds. # The lower bound is inclusive and the upper bound is exclusive. # Lower bound may be -infinity and upper bound may be infinity. # @!attribute [rw] lower_bound # @return [::Integer] # Lower bound - inclusive. # @!attribute [rw] upper_bound # @return [::Integer] # Upper bound - exclusive. # @!attribute [rw] count # @return [::Integer] # Count of items in the bucket. class Bucket include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end end |