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

com.pulumi.kubernetes.autoscaling.v2.kotlin.inputs.PodsMetricSourceArgs.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.

The newest version!
@file:Suppress("NAME_SHADOWING", "DEPRECATION")

package com.pulumi.kubernetes.autoscaling.v2.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.v2.inputs.PodsMetricSourceArgs.builder
import kotlin.Suppress
import kotlin.Unit
import kotlin.jvm.JvmName

/**
 * 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 PodsMetricSourceArgs(
    public val metric: Output,
    public val target: Output,
) : ConvertibleToJava {
    override fun toJava(): com.pulumi.kubernetes.autoscaling.v2.inputs.PodsMetricSourceArgs =
        com.pulumi.kubernetes.autoscaling.v2.inputs.PodsMetricSourceArgs.builder()
            .metric(metric.applyValue({ args0 -> args0.let({ args0 -> args0.toJava() }) }))
            .target(target.applyValue({ args0 -> args0.let({ args0 -> args0.toJava() }) })).build()
}

/**
 * Builder for [PodsMetricSourceArgs].
 */
@PulumiTagMarker
public class PodsMetricSourceArgsBuilder internal constructor() {
    private var metric: Output? = null

    private var target: Output? = null

    /**
     * @param value metric identifies the target metric by name and selector
     */
    @JvmName("okcoqhxtytuwggtv")
    public suspend fun metric(`value`: Output) {
        this.metric = value
    }

    /**
     * @param value target specifies the target value for the given metric
     */
    @JvmName("eafegdakjxwhtvcl")
    public suspend fun target(`value`: Output) {
        this.target = value
    }

    /**
     * @param value metric identifies the target metric by name and selector
     */
    @JvmName("ottpewmjdcogshsl")
    public suspend fun metric(`value`: MetricIdentifierArgs) {
        val toBeMapped = value
        val mapped = toBeMapped.let({ args0 -> of(args0) })
        this.metric = mapped
    }

    /**
     * @param argument metric identifies the target metric by name and selector
     */
    @JvmName("tnylncacqiyxiamh")
    public suspend fun metric(argument: suspend MetricIdentifierArgsBuilder.() -> Unit) {
        val toBeMapped = MetricIdentifierArgsBuilder().applySuspend { argument() }.build()
        val mapped = of(toBeMapped)
        this.metric = mapped
    }

    /**
     * @param value target specifies the target value for the given metric
     */
    @JvmName("paitugslnukmeids")
    public suspend fun target(`value`: MetricTargetArgs) {
        val toBeMapped = value
        val mapped = toBeMapped.let({ args0 -> of(args0) })
        this.target = mapped
    }

    /**
     * @param argument target specifies the target value for the given metric
     */
    @JvmName("mfjhtewcryynaecr")
    public suspend fun target(argument: suspend MetricTargetArgsBuilder.() -> Unit) {
        val toBeMapped = MetricTargetArgsBuilder().applySuspend { argument() }.build()
        val mapped = of(toBeMapped)
        this.target = mapped
    }

    internal fun build(): PodsMetricSourceArgs = PodsMetricSourceArgs(
        metric = metric ?: throw PulumiNullFieldException("metric"),
        target = target ?: throw PulumiNullFieldException("target"),
    )
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy