com.pulumi.gcp.servicedirectory.kotlin.Namespace.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-gcp-kotlin Show documentation
Show all versions of pulumi-gcp-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.gcp.servicedirectory.kotlin
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.Map
/**
* Builder for [Namespace].
*/
@PulumiTagMarker
public class NamespaceResourceBuilder internal constructor() {
public var name: String? = null
public var args: NamespaceArgs = NamespaceArgs()
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 NamespaceArgsBuilder.() -> Unit) {
val builder = NamespaceArgsBuilder()
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(): Namespace {
val builtJavaResource = com.pulumi.gcp.servicedirectory.Namespace(
this.name,
this.args.toJava(),
this.opts.toJava(),
)
return Namespace(builtJavaResource)
}
}
/**
* 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}}
* ```
*/
public class Namespace internal constructor(
override val javaResource: com.pulumi.gcp.servicedirectory.Namespace,
) : KotlinCustomResource(javaResource, NamespaceMapper) {
/**
* All of labels (key/value pairs) present on the resource in GCP, including the labels configured through Pulumi, other clients and services.
*/
public val effectiveLabels: Output
© 2015 - 2025 Weber Informatics LLC | Privacy Policy