
com.pulumi.azurenative.eventhub.kotlin.enums.PrivateLinkConnectionStatus.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.azurenative.eventhub.kotlin.enums
import com.pulumi.kotlin.ConvertibleToJava
import kotlin.Suppress
/**
* Status of the connection.
*/
public enum class PrivateLinkConnectionStatus(
public val javaValue: com.pulumi.azurenative.eventhub.enums.PrivateLinkConnectionStatus,
) : ConvertibleToJava {
Pending(com.pulumi.azurenative.eventhub.enums.PrivateLinkConnectionStatus.Pending),
Approved(com.pulumi.azurenative.eventhub.enums.PrivateLinkConnectionStatus.Approved),
Rejected(com.pulumi.azurenative.eventhub.enums.PrivateLinkConnectionStatus.Rejected),
Disconnected(com.pulumi.azurenative.eventhub.enums.PrivateLinkConnectionStatus.Disconnected),
;
override fun toJava(): com.pulumi.azurenative.eventhub.enums.PrivateLinkConnectionStatus =
javaValue
public companion object {
public fun toKotlin(javaType: com.pulumi.azurenative.eventhub.enums.PrivateLinkConnectionStatus): PrivateLinkConnectionStatus =
PrivateLinkConnectionStatus.values().first { it.javaValue == javaType }
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy