MetricValueStatusArgs

data class MetricValueStatusArgs(val averageUtilization: Output<Int>? = null, val averageValue: Output<String>? = null, val value: Output<String>? = null) : ConvertibleToJava<MetricValueStatusArgs>

MetricValueStatus holds the current value for a metric

Constructors

Link copied to clipboard
constructor(averageUtilization: Output<Int>? = null, averageValue: Output<String>? = null, value: Output<String>? = null)

Properties

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

currentAverageUtilization is the current value of the average of the resource metric across all relevant pods, represented as a percentage of the requested value of the resource for the pods.

Link copied to clipboard
val averageValue: Output<String>? = null

averageValue is the current value of the average of the metric across all relevant pods (as a quantity)

Link copied to clipboard
val value: Output<String>? = null

value is the current value of the metric (as a quantity).

Functions

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