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

com.pulumi.cloudflare.kotlin.outputs.TeamsAccountProxy.kt Maven / Gradle / Ivy

Go to download

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(),
        )
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy