com.pulumi.kubernetes.autoscaling.v2.kotlin.outputs.PodsMetricSourcePatch.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-kubernetes-kotlin Show documentation
Show all versions of pulumi-kubernetes-kotlin Show documentation
Build cloud applications and infrastructure by combining the safety and reliability of infrastructure as code with the power of the Kotlin programming language.
The newest version!
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.kubernetes.autoscaling.v2.kotlin.outputs
import kotlin.Suppress
/**
* PodsMetricSource indicates how to scale on a metric describing each pod in the current scale target (for example, transactions-processed-per-second). The values will be averaged together before being compared to the target value.
* @property metric metric identifies the target metric by name and selector
* @property target target specifies the target value for the given metric
*/
public data class PodsMetricSourcePatch(
public val metric: MetricIdentifierPatch? = null,
public val target: MetricTargetPatch? = null,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.kubernetes.autoscaling.v2.outputs.PodsMetricSourcePatch): PodsMetricSourcePatch = PodsMetricSourcePatch(
metric = javaType.metric().map({ args0 ->
args0.let({ args0 ->
com.pulumi.kubernetes.autoscaling.v2.kotlin.outputs.MetricIdentifierPatch.Companion.toKotlin(args0)
})
}).orElse(null),
target = javaType.target().map({ args0 ->
args0.let({ args0 ->
com.pulumi.kubernetes.autoscaling.v2.kotlin.outputs.MetricTargetPatch.Companion.toKotlin(args0)
})
}).orElse(null),
)
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy