com.pulumi.azurenative.web.kotlin.enums.ForwardProxyConvention.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.azurenative.web.kotlin.enums
import com.pulumi.kotlin.ConvertibleToJava
import kotlin.Suppress
/**
* The convention used to determine the url of the request made.
*/
public enum class ForwardProxyConvention(
public val javaValue: com.pulumi.azurenative.web.enums.ForwardProxyConvention,
) : ConvertibleToJava {
NoProxy(com.pulumi.azurenative.web.enums.ForwardProxyConvention.NoProxy),
Standard(com.pulumi.azurenative.web.enums.ForwardProxyConvention.Standard),
Custom(com.pulumi.azurenative.web.enums.ForwardProxyConvention.Custom),
;
override fun toJava(): com.pulumi.azurenative.web.enums.ForwardProxyConvention = javaValue
public companion object {
public fun toKotlin(javaType: com.pulumi.azurenative.web.enums.ForwardProxyConvention): ForwardProxyConvention = ForwardProxyConvention.values().first { it.javaValue == javaType }
}
}