ExponentialArgs

data class ExponentialArgs(val growthFactor: Output<Double>? = null, val numFiniteBuckets: Output<Int>? = null, val scale: Output<Double>? = null) : ConvertibleToJava<ExponentialArgs>

Specifies an exponential sequence of buckets that have a width that is proportional to the value of the lower bound. Each bucket represents a constant relative uncertainty on a specific value in the bucket.There are num_finite_buckets + 2 (= N) buckets. Bucket i has the following boundaries:Upper bound (0 <= i < N-1): scale * (growth_factor ^ i).Lower bound (1 <= i < N): scale * (growth_factor ^ (i - 1)).

Constructors

Link copied to clipboard
fun ExponentialArgs(growthFactor: Output<Double>? = null, numFiniteBuckets: Output<Int>? = null, scale: Output<Double>? = null)

Functions

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

Properties

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

Must be greater than 1.

Link copied to clipboard
val numFiniteBuckets: Output<Int>? = null

Must be greater than 0.

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

Must be greater than 0.