![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.azure.lb.kotlin.outputs.BackendAddressPoolTunnelInterface.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-azure-kotlin Show documentation
Show all versions of pulumi-azure-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.azure.lb.kotlin.outputs
import kotlin.Int
import kotlin.String
import kotlin.Suppress
/**
*
* @property identifier The unique identifier of this Gateway Load Balancer Tunnel Interface.
* @property port The port number that this Gateway Load Balancer Tunnel Interface listens to.
* @property protocol The protocol used for this Gateway Load Balancer Tunnel Interface. Possible values are `None`, `Native` and `VXLAN`.
* @property type The traffic type of this Gateway Load Balancer Tunnel Interface. Possible values are `None`, `Internal` and `External`.
*/
public data class BackendAddressPoolTunnelInterface(
public val identifier: Int,
public val port: Int,
public val protocol: String,
public val type: String,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.azure.lb.outputs.BackendAddressPoolTunnelInterface): BackendAddressPoolTunnelInterface = BackendAddressPoolTunnelInterface(
identifier = javaType.identifier(),
port = javaType.port(),
protocol = javaType.protocol(),
type = javaType.type(),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy