![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.azure.sentinel.kotlin.inputs.AlertRuleNrtEntityMappingArgs.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.AlertRuleNrtEntityMappingArgs.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 com.pulumi.kotlin.applySuspend
import kotlin.String
import kotlin.Suppress
import kotlin.Unit
import kotlin.collections.List
import kotlin.jvm.JvmName
/**
*
* @property entityType The type of the entity. Possible values are `Account`, `AzureResource`, `CloudApplication`, `DNS`, `File`, `FileHash`, `Host`, `IP`, `Mailbox`, `MailCluster`, `MailMessage`, `Malware`, `Process`, `RegistryKey`, `RegistryValue`, `SecurityGroup`, `SubmissionMail`, `URL`.
* @property fieldMappings A list of `field_mapping` blocks as defined below.
*/
public data class AlertRuleNrtEntityMappingArgs(
public val entityType: Output,
public val fieldMappings: Output>,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.azure.sentinel.inputs.AlertRuleNrtEntityMappingArgs =
com.pulumi.azure.sentinel.inputs.AlertRuleNrtEntityMappingArgs.builder()
.entityType(entityType.applyValue({ args0 -> args0 }))
.fieldMappings(
fieldMappings.applyValue({ args0 ->
args0.map({ args0 ->
args0.let({ args0 ->
args0.toJava()
})
})
}),
).build()
}
/**
* Builder for [AlertRuleNrtEntityMappingArgs].
*/
@PulumiTagMarker
public class AlertRuleNrtEntityMappingArgsBuilder internal constructor() {
private var entityType: Output? = null
private var fieldMappings: Output>? = null
/**
* @param value The type of the entity. Possible values are `Account`, `AzureResource`, `CloudApplication`, `DNS`, `File`, `FileHash`, `Host`, `IP`, `Mailbox`, `MailCluster`, `MailMessage`, `Malware`, `Process`, `RegistryKey`, `RegistryValue`, `SecurityGroup`, `SubmissionMail`, `URL`.
*/
@JvmName("xpcowtpsmkncijgy")
public suspend fun entityType(`value`: Output) {
this.entityType = value
}
/**
* @param value A list of `field_mapping` blocks as defined below.
*/
@JvmName("hrprggtwywvwllxu")
public suspend fun fieldMappings(`value`: Output>) {
this.fieldMappings = value
}
@JvmName("dpskmkdjpcbnnpct")
public suspend fun fieldMappings(vararg values: Output) {
this.fieldMappings = Output.all(values.asList())
}
/**
* @param values A list of `field_mapping` blocks as defined below.
*/
@JvmName("wgsdntwandacxdyg")
public suspend fun fieldMappings(values: List
© 2015 - 2025 Weber Informatics LLC | Privacy Policy