![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.azure.sentinel.kotlin.inputs.AlertRuleNrtEntityMappingFieldMappingArgs.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.AlertRuleNrtEntityMappingFieldMappingArgs.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.
* @property identifier The identifier of the entity.
*/
public data class AlertRuleNrtEntityMappingFieldMappingArgs(
public val columnName: Output,
public val identifier: Output,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.azure.sentinel.inputs.AlertRuleNrtEntityMappingFieldMappingArgs = com.pulumi.azure.sentinel.inputs.AlertRuleNrtEntityMappingFieldMappingArgs.builder()
.columnName(columnName.applyValue({ args0 -> args0 }))
.identifier(identifier.applyValue({ args0 -> args0 })).build()
}
/**
* Builder for [AlertRuleNrtEntityMappingFieldMappingArgs].
*/
@PulumiTagMarker
public class AlertRuleNrtEntityMappingFieldMappingArgsBuilder internal constructor() {
private var columnName: Output? = null
private var identifier: Output? = null
/**
* @param value The column name to be mapped to the identifier.
*/
@JvmName("djddgcjietxhjroc")
public suspend fun columnName(`value`: Output) {
this.columnName = value
}
/**
* @param value The identifier of the entity.
*/
@JvmName("uvyapujyyeccydng")
public suspend fun identifier(`value`: Output) {
this.identifier = value
}
/**
* @param value The column name to be mapped to the identifier.
*/
@JvmName("ovhpfwhggtwiwsgb")
public suspend fun columnName(`value`: String) {
val toBeMapped = value
val mapped = toBeMapped.let({ args0 -> of(args0) })
this.columnName = mapped
}
/**
* @param value The identifier of the entity.
*/
@JvmName("vfohmeksxyptmsge")
public suspend fun identifier(`value`: String) {
val toBeMapped = value
val mapped = toBeMapped.let({ args0 -> of(args0) })
this.identifier = mapped
}
internal fun build(): AlertRuleNrtEntityMappingFieldMappingArgs =
AlertRuleNrtEntityMappingFieldMappingArgs(
columnName = columnName ?: throw PulumiNullFieldException("columnName"),
identifier = identifier ?: throw PulumiNullFieldException("identifier"),
)
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy