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

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

import com.pulumi.cloudflare.kotlin.outputs.ZeroTrustListItemsWithDescription
import com.pulumi.cloudflare.kotlin.outputs.ZeroTrustListItemsWithDescription.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 [ZeroTrustList].
 */
@PulumiTagMarker
public class ZeroTrustListResourceBuilder internal constructor() {
    public var name: String? = null

    public var args: ZeroTrustListArgs = ZeroTrustListArgs()

    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 ZeroTrustListArgsBuilder.() -> Unit) {
        val builder = ZeroTrustListArgsBuilder()
        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(): ZeroTrustList {
        val builtJavaResource = com.pulumi.cloudflare.ZeroTrustList(
            this.name,
            this.args.toJava(),
            this.opts.toJava(),
        )
        return ZeroTrustList(builtJavaResource)
    }
}

/**
 * Provides a Cloudflare Teams List resource. Teams lists are
 * referenced when creating secure web gateway policies or device
 * posture rules.
 * ## Example Usage
 * 
 * ```typescript
 * import * as pulumi from "@pulumi/pulumi";
 * import * as cloudflare from "@pulumi/cloudflare";
 * const example = new cloudflare.ZeroTrustList("example", {
 *     accountId: "f037e56e89293a057740de681ac9abbe",
 *     name: "Corporate devices",
 *     type: "SERIAL",
 *     description: "Serial numbers for all corporate devices.",
 *     items: [
 *         "8GE8721REF",
 *         "5RE8543EGG",
 *         "1YE2880LNP",
 *     ],
 * });
 * ```
 * ```python
 * import pulumi
 * import pulumi_cloudflare as cloudflare
 * example = cloudflare.ZeroTrustList("example",
 *     account_id="f037e56e89293a057740de681ac9abbe",
 *     name="Corporate devices",
 *     type="SERIAL",
 *     description="Serial numbers for all corporate devices.",
 *     items=[
 *         "8GE8721REF",
 *         "5RE8543EGG",
 *         "1YE2880LNP",
 *     ])
 * ```
 * ```csharp
 * using System.Collections.Generic;
 * using System.Linq;
 * using Pulumi;
 * using Cloudflare = Pulumi.Cloudflare;
 * return await Deployment.RunAsync(() =>
 * {
 *     var example = new Cloudflare.ZeroTrustList("example", new()
 *     {
 *         AccountId = "f037e56e89293a057740de681ac9abbe",
 *         Name = "Corporate devices",
 *         Type = "SERIAL",
 *         Description = "Serial numbers for all corporate devices.",
 *         Items = new[]
 *         {
 *             "8GE8721REF",
 *             "5RE8543EGG",
 *             "1YE2880LNP",
 *         },
 *     });
 * });
 * ```
 * ```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.NewZeroTrustList(ctx, "example", &cloudflare.ZeroTrustListArgs{
 * 			AccountId:   pulumi.String("f037e56e89293a057740de681ac9abbe"),
 * 			Name:        pulumi.String("Corporate devices"),
 * 			Type:        pulumi.String("SERIAL"),
 * 			Description: pulumi.String("Serial numbers for all corporate devices."),
 * 			Items: pulumi.StringArray{
 * 				pulumi.String("8GE8721REF"),
 * 				pulumi.String("5RE8543EGG"),
 * 				pulumi.String("1YE2880LNP"),
 * 			},
 * 		})
 * 		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.ZeroTrustList;
 * import com.pulumi.cloudflare.ZeroTrustListArgs;
 * 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 example = new ZeroTrustList("example", ZeroTrustListArgs.builder()
 *             .accountId("f037e56e89293a057740de681ac9abbe")
 *             .name("Corporate devices")
 *             .type("SERIAL")
 *             .description("Serial numbers for all corporate devices.")
 *             .items(
 *                 "8GE8721REF",
 *                 "5RE8543EGG",
 *                 "1YE2880LNP")
 *             .build());
 *     }
 * }
 * ```
 * ```yaml
 * resources:
 *   example:
 *     type: cloudflare:ZeroTrustList
 *     properties:
 *       accountId: f037e56e89293a057740de681ac9abbe
 *       name: Corporate devices
 *       type: SERIAL
 *       description: Serial numbers for all corporate devices.
 *       items:
 *         - 8GE8721REF
 *         - 5RE8543EGG
 *         - 1YE2880LNP
 * ```
 * 
 * ## Import
 * ```sh
 * $ pulumi import cloudflare:index/zeroTrustList:ZeroTrustList example /
 * ```
 */
public class ZeroTrustList internal constructor(
    override val javaResource: com.pulumi.cloudflare.ZeroTrustList,
) : KotlinCustomResource(javaResource, ZeroTrustListMapper) {
    /**
     * The account identifier to target for the resource.
     */
    public val accountId: Output
        get() = javaResource.accountId().applyValue({ args0 -> args0 })

    /**
     * The description of the teams list.
     */
    public val description: Output?
        get() = javaResource.description().applyValue({ args0 ->
            args0.map({ args0 ->
                args0
            }).orElse(null)
        })

    /**
     * The items of the teams list.
     */
    public val items: Output>?
        get() = javaResource.items().applyValue({ args0 ->
            args0.map({ args0 ->
                args0.map({ args0 ->
                    args0
                })
            }).orElse(null)
        })

    /**
     * The items of the teams list that has explicit description.
     */
    public val itemsWithDescriptions: Output>?
        get() = javaResource.itemsWithDescriptions().applyValue({ args0 ->
            args0.map({ args0 ->
                args0.map({ args0 -> args0.let({ args0 -> toKotlin(args0) }) })
            }).orElse(null)
        })

    /**
     * Name of the teams list.
     */
    public val name: Output
        get() = javaResource.name().applyValue({ args0 -> args0 })

    /**
     * The teams list type. Available values: `IP`, `SERIAL`, `URL`, `DOMAIN`, `EMAIL`.
     */
    public val type: Output
        get() = javaResource.type().applyValue({ args0 -> args0 })
}

public object ZeroTrustListMapper : ResourceMapper {
    override fun supportsMappingOfType(javaResource: Resource): Boolean =
        com.pulumi.cloudflare.ZeroTrustList::class == javaResource::class

    override fun map(javaResource: Resource): ZeroTrustList = ZeroTrustList(
        javaResource as
            com.pulumi.cloudflare.ZeroTrustList,
    )
}

/**
 * @see [ZeroTrustList].
 * @param name The _unique_ name of the resulting resource.
 * @param block Builder for [ZeroTrustList].
 */
public suspend fun zeroTrustList(
    name: String,
    block: suspend ZeroTrustListResourceBuilder.() -> Unit,
): ZeroTrustList {
    val builder = ZeroTrustListResourceBuilder()
    builder.name(name)
    block(builder)
    return builder.build()
}

/**
 * @see [ZeroTrustList].
 * @param name The _unique_ name of the resulting resource.
 */
public fun zeroTrustList(name: String): ZeroTrustList {
    val builder = ZeroTrustListResourceBuilder()
    builder.name(name)
    return builder.build()
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy