
com.pulumi.azure.sentinel.kotlin.outputs.GetAlertRuleTemplateNrtTemplate.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.azure.sentinel.kotlin.outputs
import kotlin.String
import kotlin.Suppress
import kotlin.collections.List
/**
*
* @property description The description of this Sentinel Scheduled Alert Rule Template.
* @property query The query of this Sentinel Scheduled Alert Rule Template.
* @property severity The alert severity of this Sentinel Scheduled Alert Rule Template.
* @property tactics A list of categories of attacks by which to classify the rule.
*/
public data class GetAlertRuleTemplateNrtTemplate(
public val description: String,
public val query: String,
public val severity: String,
public val tactics: List,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.azure.sentinel.outputs.GetAlertRuleTemplateNrtTemplate): GetAlertRuleTemplateNrtTemplate = GetAlertRuleTemplateNrtTemplate(
description = javaType.description(),
query = javaType.query(),
severity = javaType.severity(),
tactics = javaType.tactics().map({ args0 -> args0 }),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy