Namespace

Example Usage

Service Directory Namespace Basic

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 com.pulumi.resources.CustomResourceOptions;
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(), CustomResourceOptions.builder()
.provider(google_beta)
.build());
}
}

Import

Namespace can be imported using any of these accepted formats

$ pulumi import gcp:servicedirectory/namespace:Namespace default projects/{{project}}/locations/{{location}}/namespaces/{{namespace_id}}
$ pulumi import gcp:servicedirectory/namespace:Namespace default {{project}}/{{location}}/{{namespace_id}}
$ pulumi import gcp:servicedirectory/namespace:Namespace default {{location}}/{{namespace_id}}

Properties

Link copied to clipboard
val id: Output<String>
Link copied to clipboard
val labels: Output<Map<String, String>>?

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.

Link copied to clipboard
val location: Output<String>

The location for the Namespace. A full list of valid locations can be found by running gcloud beta service-directory locations list.

Link copied to clipboard
val name: Output<String>

The resource name for the namespace in the format projects/*/locations/*/namespaces/*. //*/

Link copied to clipboard
val namespaceId: Output<String>

The Resource ID must be 1-63 characters long, including digits, lowercase letters or the hyphen character.

Link copied to clipboard
val project: Output<String>

The ID of the project in which the resource belongs. If it is not provided, the provider project is used.

Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
val urn: Output<String>