
com.pulumi.azurenative.notificationhubs.kotlin.enums.ZoneRedundancyPreference.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.azurenative.notificationhubs.kotlin.enums
import com.pulumi.kotlin.ConvertibleToJava
import kotlin.Suppress
/**
* Namespace SKU name.
*/
public enum class ZoneRedundancyPreference(
public val javaValue: com.pulumi.azurenative.notificationhubs.enums.ZoneRedundancyPreference,
) : ConvertibleToJava {
Disabled(com.pulumi.azurenative.notificationhubs.enums.ZoneRedundancyPreference.Disabled),
Enabled(com.pulumi.azurenative.notificationhubs.enums.ZoneRedundancyPreference.Enabled),
;
override fun toJava(): com.pulumi.azurenative.notificationhubs.enums.ZoneRedundancyPreference =
javaValue
public companion object {
public fun toKotlin(javaType: com.pulumi.azurenative.notificationhubs.enums.ZoneRedundancyPreference): ZoneRedundancyPreference =
ZoneRedundancyPreference.values().first { it.javaValue == javaType }
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy