![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.azurenative.devcenter.kotlin.enums.HibernateSupport.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.devcenter.kotlin.enums
import com.pulumi.kotlin.ConvertibleToJava
import kotlin.Suppress
/**
* Indicates whether Dev Boxes created with this definition are capable of hibernation. Not all images are capable of supporting hibernation. To find out more see https://aka.ms/devbox/hibernate
*/
public enum class HibernateSupport(
public val javaValue: com.pulumi.azurenative.devcenter.enums.HibernateSupport,
) : ConvertibleToJava {
Disabled(com.pulumi.azurenative.devcenter.enums.HibernateSupport.Disabled),
Enabled(com.pulumi.azurenative.devcenter.enums.HibernateSupport.Enabled),
;
override fun toJava(): com.pulumi.azurenative.devcenter.enums.HibernateSupport = javaValue
public companion object {
public fun toKotlin(javaType: com.pulumi.azurenative.devcenter.enums.HibernateSupport): HibernateSupport = HibernateSupport.values().first { it.javaValue == javaType }
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy