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.
3573 3574 3575 3576 3577 3578 3579 3580 3581 3582 3583 3584 3585 3586 3587 3588 3589 3590 3591 3592 3593 3594 |
# File 'proto_docs/google/cloud/migrationcenter/v1/migrationcenter.rb', line 3573 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 |