com.pulumi.kubernetes.autoscaling.v2.kotlin.outputs.ExternalMetricSource.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
/**
* ExternalMetricSource indicates how to scale on a metric not associated with any Kubernetes object (for example length of queue in cloud messaging service, or QPS from loadbalancer running outside of cluster).
* @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 ExternalMetricSource(
public val metric: MetricIdentifier,
public val target: MetricTarget,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.kubernetes.autoscaling.v2.outputs.ExternalMetricSource): ExternalMetricSource = ExternalMetricSource(
metric = javaType.metric().let({ args0 ->
com.pulumi.kubernetes.autoscaling.v2.kotlin.outputs.MetricIdentifier.Companion.toKotlin(args0)
}),
target = javaType.target().let({ args0 ->
com.pulumi.kubernetes.autoscaling.v2.kotlin.outputs.MetricTarget.Companion.toKotlin(args0)
}),
)
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy