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

com.pulumi.azure.monitoring.kotlin.inputs.AlertProcessingRuleActionGroupConditionSeverityArgs.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.

There is a newer version: 6.14.0.0
Show newest version
@file:Suppress("NAME_SHADOWING", "DEPRECATION")

package com.pulumi.azure.monitoring.kotlin.inputs

import com.pulumi.azure.monitoring.inputs.AlertProcessingRuleActionGroupConditionSeverityArgs.builder
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 kotlin.String
import kotlin.Suppress
import kotlin.collections.List
import kotlin.jvm.JvmName

/**
 *
 * @property operator The operator for a given condition. Possible values are `Equals` and `NotEquals`.
 * @property values Specifies list of values to match for a given condition. Possible values are `Sev0`, `Sev1`, `Sev2`, `Sev3`, and `Sev4`.
 */
public data class AlertProcessingRuleActionGroupConditionSeverityArgs(
    public val `operator`: Output,
    public val values: Output>,
) :
    ConvertibleToJava {
    override fun toJava():
        com.pulumi.azure.monitoring.inputs.AlertProcessingRuleActionGroupConditionSeverityArgs =
        com.pulumi.azure.monitoring.inputs.AlertProcessingRuleActionGroupConditionSeverityArgs.builder()
            .`operator`(`operator`.applyValue({ args0 -> args0 }))
            .values(values.applyValue({ args0 -> args0.map({ args0 -> args0 }) })).build()
}

/**
 * Builder for [AlertProcessingRuleActionGroupConditionSeverityArgs].
 */
@PulumiTagMarker
public class AlertProcessingRuleActionGroupConditionSeverityArgsBuilder internal constructor() {
    private var `operator`: Output? = null

    private var values: Output>? = null

    /**
     * @param value The operator for a given condition. Possible values are `Equals` and `NotEquals`.
     */
    @JvmName("qmydcegqjurbfpum")
    public suspend fun `operator`(`value`: Output) {
        this.`operator` = value
    }

    /**
     * @param value Specifies list of values to match for a given condition. Possible values are `Sev0`, `Sev1`, `Sev2`, `Sev3`, and `Sev4`.
     */
    @JvmName("nydbbmjlcqgjfupg")
    public suspend fun values(`value`: Output>) {
        this.values = value
    }

    @JvmName("ajncgygkjkkhycfx")
    public suspend fun values(vararg values: Output) {
        this.values = Output.all(values.asList())
    }

    /**
     * @param values Specifies list of values to match for a given condition. Possible values are `Sev0`, `Sev1`, `Sev2`, `Sev3`, and `Sev4`.
     */
    @JvmName("ptvkkgroqsormvou")
    public suspend fun values(values: List>) {
        this.values = Output.all(values)
    }

    /**
     * @param value The operator for a given condition. Possible values are `Equals` and `NotEquals`.
     */
    @JvmName("uafjexkncjvaynan")
    public suspend fun `operator`(`value`: String) {
        val toBeMapped = value
        val mapped = toBeMapped.let({ args0 -> of(args0) })
        this.`operator` = mapped
    }

    /**
     * @param value Specifies list of values to match for a given condition. Possible values are `Sev0`, `Sev1`, `Sev2`, `Sev3`, and `Sev4`.
     */
    @JvmName("hvsmqbsgtikswbts")
    public suspend fun values(`value`: List) {
        val toBeMapped = value
        val mapped = toBeMapped.let({ args0 -> of(args0) })
        this.values = mapped
    }

    /**
     * @param values Specifies list of values to match for a given condition. Possible values are `Sev0`, `Sev1`, `Sev2`, `Sev3`, and `Sev4`.
     */
    @JvmName("otlwlanivqhnwkwp")
    public suspend fun values(vararg values: String) {
        val toBeMapped = values.toList()
        val mapped = toBeMapped.let({ args0 -> of(args0) })
        this.values = mapped
    }

    internal fun build(): AlertProcessingRuleActionGroupConditionSeverityArgs =
        AlertProcessingRuleActionGroupConditionSeverityArgs(
            `operator` = `operator` ?: throw PulumiNullFieldException("operator"),
            values = values ?: throw PulumiNullFieldException("values"),
        )
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy