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

com.pulumi.cloudflare.kotlin.outputs.GetTunnelResult.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.String
import kotlin.Suppress

/**
 * A collection of values returned by getTunnel.
 * @property accountId The account identifier to target for the resource. **Modifying this attribute will force creation of a new resource.**
 * @property id ID of the tunnel.
 * @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.**
 * @property remoteConfig Whether the tunnel can be configured remotely from the Zero Trust dashboard.
 * @property status The status of the tunnel. Available values: `inactive`, `degraded`, `healthy`, `down`.
 * @property tunnelType The type of the tunnel. Available values: `cfd_tunnel`, `warp_connector`.
 */
public data class GetTunnelResult(
    public val accountId: String,
    public val id: String,
    public val isDeleted: Boolean? = null,
    public val name: String,
    public val remoteConfig: Boolean,
    public val status: String,
    public val tunnelType: String,
) {
    public companion object {
        public fun toKotlin(javaType: com.pulumi.cloudflare.outputs.GetTunnelResult): GetTunnelResult =
            GetTunnelResult(
                accountId = javaType.accountId(),
                id = javaType.id(),
                isDeleted = javaType.isDeleted().map({ args0 -> args0 }).orElse(null),
                name = javaType.name(),
                remoteConfig = javaType.remoteConfig(),
                status = javaType.status(),
                tunnelType = javaType.tunnelType(),
            )
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy