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

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

import com.pulumi.cloudflare.inputs.ZeroTrustSplitTunnelTunnelArgs.builder
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiTagMarker
import kotlin.String
import kotlin.Suppress
import kotlin.jvm.JvmName

/**
 *
 * @property address The address for the tunnel.
 * @property description A description for the tunnel.
 * @property host The domain name for the tunnel.
 */
public data class ZeroTrustSplitTunnelTunnelArgs(
    public val address: Output? = null,
    public val description: Output? = null,
    public val host: Output? = null,
) : ConvertibleToJava {
    override fun toJava(): com.pulumi.cloudflare.inputs.ZeroTrustSplitTunnelTunnelArgs =
        com.pulumi.cloudflare.inputs.ZeroTrustSplitTunnelTunnelArgs.builder()
            .address(address?.applyValue({ args0 -> args0 }))
            .description(description?.applyValue({ args0 -> args0 }))
            .host(host?.applyValue({ args0 -> args0 })).build()
}

/**
 * Builder for [ZeroTrustSplitTunnelTunnelArgs].
 */
@PulumiTagMarker
public class ZeroTrustSplitTunnelTunnelArgsBuilder internal constructor() {
    private var address: Output? = null

    private var description: Output? = null

    private var host: Output? = null

    /**
     * @param value The address for the tunnel.
     */
    @JvmName("slmqltretmruxgwy")
    public suspend fun address(`value`: Output) {
        this.address = value
    }

    /**
     * @param value A description for the tunnel.
     */
    @JvmName("vkugtxyqjhgdfbob")
    public suspend fun description(`value`: Output) {
        this.description = value
    }

    /**
     * @param value The domain name for the tunnel.
     */
    @JvmName("ouymtqpkqeaxedaf")
    public suspend fun host(`value`: Output) {
        this.host = value
    }

    /**
     * @param value The address for the tunnel.
     */
    @JvmName("ggrbimcuattojuwb")
    public suspend fun address(`value`: String?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.address = mapped
    }

    /**
     * @param value A description for the tunnel.
     */
    @JvmName("covarxcnksscqybj")
    public suspend fun description(`value`: String?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.description = mapped
    }

    /**
     * @param value The domain name for the tunnel.
     */
    @JvmName("rgyscgpauculdsei")
    public suspend fun host(`value`: String?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.host = mapped
    }

    internal fun build(): ZeroTrustSplitTunnelTunnelArgs = ZeroTrustSplitTunnelTunnelArgs(
        address = address,
        description = description,
        host = host,
    )
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy