
com.pulumi.googlenative.compute.v1.kotlin.enums.RegionTargetTcpProxyProxyHeader.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-google-native-kotlin Show documentation
Show all versions of pulumi-google-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.
The newest version!
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.googlenative.compute.v1.kotlin.enums
import com.pulumi.kotlin.ConvertibleToJava
import kotlin.Suppress
/**
* Specifies the type of proxy header to append before sending data to the backend, either NONE or PROXY_V1. The default is NONE.
*/
public enum class RegionTargetTcpProxyProxyHeader(
public val javaValue: com.pulumi.googlenative.compute.v1.enums.RegionTargetTcpProxyProxyHeader,
) : ConvertibleToJava {
None(com.pulumi.googlenative.compute.v1.enums.RegionTargetTcpProxyProxyHeader.None),
ProxyV1(com.pulumi.googlenative.compute.v1.enums.RegionTargetTcpProxyProxyHeader.ProxyV1),
;
override fun toJava(): com.pulumi.googlenative.compute.v1.enums.RegionTargetTcpProxyProxyHeader =
javaValue
public companion object {
public fun toKotlin(javaType: com.pulumi.googlenative.compute.v1.enums.RegionTargetTcpProxyProxyHeader): RegionTargetTcpProxyProxyHeader =
RegionTargetTcpProxyProxyHeader.values().first { it.javaValue == javaType }
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy