com.pulumi.cloudflare.kotlin.outputs.TeamsAccountProxy.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-cloudflare-kotlin Show documentation
Show all versions of pulumi-cloudflare-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.cloudflare.kotlin.outputs
import kotlin.Boolean
import kotlin.Int
import kotlin.Suppress
/**
*
* @property disableForTime Sets the time limit in seconds that a user can use an override code to bypass WARP.
* @property rootCa Whether root ca is enabled account wide for ZT clients.
* @property tcp Whether gateway proxy is enabled on gateway devices for TCP traffic.
* @property udp Whether gateway proxy is enabled on gateway devices for UDP traffic.
* @property virtualIp Whether virtual IP (CGNAT) is enabled account wide and will override existing local interface IP for ZT clients.
*/
public data class TeamsAccountProxy(
public val disableForTime: Int,
public val rootCa: Boolean,
public val tcp: Boolean,
public val udp: Boolean,
public val virtualIp: Boolean,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.cloudflare.outputs.TeamsAccountProxy): TeamsAccountProxy = TeamsAccountProxy(
disableForTime = javaType.disableForTime(),
rootCa = javaType.rootCa(),
tcp = javaType.tcp(),
udp = javaType.udp(),
virtualIp = javaType.virtualIp(),
)
}
}