![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.azure.sentinel.kotlin.outputs.AlertRuleScheduledAlertDetailsOverride.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 descriptionFormat The format containing columns name(s) to override the description of this Sentinel Alert Rule.
* @property displayNameFormat The format containing columns name(s) to override the name of this Sentinel Alert Rule.
* @property dynamicProperties A list of `dynamic_property` blocks as defined below.
* @property severityColumnName The column name to take the alert severity from.
* @property tacticsColumnName The column name to take the alert tactics from.
*/
public data class AlertRuleScheduledAlertDetailsOverride(
public val descriptionFormat: String? = null,
public val displayNameFormat: String? = null,
public val dynamicProperties: List? = null,
public val severityColumnName: String? = null,
public val tacticsColumnName: String? = null,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.azure.sentinel.outputs.AlertRuleScheduledAlertDetailsOverride): AlertRuleScheduledAlertDetailsOverride = AlertRuleScheduledAlertDetailsOverride(
descriptionFormat = javaType.descriptionFormat().map({ args0 -> args0 }).orElse(null),
displayNameFormat = javaType.displayNameFormat().map({ args0 -> args0 }).orElse(null),
dynamicProperties = javaType.dynamicProperties().map({ args0 ->
args0.let({ args0 ->
com.pulumi.azure.sentinel.kotlin.outputs.AlertRuleScheduledAlertDetailsOverrideDynamicProperty.Companion.toKotlin(args0)
})
}),
severityColumnName = javaType.severityColumnName().map({ args0 -> args0 }).orElse(null),
tacticsColumnName = javaType.tacticsColumnName().map({ args0 -> args0 }).orElse(null),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy