Class: Google::Apis::ServicecontrolV1::ExponentialBuckets
- Inherits:
-
Object
- Object
- Google::Apis::ServicecontrolV1::ExponentialBuckets
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/servicecontrol_v1/classes.rb,
generated/google/apis/servicecontrol_v1/representations.rb,
generated/google/apis/servicecontrol_v1/representations.rb
Overview
Describing buckets with exponentially growing width.
Instance Attribute Summary collapse
-
#growth_factor ⇒ Float
The i'th exponential bucket covers the interval [scale * growth_factor^(i-1), scale * growth_factor^i) where i ranges from 1 to num_finite_buckets inclusive.
-
#num_finite_buckets ⇒ Fixnum
The number of finite buckets.
-
#scale ⇒ Float
The i'th exponential bucket covers the interval [scale * growth_factor^(i-1), scale * growth_factor^i) where i ranges from 1 to num_finite_buckets inclusive.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ExponentialBuckets
constructor
A new instance of ExponentialBuckets.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ ExponentialBuckets
Returns a new instance of ExponentialBuckets
1485 1486 1487 |
# File 'generated/google/apis/servicecontrol_v1/classes.rb', line 1485 def initialize(**args) update!(**args) end |
Instance Attribute Details
#growth_factor ⇒ Float
The i'th exponential bucket covers the interval
[scale * growth_factor^(i-1), scale * growth_factor^i)
where i ranges from 1 to num_finite_buckets inclusive.
Must be larger than 1.0.
Corresponds to the JSON property growthFactor
1468 1469 1470 |
# File 'generated/google/apis/servicecontrol_v1/classes.rb', line 1468 def growth_factor @growth_factor end |
#num_finite_buckets ⇒ Fixnum
The number of finite buckets. With the underflow and overflow buckets,
the total number of buckets is num_finite_buckets
+ 2.
See comments on bucket_options
for details.
Corresponds to the JSON property numFiniteBuckets
1483 1484 1485 |
# File 'generated/google/apis/servicecontrol_v1/classes.rb', line 1483 def num_finite_buckets @num_finite_buckets end |
#scale ⇒ Float
The i'th exponential bucket covers the interval
[scale * growth_factor^(i-1), scale * growth_factor^i)
where i ranges from 1 to num_finite_buckets inclusive.
Must be > 0.
Corresponds to the JSON property scale
1476 1477 1478 |
# File 'generated/google/apis/servicecontrol_v1/classes.rb', line 1476 def scale @scale end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1490 1491 1492 1493 1494 |
# File 'generated/google/apis/servicecontrol_v1/classes.rb', line 1490 def update!(**args) @growth_factor = args[:growth_factor] if args.key?(:growth_factor) @scale = args[:scale] if args.key?(:scale) @num_finite_buckets = args[:num_finite_buckets] if args.key?(:num_finite_buckets) end |