com.pulumi.cloudflare.kotlin.SplitTunnel.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-cloudflare-kotlin Show documentation
Show all versions of pulumi-cloudflare-kotlin Show documentation
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
import com.pulumi.cloudflare.kotlin.outputs.SplitTunnelTunnel
import com.pulumi.cloudflare.kotlin.outputs.SplitTunnelTunnel.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 [SplitTunnel].
*/
@PulumiTagMarker
public class SplitTunnelResourceBuilder internal constructor() {
public var name: String? = null
public var args: SplitTunnelArgs = SplitTunnelArgs()
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 SplitTunnelArgsBuilder.() -> Unit) {
val builder = SplitTunnelArgsBuilder()
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(): SplitTunnel {
val builtJavaResource = com.pulumi.cloudflare.SplitTunnel(
this.name,
this.args.toJava(),
this.opts.toJava(),
)
return SplitTunnel(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.
* ## Import
* Split Tunnels for default device policies must use "default" as the policy ID.
* ```sh
* $ pulumi import cloudflare:index/splitTunnel:SplitTunnel example //
* ```
*/
public class SplitTunnel internal constructor(
override val javaResource: com.pulumi.cloudflare.SplitTunnel,
) : KotlinCustomResource(javaResource, SplitTunnelMapper) {
/**
* 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 SplitTunnelMapper : ResourceMapper {
override fun supportsMappingOfType(javaResource: Resource): Boolean =
com.pulumi.cloudflare.SplitTunnel::class == javaResource::class
override fun map(javaResource: Resource): SplitTunnel = SplitTunnel(
javaResource as
com.pulumi.cloudflare.SplitTunnel,
)
}
/**
* @see [SplitTunnel].
* @param name The _unique_ name of the resulting resource.
* @param block Builder for [SplitTunnel].
*/
public suspend fun splitTunnel(name: String, block: suspend SplitTunnelResourceBuilder.() -> Unit): SplitTunnel {
val builder = SplitTunnelResourceBuilder()
builder.name(name)
block(builder)
return builder.build()
}
/**
* @see [SplitTunnel].
* @param name The _unique_ name of the resulting resource.
*/
public fun splitTunnel(name: String): SplitTunnel {
val builder = SplitTunnelResourceBuilder()
builder.name(name)
return builder.build()
}