All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.pulumi.kubernetes.autoscaling.v2.kotlin.outputs.PodsMetricStatus.kt Maven / Gradle / Ivy

Go to download

Build cloud applications and infrastructure by combining the safety and reliability of infrastructure as code with the power of the Kotlin programming language.

There is a newer version: 4.18.2.0
Show newest version
@file:Suppress("NAME_SHADOWING", "DEPRECATION")

package com.pulumi.kubernetes.autoscaling.v2.kotlin.outputs

import kotlin.Suppress

/**
 * PodsMetricStatus indicates the current value of a metric describing each pod in the current scale target (for example, transactions-processed-per-second).
 * @property current current contains the current value for the given metric
 * @property metric metric identifies the target metric by name and selector
 */
public data class PodsMetricStatus(
    public val current: MetricValueStatus,
    public val metric: MetricIdentifier,
) {
    public companion object {
        public fun toKotlin(javaType: com.pulumi.kubernetes.autoscaling.v2.outputs.PodsMetricStatus): PodsMetricStatus = PodsMetricStatus(
            current = javaType.current().let({ args0 ->
                com.pulumi.kubernetes.autoscaling.v2.kotlin.outputs.MetricValueStatus.Companion.toKotlin(args0)
            }),
            metric = javaType.metric().let({ args0 ->
                com.pulumi.kubernetes.autoscaling.v2.kotlin.outputs.MetricIdentifier.Companion.toKotlin(args0)
            }),
        )
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy