![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.azurenative.kubernetesruntime.kotlin.enums.AdvertiseMode.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.kubernetesruntime.kotlin.enums
import com.pulumi.kotlin.ConvertibleToJava
import kotlin.Suppress
/**
* Advertise Mode
*/
public enum class AdvertiseMode(
public val javaValue: com.pulumi.azurenative.kubernetesruntime.enums.AdvertiseMode,
) : ConvertibleToJava {
/**
* ARP advertise mode
*/
ARP(com.pulumi.azurenative.kubernetesruntime.enums.AdvertiseMode.ARP),
/**
* BGP advertise mode
*/
BGP(com.pulumi.azurenative.kubernetesruntime.enums.AdvertiseMode.BGP),
/**
* both ARP and BGP advertise mode
*/
Both(com.pulumi.azurenative.kubernetesruntime.enums.AdvertiseMode.Both),
;
override fun toJava(): com.pulumi.azurenative.kubernetesruntime.enums.AdvertiseMode = javaValue
public companion object {
public fun toKotlin(javaType: com.pulumi.azurenative.kubernetesruntime.enums.AdvertiseMode): AdvertiseMode = AdvertiseMode.values().first { it.javaValue == javaType }
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy