![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.azurenative.servicefabric.kotlin.enums.RollingUpgradeMode.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-azure-native-kotlin Show documentation
Show all versions of pulumi-azure-native-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.azurenative.servicefabric.kotlin.enums
import com.pulumi.kotlin.ConvertibleToJava
import kotlin.Suppress
/**
* The mode used to monitor health during a rolling upgrade. The values are Monitored, and UnmonitoredAuto.
*/
public enum class RollingUpgradeMode(
public val javaValue: com.pulumi.azurenative.servicefabric.enums.RollingUpgradeMode,
) : ConvertibleToJava {
/**
* The upgrade will stop after completing each upgrade domain and automatically monitor health before proceeding. The value is 0.
*/
Monitored(com.pulumi.azurenative.servicefabric.enums.RollingUpgradeMode.Monitored),
/**
* The upgrade will proceed automatically without performing any health monitoring. The value is 1.
*/
UnmonitoredAuto(com.pulumi.azurenative.servicefabric.enums.RollingUpgradeMode.UnmonitoredAuto),
;
override fun toJava(): com.pulumi.azurenative.servicefabric.enums.RollingUpgradeMode = javaValue
public companion object {
public fun toKotlin(javaType: com.pulumi.azurenative.servicefabric.enums.RollingUpgradeMode): RollingUpgradeMode = RollingUpgradeMode.values().first { it.javaValue == javaType }
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy