Namespace
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:
How-to Guides
Example Usage
Service Directory Namespace Basic
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",
},
});
import pulumi
import pulumi_gcp as gcp
example = gcp.servicedirectory.Namespace("example",
namespace_id="example-namespace",
location="us-central1",
labels={
"key": "value",
"foo": "bar",
})
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" },
},
});
});
package main
import (
"github.com/pulumi/pulumi-gcp/sdk/v8/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
})
}
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());
}
}
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 thepulumi import
command, Namespace can be imported using one of the formats above. For example:
$ 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
All of labels (key/value pairs) present on the resource in GCP, including the labels configured through Pulumi, other clients and services.
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.
The Resource ID must be 1-63 characters long, including digits, lowercase letters or the hyphen character.
The combination of labels configured directly on the resource and default labels configured on the provider.