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

com.pulumi.cloudflare.kotlin.inputs.GetZeroTrustTunnelCloudflaredPlainArgs.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.GetZeroTrustTunnelCloudflaredPlainArgs.builder
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiNullFieldException
import com.pulumi.kotlin.PulumiTagMarker
import kotlin.Boolean
import kotlin.String
import kotlin.Suppress
import kotlin.jvm.JvmName

/**
 * A collection of arguments for invoking getZeroTrustTunnelCloudflared.
 * @property accountId The account identifier to target for the resource. **Modifying this attribute will force creation of a new resource.**
 * @property isDeleted If true, only include deleted tunnels. If false, exclude deleted tunnels. If empty, all tunnels will be included. **Modifying this attribute will force creation of a new resource.**
 * @property name Name of the tunnel. **Modifying this attribute will force creation of a new resource.**
 */
public data class GetZeroTrustTunnelCloudflaredPlainArgs(
    public val accountId: String,
    public val isDeleted: Boolean? = null,
    public val name: String,
) : ConvertibleToJava {
    override fun toJava(): com.pulumi.cloudflare.inputs.GetZeroTrustTunnelCloudflaredPlainArgs =
        com.pulumi.cloudflare.inputs.GetZeroTrustTunnelCloudflaredPlainArgs.builder()
            .accountId(accountId.let({ args0 -> args0 }))
            .isDeleted(isDeleted?.let({ args0 -> args0 }))
            .name(name.let({ args0 -> args0 })).build()
}

/**
 * Builder for [GetZeroTrustTunnelCloudflaredPlainArgs].
 */
@PulumiTagMarker
public class GetZeroTrustTunnelCloudflaredPlainArgsBuilder internal constructor() {
    private var accountId: String? = null

    private var isDeleted: Boolean? = null

    private var name: String? = null

    /**
     * @param value The account identifier to target for the resource. **Modifying this attribute will force creation of a new resource.**
     */
    @JvmName("orrteefvaqhqgaey")
    public suspend fun accountId(`value`: String) {
        val toBeMapped = value
        val mapped = toBeMapped.let({ args0 -> args0 })
        this.accountId = mapped
    }

    /**
     * @param value If true, only include deleted tunnels. If false, exclude deleted tunnels. If empty, all tunnels will be included. **Modifying this attribute will force creation of a new resource.**
     */
    @JvmName("mvidqoqcgickxvmp")
    public suspend fun isDeleted(`value`: Boolean?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> args0 })
        this.isDeleted = mapped
    }

    /**
     * @param value Name of the tunnel. **Modifying this attribute will force creation of a new resource.**
     */
    @JvmName("tibmskyytfsowmyl")
    public suspend fun name(`value`: String) {
        val toBeMapped = value
        val mapped = toBeMapped.let({ args0 -> args0 })
        this.name = mapped
    }

    internal fun build(): GetZeroTrustTunnelCloudflaredPlainArgs =
        GetZeroTrustTunnelCloudflaredPlainArgs(
            accountId = accountId ?: throw PulumiNullFieldException("accountId"),
            isDeleted = isDeleted,
            name = name ?: throw PulumiNullFieldException("name"),
        )
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy