ExplicitArgs

data class ExplicitArgs(val bounds: Output<List<Double>>? = null) : ConvertibleToJava<ExplicitArgs>

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): boundsi Lower bound (1 <= i < N); boundsi - 1The 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.

Constructors

Link copied to clipboard
constructor(bounds: Output<List<Double>>? = null)

Properties

Link copied to clipboard
val bounds: Output<List<Double>>? = null

The values must be monotonically increasing.

Functions

Link copied to clipboard
open override fun toJava(): ExplicitArgs