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

com.pulumi.gcp.servicedirectory.kotlin.NamespaceArgs.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: 8.12.0.0
Show newest version
@file:Suppress("NAME_SHADOWING", "DEPRECATION")

package com.pulumi.gcp.servicedirectory.kotlin

import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.gcp.servicedirectory.NamespaceArgs.builder
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiTagMarker
import kotlin.Pair
import kotlin.String
import kotlin.Suppress
import kotlin.collections.Map
import kotlin.jvm.JvmName

/**
 * A container for `services`. Namespaces allow administrators to group services
 * together and define permissions for a collection of services.
 * To get more information about Namespace, see:
 * * [API documentation](https://cloud.google.com/service-directory/docs/reference/rest/v1beta1/projects.locations.namespaces)
 * * How-to Guides
 *     * [Configuring a namespace](https://cloud.google.com/service-directory/docs/configuring-service-directory#configuring_a_namespace)
 * ## Example Usage
 * ### Service Directory Namespace Basic
 * 
 * ```typescript
 * import * as pulumi from "@pulumi/pulumi";
 * import * as gcp from "@pulumi/gcp";
 * const example = new gcp.servicedirectory.Namespace("example", {
 *     namespaceId: "example-namespace",
 *     location: "us-central1",
 *     labels: {
 *         key: "value",
 *         foo: "bar",
 *     },
 * });
 * ```
 * ```python
 * import pulumi
 * import pulumi_gcp as gcp
 * example = gcp.servicedirectory.Namespace("example",
 *     namespace_id="example-namespace",
 *     location="us-central1",
 *     labels={
 *         "key": "value",
 *         "foo": "bar",
 *     })
 * ```
 * ```csharp
 * using System.Collections.Generic;
 * using System.Linq;
 * using Pulumi;
 * using Gcp = Pulumi.Gcp;
 * return await Deployment.RunAsync(() =>
 * {
 *     var example = new Gcp.ServiceDirectory.Namespace("example", new()
 *     {
 *         NamespaceId = "example-namespace",
 *         Location = "us-central1",
 *         Labels =
 *         {
 *             { "key", "value" },
 *             { "foo", "bar" },
 *         },
 *     });
 * });
 * ```
 * ```go
 * package main
 * import (
 * 	"github.com/pulumi/pulumi-gcp/sdk/v7/go/gcp/servicedirectory"
 * 	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
 * )
 * func main() {
 * 	pulumi.Run(func(ctx *pulumi.Context) error {
 * 		_, err := servicedirectory.NewNamespace(ctx, "example", &servicedirectory.NamespaceArgs{
 * 			NamespaceId: pulumi.String("example-namespace"),
 * 			Location:    pulumi.String("us-central1"),
 * 			Labels: pulumi.StringMap{
 * 				"key": pulumi.String("value"),
 * 				"foo": pulumi.String("bar"),
 * 			},
 * 		})
 * 		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.gcp.servicedirectory.Namespace;
 * import com.pulumi.gcp.servicedirectory.NamespaceArgs;
 * 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 Namespace("example", NamespaceArgs.builder()
 *             .namespaceId("example-namespace")
 *             .location("us-central1")
 *             .labels(Map.ofEntries(
 *                 Map.entry("key", "value"),
 *                 Map.entry("foo", "bar")
 *             ))
 *             .build());
 *     }
 * }
 * ```
 * ```yaml
 * resources:
 *   example:
 *     type: gcp:servicedirectory:Namespace
 *     properties:
 *       namespaceId: example-namespace
 *       location: us-central1
 *       labels:
 *         key: value
 *         foo: bar
 * ```
 * 
 * ## Import
 * Namespace can be imported using any of these accepted formats:
 * * `projects/{{project}}/locations/{{location}}/namespaces/{{namespace_id}}`
 * * `{{project}}/{{location}}/{{namespace_id}}`
 * * `{{location}}/{{namespace_id}}`
 * When using the `pulumi import` command, Namespace can be imported using one of the formats above. For example:
 * ```sh
 * $ pulumi import gcp:servicedirectory/namespace:Namespace default projects/{{project}}/locations/{{location}}/namespaces/{{namespace_id}}
 * ```
 * ```sh
 * $ pulumi import gcp:servicedirectory/namespace:Namespace default {{project}}/{{location}}/{{namespace_id}}
 * ```
 * ```sh
 * $ pulumi import gcp:servicedirectory/namespace:Namespace default {{location}}/{{namespace_id}}
 * ```
 * @property labels Resource labels associated with this Namespace. No more than 64 user
 * labels can be associated with a given resource. Label keys and values can
 * be no longer than 63 characters.
 * **Note**: This field is non-authoritative, and will only manage the labels present in your configuration.
 * Please refer to the field `effective_labels` for all of the labels present on the resource.
 * @property location The location for the Namespace.
 * A full list of valid locations can be found by running
 * `gcloud beta service-directory locations list`.
 * @property namespaceId The Resource ID must be 1-63 characters long, including digits,
 * lowercase letters or the hyphen character.
 * - - -
 * @property project The ID of the project in which the resource belongs.
 * If it is not provided, the provider project is used.
 */
public data class NamespaceArgs(
    public val labels: Output>? = null,
    public val location: Output? = null,
    public val namespaceId: Output? = null,
    public val project: Output? = null,
) : ConvertibleToJava {
    override fun toJava(): com.pulumi.gcp.servicedirectory.NamespaceArgs =
        com.pulumi.gcp.servicedirectory.NamespaceArgs.builder()
            .labels(labels?.applyValue({ args0 -> args0.map({ args0 -> args0.key.to(args0.value) }).toMap() }))
            .location(location?.applyValue({ args0 -> args0 }))
            .namespaceId(namespaceId?.applyValue({ args0 -> args0 }))
            .project(project?.applyValue({ args0 -> args0 })).build()
}

/**
 * Builder for [NamespaceArgs].
 */
@PulumiTagMarker
public class NamespaceArgsBuilder internal constructor() {
    private var labels: Output>? = null

    private var location: Output? = null

    private var namespaceId: Output? = null

    private var project: Output? = null

    /**
     * @param value Resource labels associated with this Namespace. No more than 64 user
     * labels can be associated with a given resource. Label keys and values can
     * be no longer than 63 characters.
     * **Note**: This field is non-authoritative, and will only manage the labels present in your configuration.
     * Please refer to the field `effective_labels` for all of the labels present on the resource.
     */
    @JvmName("kwgfcvrivagirhfj")
    public suspend fun labels(`value`: Output>) {
        this.labels = value
    }

    /**
     * @param value The location for the Namespace.
     * A full list of valid locations can be found by running
     * `gcloud beta service-directory locations list`.
     */
    @JvmName("xythyrpfyfbubmfr")
    public suspend fun location(`value`: Output) {
        this.location = value
    }

    /**
     * @param value The Resource ID must be 1-63 characters long, including digits,
     * lowercase letters or the hyphen character.
     * - - -
     */
    @JvmName("xphsoxdsgdkltlny")
    public suspend fun namespaceId(`value`: Output) {
        this.namespaceId = value
    }

    /**
     * @param value The ID of the project in which the resource belongs.
     * If it is not provided, the provider project is used.
     */
    @JvmName("etqjdyfjkuvbdnub")
    public suspend fun project(`value`: Output) {
        this.project = value
    }

    /**
     * @param value Resource labels associated with this Namespace. No more than 64 user
     * labels can be associated with a given resource. Label keys and values can
     * be no longer than 63 characters.
     * **Note**: This field is non-authoritative, and will only manage the labels present in your configuration.
     * Please refer to the field `effective_labels` for all of the labels present on the resource.
     */
    @JvmName("vqcvcfwybtaesher")
    public suspend fun labels(`value`: Map?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.labels = mapped
    }

    /**
     * @param values Resource labels associated with this Namespace. No more than 64 user
     * labels can be associated with a given resource. Label keys and values can
     * be no longer than 63 characters.
     * **Note**: This field is non-authoritative, and will only manage the labels present in your configuration.
     * Please refer to the field `effective_labels` for all of the labels present on the resource.
     */
    @JvmName("pompwbavoshxcbhn")
    public fun labels(vararg values: Pair) {
        val toBeMapped = values.toMap()
        val mapped = toBeMapped.let({ args0 -> of(args0) })
        this.labels = mapped
    }

    /**
     * @param value The location for the Namespace.
     * A full list of valid locations can be found by running
     * `gcloud beta service-directory locations list`.
     */
    @JvmName("mhbdrxvrjghuesgc")
    public suspend fun location(`value`: String?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.location = mapped
    }

    /**
     * @param value The Resource ID must be 1-63 characters long, including digits,
     * lowercase letters or the hyphen character.
     * - - -
     */
    @JvmName("ymepidyxijfsjovm")
    public suspend fun namespaceId(`value`: String?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.namespaceId = mapped
    }

    /**
     * @param value The ID of the project in which the resource belongs.
     * If it is not provided, the provider project is used.
     */
    @JvmName("kfogxvnvracamqkj")
    public suspend fun project(`value`: String?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.project = mapped
    }

    internal fun build(): NamespaceArgs = NamespaceArgs(
        labels = labels,
        location = location,
        namespaceId = namespaceId,
        project = project,
    )
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy