Class: Google::Apis::NetworkconnectivityV1alpha1::ExplicitBuckets
- Inherits:
-
Object
- Object
- Google::Apis::NetworkconnectivityV1alpha1::ExplicitBuckets
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/networkconnectivity_v1alpha1/classes.rb,
lib/google/apis/networkconnectivity_v1alpha1/representations.rb,
lib/google/apis/networkconnectivity_v1alpha1/representations.rb
Overview
Describing buckets with arbitrary user-provided width.
Instance Attribute Summary collapse
-
#bounds ⇒ Array<Float>
'bound' is a list of strictly increasing boundaries between buckets.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ExplicitBuckets
constructor
A new instance of ExplicitBuckets.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ ExplicitBuckets
Returns a new instance of ExplicitBuckets.
413 414 415 |
# File 'lib/google/apis/networkconnectivity_v1alpha1/classes.rb', line 413 def initialize(**args) update!(**args) end |
Instance Attribute Details
#bounds ⇒ Array<Float>
'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[i-1], bound[i]) 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[i] 0 < i < bound_size() bound[i-1] bound[i] i ==
bound_size() (overflow) bound[i-1] +inf
Corresponds to the JSON property bounds
411 412 413 |
# File 'lib/google/apis/networkconnectivity_v1alpha1/classes.rb', line 411 def bounds @bounds end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
418 419 420 |
# File 'lib/google/apis/networkconnectivity_v1alpha1/classes.rb', line 418 def update!(**args) @bounds = args[:bounds] if args.key?(:bounds) end |