All Downloads are FREE. Search and download functionalities are using the official Maven repository.

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 }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy