
com.pulumi.azurenative.databasewatcher.kotlin.enums.AlertRuleCreationProperties.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.azurenative.databasewatcher.kotlin.enums
import com.pulumi.kotlin.ConvertibleToJava
import kotlin.Suppress
/**
* The properties with which the alert rule resource was created.
*/
public enum class AlertRuleCreationProperties(
public val javaValue: com.pulumi.azurenative.databasewatcher.enums.AlertRuleCreationProperties,
) : ConvertibleToJava {
/**
* The alert rule was created with an action group.
*/
CreatedWithActionGroup(com.pulumi.azurenative.databasewatcher.enums.AlertRuleCreationProperties.CreatedWithActionGroup),
/**
* The alert rule was created with no properties.
*/
None(com.pulumi.azurenative.databasewatcher.enums.AlertRuleCreationProperties.None),
;
override fun toJava(): com.pulumi.azurenative.databasewatcher.enums.AlertRuleCreationProperties =
javaValue
public companion object {
public fun toKotlin(javaType: com.pulumi.azurenative.databasewatcher.enums.AlertRuleCreationProperties): AlertRuleCreationProperties =
AlertRuleCreationProperties.values().first { it.javaValue == javaType }
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy