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

com.pulumi.cloudflare.kotlin.ZeroTrustSplitTunnel.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.

There is a newer version: 5.40.0.0
Show newest version
@file:Suppress("NAME_SHADOWING", "DEPRECATION")

package com.pulumi.cloudflare.kotlin

import com.pulumi.cloudflare.kotlin.outputs.ZeroTrustSplitTunnelTunnel
import com.pulumi.cloudflare.kotlin.outputs.ZeroTrustSplitTunnelTunnel.Companion.toKotlin
import com.pulumi.core.Output
import com.pulumi.kotlin.KotlinCustomResource
import com.pulumi.kotlin.PulumiTagMarker
import com.pulumi.kotlin.ResourceMapper
import com.pulumi.kotlin.options.CustomResourceOptions
import com.pulumi.kotlin.options.CustomResourceOptionsBuilder
import com.pulumi.resources.Resource
import kotlin.Boolean
import kotlin.String
import kotlin.Suppress
import kotlin.Unit
import kotlin.collections.List

/**
 * Builder for [ZeroTrustSplitTunnel].
 */
@PulumiTagMarker
public class ZeroTrustSplitTunnelResourceBuilder internal constructor() {
    public var name: String? = null

    public var args: ZeroTrustSplitTunnelArgs = ZeroTrustSplitTunnelArgs()

    public var opts: CustomResourceOptions = CustomResourceOptions()

    /**
     * @param name The _unique_ name of the resulting resource.
     */
    public fun name(`value`: String) {
        this.name = value
    }

    /**
     * @param block The arguments to use to populate this resource's properties.
     */
    public suspend fun args(block: suspend ZeroTrustSplitTunnelArgsBuilder.() -> Unit) {
        val builder = ZeroTrustSplitTunnelArgsBuilder()
        block(builder)
        this.args = builder.build()
    }

    /**
     * @param block A bag of options that control this resource's behavior.
     */
    public suspend fun opts(block: suspend CustomResourceOptionsBuilder.() -> Unit) {
        this.opts = com.pulumi.kotlin.options.CustomResourceOptions.opts(block)
    }

    internal fun build(): ZeroTrustSplitTunnel {
        val builtJavaResource = com.pulumi.cloudflare.ZeroTrustSplitTunnel(
            this.name,
            this.args.toJava(),
            this.opts.toJava(),
        )
        return ZeroTrustSplitTunnel(builtJavaResource)
    }
}

/**
 * Provides a Cloudflare Split Tunnel resource. Split tunnels are used to either
 * include or exclude lists of routes from the WARP client's tunnel.
 */
public class ZeroTrustSplitTunnel internal constructor(
    override val javaResource: com.pulumi.cloudflare.ZeroTrustSplitTunnel,
) : KotlinCustomResource(javaResource, ZeroTrustSplitTunnelMapper) {
    /**
     * The account identifier to target for the resource.
     */
    public val accountId: Output
        get() = javaResource.accountId().applyValue({ args0 -> args0 })

    /**
     * The mode of the split tunnel policy. Available values: `include`, `exclude`.
     */
    public val mode: Output
        get() = javaResource.mode().applyValue({ args0 -> args0 })

    /**
     * The settings policy for which to configure this split tunnel policy.
     */
    public val policyId: Output?
        get() = javaResource.policyId().applyValue({ args0 -> args0.map({ args0 -> args0 }).orElse(null) })

    /**
     * The value of the tunnel attributes.
     */
    public val tunnels: Output>
        get() = javaResource.tunnels().applyValue({ args0 ->
            args0.map({ args0 ->
                args0.let({ args0 ->
                    toKotlin(args0)
                })
            })
        })
}

public object ZeroTrustSplitTunnelMapper : ResourceMapper {
    override fun supportsMappingOfType(javaResource: Resource): Boolean =
        com.pulumi.cloudflare.ZeroTrustSplitTunnel::class == javaResource::class

    override fun map(javaResource: Resource): ZeroTrustSplitTunnel = ZeroTrustSplitTunnel(
        javaResource
            as com.pulumi.cloudflare.ZeroTrustSplitTunnel,
    )
}

/**
 * @see [ZeroTrustSplitTunnel].
 * @param name The _unique_ name of the resulting resource.
 * @param block Builder for [ZeroTrustSplitTunnel].
 */
public suspend fun zeroTrustSplitTunnel(
    name: String,
    block: suspend ZeroTrustSplitTunnelResourceBuilder.() -> Unit,
): ZeroTrustSplitTunnel {
    val builder = ZeroTrustSplitTunnelResourceBuilder()
    builder.name(name)
    block(builder)
    return builder.build()
}

/**
 * @see [ZeroTrustSplitTunnel].
 * @param name The _unique_ name of the resulting resource.
 */
public fun zeroTrustSplitTunnel(name: String): ZeroTrustSplitTunnel {
    val builder = ZeroTrustSplitTunnelResourceBuilder()
    builder.name(name)
    return builder.build()
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy