![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.azure.sentinel.kotlin.outputs.AlertRuleScheduledIncidentConfiguration.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.Boolean
import kotlin.Deprecated
import kotlin.Suppress
/**
*
* @property createIncident
* @property grouping A `grouping` block as defined below.
*/
public data class AlertRuleScheduledIncidentConfiguration(
@Deprecated(
message = """
The `create_incident` property has been superseded by the `create_incident_enabled` property and
will be removed in v4.0 of the AzureRM Provider
""",
)
public val createIncident: Boolean,
public val grouping: AlertRuleScheduledIncidentConfigurationGrouping,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.azure.sentinel.outputs.AlertRuleScheduledIncidentConfiguration): AlertRuleScheduledIncidentConfiguration = AlertRuleScheduledIncidentConfiguration(
createIncident = javaType.createIncident(),
grouping = javaType.grouping().let({ args0 ->
com.pulumi.azure.sentinel.kotlin.outputs.AlertRuleScheduledIncidentConfigurationGrouping.Companion.toKotlin(args0)
}),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy