com.pulumi.kubernetes.autoscaling.v2beta1.kotlin.inputs.ObjectMetricSourceArgs.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.
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.kubernetes.autoscaling.v2beta1.kotlin.inputs
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiNullFieldException
import com.pulumi.kotlin.PulumiTagMarker
import com.pulumi.kotlin.applySuspend
import com.pulumi.kubernetes.autoscaling.v2beta1.inputs.ObjectMetricSourceArgs.builder
import com.pulumi.kubernetes.meta.v1.kotlin.inputs.LabelSelectorArgs
import com.pulumi.kubernetes.meta.v1.kotlin.inputs.LabelSelectorArgsBuilder
import kotlin.String
import kotlin.Suppress
import kotlin.Unit
import kotlin.jvm.JvmName
/**
* ObjectMetricSource indicates how to scale on a metric describing a kubernetes object (for example, hits-per-second on an Ingress object).
* @property averageValue averageValue is the target value of the average of the metric across all relevant pods (as a quantity)
* @property metricName metricName is the name of the metric in question.
* @property selector selector is the string-encoded form of a standard kubernetes label selector for the given metric When set, it is passed as an additional parameter to the metrics server for more specific metrics scoping When unset, just the metricName will be used to gather metrics.
* @property target target is the described Kubernetes object.
* @property targetValue targetValue is the target value of the metric (as a quantity).
*/
public data class ObjectMetricSourceArgs(
public val averageValue: Output? = null,
public val metricName: Output,
public val selector: Output? = null,
public val target: Output,
public val targetValue: Output,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.kubernetes.autoscaling.v2beta1.inputs.ObjectMetricSourceArgs =
com.pulumi.kubernetes.autoscaling.v2beta1.inputs.ObjectMetricSourceArgs.builder()
.averageValue(averageValue?.applyValue({ args0 -> args0 }))
.metricName(metricName.applyValue({ args0 -> args0 }))
.selector(selector?.applyValue({ args0 -> args0.let({ args0 -> args0.toJava() }) }))
.target(target.applyValue({ args0 -> args0.let({ args0 -> args0.toJava() }) }))
.targetValue(targetValue.applyValue({ args0 -> args0 })).build()
}
/**
* Builder for [ObjectMetricSourceArgs].
*/
@PulumiTagMarker
public class ObjectMetricSourceArgsBuilder internal constructor() {
private var averageValue: Output? = null
private var metricName: Output? = null
private var selector: Output? = null
private var target: Output? = null
private var targetValue: Output? = null
/**
* @param value averageValue is the target value of the average of the metric across all relevant pods (as a quantity)
*/
@JvmName("tqbwnxperomnequd")
public suspend fun averageValue(`value`: Output) {
this.averageValue = value
}
/**
* @param value metricName is the name of the metric in question.
*/
@JvmName("cbnrfdxckuoowbio")
public suspend fun metricName(`value`: Output) {
this.metricName = value
}
/**
* @param value selector is the string-encoded form of a standard kubernetes label selector for the given metric When set, it is passed as an additional parameter to the metrics server for more specific metrics scoping When unset, just the metricName will be used to gather metrics.
*/
@JvmName("dhfirdysfgnipjbo")
public suspend fun selector(`value`: Output) {
this.selector = value
}
/**
* @param value target is the described Kubernetes object.
*/
@JvmName("sscuoouxmouygknp")
public suspend fun target(`value`: Output) {
this.target = value
}
/**
* @param value targetValue is the target value of the metric (as a quantity).
*/
@JvmName("kcjlycydwyqmckjl")
public suspend fun targetValue(`value`: Output) {
this.targetValue = value
}
/**
* @param value averageValue is the target value of the average of the metric across all relevant pods (as a quantity)
*/
@JvmName("busvmjdsewcrfolh")
public suspend fun averageValue(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.averageValue = mapped
}
/**
* @param value metricName is the name of the metric in question.
*/
@JvmName("chpxyteihjsbbjcf")
public suspend fun metricName(`value`: String) {
val toBeMapped = value
val mapped = toBeMapped.let({ args0 -> of(args0) })
this.metricName = mapped
}
/**
* @param value selector is the string-encoded form of a standard kubernetes label selector for the given metric When set, it is passed as an additional parameter to the metrics server for more specific metrics scoping When unset, just the metricName will be used to gather metrics.
*/
@JvmName("vaamfpbqkhabsqwb")
public suspend fun selector(`value`: LabelSelectorArgs?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.selector = mapped
}
/**
* @param argument selector is the string-encoded form of a standard kubernetes label selector for the given metric When set, it is passed as an additional parameter to the metrics server for more specific metrics scoping When unset, just the metricName will be used to gather metrics.
*/
@JvmName("fmnfnjktqwybnefk")
public suspend fun selector(argument: suspend LabelSelectorArgsBuilder.() -> Unit) {
val toBeMapped = LabelSelectorArgsBuilder().applySuspend { argument() }.build()
val mapped = of(toBeMapped)
this.selector = mapped
}
/**
* @param value target is the described Kubernetes object.
*/
@JvmName("jneddnnbvjtpqhdi")
public suspend fun target(`value`: CrossVersionObjectReferenceArgs) {
val toBeMapped = value
val mapped = toBeMapped.let({ args0 -> of(args0) })
this.target = mapped
}
/**
* @param argument target is the described Kubernetes object.
*/
@JvmName("tsumjdhtsupowaji")
public suspend fun target(argument: suspend CrossVersionObjectReferenceArgsBuilder.() -> Unit) {
val toBeMapped = CrossVersionObjectReferenceArgsBuilder().applySuspend { argument() }.build()
val mapped = of(toBeMapped)
this.target = mapped
}
/**
* @param value targetValue is the target value of the metric (as a quantity).
*/
@JvmName("fcaigqxskqvebdvm")
public suspend fun targetValue(`value`: String) {
val toBeMapped = value
val mapped = toBeMapped.let({ args0 -> of(args0) })
this.targetValue = mapped
}
internal fun build(): ObjectMetricSourceArgs = ObjectMetricSourceArgs(
averageValue = averageValue,
metricName = metricName ?: throw PulumiNullFieldException("metricName"),
selector = selector,
target = target ?: throw PulumiNullFieldException("target"),
targetValue = targetValue ?: throw PulumiNullFieldException("targetValue"),
)
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy