Class: Google::Apis::DiscoveryengineV1::GoogleApiDistributionBucketOptionsExplicit
- Inherits:
-
Object
- Object
- Google::Apis::DiscoveryengineV1::GoogleApiDistributionBucketOptionsExplicit
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/discoveryengine_v1/classes.rb,
lib/google/apis/discoveryengine_v1/representations.rb,
lib/google/apis/discoveryengine_v1/representations.rb
Overview
Specifies a set of buckets with arbitrary widths. There are size(bounds) + 1
(= N) buckets. Bucket i
has the following boundaries: Upper bound (0 <= i <
N-1): bounds[i] Lower bound (1 <= i < N); bounds[i - 1] The bounds
field
must contain at least one element. If bounds
has only one element, then
there are no finite buckets, and that single element is the common boundary of
the overflow and underflow buckets.
Instance Attribute Summary collapse
-
#bounds ⇒ Array<Float>
The values must be monotonically increasing.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleApiDistributionBucketOptionsExplicit
constructor
A new instance of GoogleApiDistributionBucketOptionsExplicit.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleApiDistributionBucketOptionsExplicit
Returns a new instance of GoogleApiDistributionBucketOptionsExplicit.
191 192 193 |
# File 'lib/google/apis/discoveryengine_v1/classes.rb', line 191 def initialize(**args) update!(**args) end |
Instance Attribute Details
#bounds ⇒ Array<Float>
The values must be monotonically increasing.
Corresponds to the JSON property bounds
189 190 191 |
# File 'lib/google/apis/discoveryengine_v1/classes.rb', line 189 def bounds @bounds end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
196 197 198 |
# File 'lib/google/apis/discoveryengine_v1/classes.rb', line 196 def update!(**args) @bounds = args[:bounds] if args.key?(:bounds) end |