com.pulumi.azure.sentinel.kotlin.inputs.AlertRuleNrtSentinelEntityMappingArgs.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.sentinel.kotlin.inputs
import com.pulumi.azure.sentinel.inputs.AlertRuleNrtSentinelEntityMappingArgs.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.jvm.JvmName
/**
*
* @property columnName The column name to be mapped to the identifier.
*/
public data class AlertRuleNrtSentinelEntityMappingArgs(
public val columnName: Output,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.azure.sentinel.inputs.AlertRuleNrtSentinelEntityMappingArgs =
com.pulumi.azure.sentinel.inputs.AlertRuleNrtSentinelEntityMappingArgs.builder()
.columnName(columnName.applyValue({ args0 -> args0 })).build()
}
/**
* Builder for [AlertRuleNrtSentinelEntityMappingArgs].
*/
@PulumiTagMarker
public class AlertRuleNrtSentinelEntityMappingArgsBuilder internal constructor() {
private var columnName: Output? = null
/**
* @param value The column name to be mapped to the identifier.
*/
@JvmName("qfvayodkravhqcig")
public suspend fun columnName(`value`: Output) {
this.columnName = value
}
/**
* @param value The column name to be mapped to the identifier.
*/
@JvmName("jvjdflaxcivsywdu")
public suspend fun columnName(`value`: String) {
val toBeMapped = value
val mapped = toBeMapped.let({ args0 -> of(args0) })
this.columnName = mapped
}
internal fun build(): AlertRuleNrtSentinelEntityMappingArgs =
AlertRuleNrtSentinelEntityMappingArgs(
columnName = columnName ?: throw PulumiNullFieldException("columnName"),
)
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy