Class: Google::Cloud::MigrationCenter::V1::Aggregation::Histogram
- Inherits:
-
Object
- Object
- Google::Cloud::MigrationCenter::V1::Aggregation::Histogram
- Extended by:
- Protobuf::MessageExts::ClassMethods
- Includes:
- Protobuf::MessageExts
- Defined in:
- proto_docs/google/cloud/migrationcenter/v1/migrationcenter.rb
Overview
Histogram of bucketed assets counts by field value.
Instance Attribute Summary collapse
-
#lower_bounds ⇒ ::Array<::Float>
Lower bounds of buckets.
Instance Attribute Details
#lower_bounds ⇒ ::Array<::Float>
Returns Lower bounds of buckets.
The response will contain n+1 buckets for n bounds.
The first bucket will count all assets for which the field value is
smaller than the first bound.
Subsequent buckets will count assets for which the field value is
greater or equal to a lower bound and smaller than the next one.
The last bucket will count assets for which the field value is greater or
equal to the final lower bound.
You can define up to 20 lower bounds.
3066 3067 3068 3069 |
# File 'proto_docs/google/cloud/migrationcenter/v1/migrationcenter.rb', line 3066 class Histogram include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end |