class Google::Apis::ServicecontrolV1::ExplicitBuckets
Describing buckets with arbitrary user-provided width.
Attributes
'bound' is a list of strictly increasing boundaries between buckets. Note that a list of length N-1 defines N buckets because of fenceposting. See comments on `bucket_options` for details. The i'th finite bucket covers the interval [ bound, bound) where i ranges from 1 to bound_size() - 1. Note that there are no finite buckets at all if 'bound' only contains a single element; in that special case the single bound defines the boundary between the underflow and overflow buckets. bucket number lower bound upper bound i == 0 ( underflow) -inf bound 0 < i < bound_size() bound bound i == bound_size() (overflow) bound +inf Corresponds to the JSON property `bounds` @return [Array<Float>]
Public Class Methods
# File lib/google/apis/servicecontrol_v1/classes.rb, line 836 def initialize(**args) update!(**args) end
Public Instance Methods
Update properties of this object
# File lib/google/apis/servicecontrol_v1/classes.rb, line 841 def update!(**args) @bounds = args[:bounds] if args.key?(:bounds) end