com.pulumi.azure.sentinel.kotlin.outputs.AlertRuleNrtEntityMapping.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.outputs
import kotlin.String
import kotlin.Suppress
import kotlin.collections.List
/**
*
* @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 AlertRuleNrtEntityMapping(
public val entityType: String,
public val fieldMappings: List,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.azure.sentinel.outputs.AlertRuleNrtEntityMapping):
AlertRuleNrtEntityMapping = AlertRuleNrtEntityMapping(
entityType = javaType.entityType(),
fieldMappings = javaType.fieldMappings().map({ args0 ->
args0.let({ args0 ->
com.pulumi.azure.sentinel.kotlin.outputs.AlertRuleNrtEntityMappingFieldMapping.Companion.toKotlin(args0)
})
}),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy