![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.azure.monitoring.kotlin.inputs.ScheduledQueryRulesLogCriteriaDimensionArgs.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-azure-kotlin Show documentation
Show all versions of pulumi-azure-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.azure.monitoring.kotlin.inputs
import com.pulumi.azure.monitoring.inputs.ScheduledQueryRulesLogCriteriaDimensionArgs.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 name Name of the dimension.
* @property operator Operator for dimension values, - 'Include'. Defaults to `Include`.
* @property values List of dimension values.
*/
public data class ScheduledQueryRulesLogCriteriaDimensionArgs(
public val name: Output,
public val `operator`: Output? = null,
public val values: Output>,
) :
ConvertibleToJava {
override fun toJava(): com.pulumi.azure.monitoring.inputs.ScheduledQueryRulesLogCriteriaDimensionArgs =
com.pulumi.azure.monitoring.inputs.ScheduledQueryRulesLogCriteriaDimensionArgs.builder()
.name(name.applyValue({ args0 -> args0 }))
.`operator`(`operator`?.applyValue({ args0 -> args0 }))
.values(values.applyValue({ args0 -> args0.map({ args0 -> args0 }) })).build()
}
/**
* Builder for [ScheduledQueryRulesLogCriteriaDimensionArgs].
*/
@PulumiTagMarker
public class ScheduledQueryRulesLogCriteriaDimensionArgsBuilder internal constructor() {
private var name: Output? = null
private var `operator`: Output? = null
private var values: Output>? = null
/**
* @param value Name of the dimension.
*/
@JvmName("vdsutmrwaaumyiyb")
public suspend fun name(`value`: Output) {
this.name = value
}
/**
* @param value Operator for dimension values, - 'Include'. Defaults to `Include`.
*/
@JvmName("bxeixxqhxpqylybf")
public suspend fun `operator`(`value`: Output) {
this.`operator` = value
}
/**
* @param value List of dimension values.
*/
@JvmName("ohhaqastccgbucqp")
public suspend fun values(`value`: Output>) {
this.values = value
}
@JvmName("ivipiycspfrplaxh")
public suspend fun values(vararg values: Output) {
this.values = Output.all(values.asList())
}
/**
* @param values List of dimension values.
*/
@JvmName("tnxbkmmsstrndauo")
public suspend fun values(values: List
© 2015 - 2025 Weber Informatics LLC | Privacy Policy