com.pulumi.cloudflare.kotlin.ZeroTrustDeviceManagedNetworks.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.
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.cloudflare.kotlin
import com.pulumi.cloudflare.kotlin.outputs.ZeroTrustDeviceManagedNetworksConfig
import com.pulumi.cloudflare.kotlin.outputs.ZeroTrustDeviceManagedNetworksConfig.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
/**
* Builder for [ZeroTrustDeviceManagedNetworks].
*/
@PulumiTagMarker
public class ZeroTrustDeviceManagedNetworksResourceBuilder internal constructor() {
public var name: String? = null
public var args: ZeroTrustDeviceManagedNetworksArgs = ZeroTrustDeviceManagedNetworksArgs()
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 ZeroTrustDeviceManagedNetworksArgsBuilder.() -> Unit) {
val builder = ZeroTrustDeviceManagedNetworksArgsBuilder()
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(): ZeroTrustDeviceManagedNetworks {
val builtJavaResource =
com.pulumi.cloudflare.ZeroTrustDeviceManagedNetworks(
this.name,
this.args.toJava(),
this.opts.toJava(),
)
return ZeroTrustDeviceManagedNetworks(builtJavaResource)
}
}
/**
* Provides a Cloudflare Device Managed Network resource. Device managed networks allow for building location-aware device settings policies.
* ## Example Usage
*
* ```typescript
* import * as pulumi from "@pulumi/pulumi";
* import * as cloudflare from "@pulumi/cloudflare";
* const managedNetworks = new cloudflare.ZeroTrustDeviceManagedNetworks("managed_networks", {
* accountId: "f037e56e89293a057740de681ac9abbe",
* name: "managed-network-1",
* type: "tls",
* config: {
* tlsSockaddr: "foobar:1234",
* sha256: "b5bb9d8014a0f9b1d61e21e796d78dccdf1352f23cd32812f4850b878ae4944c",
* },
* });
* ```
* ```python
* import pulumi
* import pulumi_cloudflare as cloudflare
* managed_networks = cloudflare.ZeroTrustDeviceManagedNetworks("managed_networks",
* account_id="f037e56e89293a057740de681ac9abbe",
* name="managed-network-1",
* type="tls",
* config={
* "tls_sockaddr": "foobar:1234",
* "sha256": "b5bb9d8014a0f9b1d61e21e796d78dccdf1352f23cd32812f4850b878ae4944c",
* })
* ```
* ```csharp
* using System.Collections.Generic;
* using System.Linq;
* using Pulumi;
* using Cloudflare = Pulumi.Cloudflare;
* return await Deployment.RunAsync(() =>
* {
* var managedNetworks = new Cloudflare.ZeroTrustDeviceManagedNetworks("managed_networks", new()
* {
* AccountId = "f037e56e89293a057740de681ac9abbe",
* Name = "managed-network-1",
* Type = "tls",
* Config = new Cloudflare.Inputs.ZeroTrustDeviceManagedNetworksConfigArgs
* {
* TlsSockaddr = "foobar:1234",
* Sha256 = "b5bb9d8014a0f9b1d61e21e796d78dccdf1352f23cd32812f4850b878ae4944c",
* },
* });
* });
* ```
* ```go
* package main
* import (
* "github.com/pulumi/pulumi-cloudflare/sdk/v5/go/cloudflare"
* "github.com/pulumi/pulumi/sdk/v3/go/pulumi"
* )
* func main() {
* pulumi.Run(func(ctx *pulumi.Context) error {
* _, err := cloudflare.NewZeroTrustDeviceManagedNetworks(ctx, "managed_networks", &cloudflare.ZeroTrustDeviceManagedNetworksArgs{
* AccountId: pulumi.String("f037e56e89293a057740de681ac9abbe"),
* Name: pulumi.String("managed-network-1"),
* Type: pulumi.String("tls"),
* Config: &cloudflare.ZeroTrustDeviceManagedNetworksConfigArgs{
* TlsSockaddr: pulumi.String("foobar:1234"),
* Sha256: pulumi.String("b5bb9d8014a0f9b1d61e21e796d78dccdf1352f23cd32812f4850b878ae4944c"),
* },
* })
* if err != nil {
* return err
* }
* return nil
* })
* }
* ```
* ```java
* package generated_program;
* import com.pulumi.Context;
* import com.pulumi.Pulumi;
* import com.pulumi.core.Output;
* import com.pulumi.cloudflare.ZeroTrustDeviceManagedNetworks;
* import com.pulumi.cloudflare.ZeroTrustDeviceManagedNetworksArgs;
* import com.pulumi.cloudflare.inputs.ZeroTrustDeviceManagedNetworksConfigArgs;
* import java.util.List;
* import java.util.ArrayList;
* import java.util.Map;
* import java.io.File;
* import java.nio.file.Files;
* import java.nio.file.Paths;
* public class App {
* public static void main(String[] args) {
* Pulumi.run(App::stack);
* }
* public static void stack(Context ctx) {
* var managedNetworks = new ZeroTrustDeviceManagedNetworks("managedNetworks", ZeroTrustDeviceManagedNetworksArgs.builder()
* .accountId("f037e56e89293a057740de681ac9abbe")
* .name("managed-network-1")
* .type("tls")
* .config(ZeroTrustDeviceManagedNetworksConfigArgs.builder()
* .tlsSockaddr("foobar:1234")
* .sha256("b5bb9d8014a0f9b1d61e21e796d78dccdf1352f23cd32812f4850b878ae4944c")
* .build())
* .build());
* }
* }
* ```
* ```yaml
* resources:
* managedNetworks:
* type: cloudflare:ZeroTrustDeviceManagedNetworks
* name: managed_networks
* properties:
* accountId: f037e56e89293a057740de681ac9abbe
* name: managed-network-1
* type: tls
* config:
* tlsSockaddr: foobar:1234
* sha256: b5bb9d8014a0f9b1d61e21e796d78dccdf1352f23cd32812f4850b878ae4944c
* ```
*
* ## Import
* ```sh
* $ pulumi import cloudflare:index/zeroTrustDeviceManagedNetworks:ZeroTrustDeviceManagedNetworks example /
* ```
*/
public class ZeroTrustDeviceManagedNetworks internal constructor(
override val javaResource: com.pulumi.cloudflare.ZeroTrustDeviceManagedNetworks,
) : KotlinCustomResource(javaResource, ZeroTrustDeviceManagedNetworksMapper) {
/**
* The account identifier to target for the resource.
*/
public val accountId: Output
get() = javaResource.accountId().applyValue({ args0 -> args0 })
/**
* The configuration containing information for the WARP client to detect the managed network.
*/
public val config: Output
get() = javaResource.config().applyValue({ args0 -> args0.let({ args0 -> toKotlin(args0) }) })
/**
* The name of the Device Managed Network. Must be unique.
*/
public val name: Output
get() = javaResource.name().applyValue({ args0 -> args0 })
/**
* The type of Device Managed Network. Available values: `tls`.
*/
public val type: Output
get() = javaResource.type().applyValue({ args0 -> args0 })
}
public object ZeroTrustDeviceManagedNetworksMapper : ResourceMapper {
override fun supportsMappingOfType(javaResource: Resource): Boolean =
com.pulumi.cloudflare.ZeroTrustDeviceManagedNetworks::class == javaResource::class
override fun map(javaResource: Resource): ZeroTrustDeviceManagedNetworks =
ZeroTrustDeviceManagedNetworks(
javaResource as
com.pulumi.cloudflare.ZeroTrustDeviceManagedNetworks,
)
}
/**
* @see [ZeroTrustDeviceManagedNetworks].
* @param name The _unique_ name of the resulting resource.
* @param block Builder for [ZeroTrustDeviceManagedNetworks].
*/
public suspend fun zeroTrustDeviceManagedNetworks(
name: String,
block: suspend ZeroTrustDeviceManagedNetworksResourceBuilder.() -> Unit,
): ZeroTrustDeviceManagedNetworks {
val builder = ZeroTrustDeviceManagedNetworksResourceBuilder()
builder.name(name)
block(builder)
return builder.build()
}
/**
* @see [ZeroTrustDeviceManagedNetworks].
* @param name The _unique_ name of the resulting resource.
*/
public fun zeroTrustDeviceManagedNetworks(name: String): ZeroTrustDeviceManagedNetworks {
val builder = ZeroTrustDeviceManagedNetworksResourceBuilder()
builder.name(name)
return builder.build()
}