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

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

/**
 * ObjectMetricStatus indicates the current value of a metric describing a kubernetes object (for example, hits-per-second on an Ingress object).
 * @property current current contains the current value for the given metric
 * @property describedObject DescribedObject specifies the descriptions of a object,such as kind,name apiVersion
 * @property metric metric identifies the target metric by name and selector
 */
public data class ObjectMetricStatusArgs(
    public val current: Output,
    public val describedObject: Output,
    public val metric: Output,
) : ConvertibleToJava {
    override fun toJava(): com.pulumi.kubernetes.autoscaling.v2.inputs.ObjectMetricStatusArgs =
        com.pulumi.kubernetes.autoscaling.v2.inputs.ObjectMetricStatusArgs.builder()
            .current(current.applyValue({ args0 -> args0.let({ args0 -> args0.toJava() }) }))
            .describedObject(describedObject.applyValue({ args0 -> args0.let({ args0 -> args0.toJava() }) }))
            .metric(metric.applyValue({ args0 -> args0.let({ args0 -> args0.toJava() }) })).build()
}

/**
 * Builder for [ObjectMetricStatusArgs].
 */
@PulumiTagMarker
public class ObjectMetricStatusArgsBuilder internal constructor() {
    private var current: Output? = null

    private var describedObject: Output? = null

    private var metric: Output? = null

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

    /**
     * @param value DescribedObject specifies the descriptions of a object,such as kind,name apiVersion
     */
    @JvmName("whcdongrscyprtny")
    public suspend fun describedObject(`value`: Output) {
        this.describedObject = value
    }

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

    /**
     * @param value current contains the current value for the given metric
     */
    @JvmName("ngimhliwnuxixtpn")
    public suspend fun current(`value`: MetricValueStatusArgs) {
        val toBeMapped = value
        val mapped = toBeMapped.let({ args0 -> of(args0) })
        this.current = mapped
    }

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

    /**
     * @param value DescribedObject specifies the descriptions of a object,such as kind,name apiVersion
     */
    @JvmName("biyispecdslhivmt")
    public suspend fun describedObject(`value`: CrossVersionObjectReferenceArgs) {
        val toBeMapped = value
        val mapped = toBeMapped.let({ args0 -> of(args0) })
        this.describedObject = mapped
    }

    /**
     * @param argument DescribedObject specifies the descriptions of a object,such as kind,name apiVersion
     */
    @JvmName("wxaytaubkgxbxonj")
    public suspend fun describedObject(argument: suspend CrossVersionObjectReferenceArgsBuilder.() -> Unit) {
        val toBeMapped = CrossVersionObjectReferenceArgsBuilder().applySuspend { argument() }.build()
        val mapped = of(toBeMapped)
        this.describedObject = mapped
    }

    /**
     * @param value metric identifies the target metric by name and selector
     */
    @JvmName("kupchwyckhbhkqsr")
    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("biqkeyswgcrdsxtd")
    public suspend fun metric(argument: suspend MetricIdentifierArgsBuilder.() -> Unit) {
        val toBeMapped = MetricIdentifierArgsBuilder().applySuspend { argument() }.build()
        val mapped = of(toBeMapped)
        this.metric = mapped
    }

    internal fun build(): ObjectMetricStatusArgs = ObjectMetricStatusArgs(
        current = current ?: throw PulumiNullFieldException("current"),
        describedObject = describedObject ?: throw PulumiNullFieldException("describedObject"),
        metric = metric ?: throw PulumiNullFieldException("metric"),
    )
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy