scaleway.containers.Namespace
Explore with Pulumi AI
The scaleway.containers.Namespace resource allows you to
for Scaleway Serverless Containers.
Refer to the Containers namespace documentation and API documentation for more information.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as scaleway from "@pulumiverse/scaleway";
const main = new scaleway.containers.Namespace("main", {
    name: "main-container-namespace",
    description: "Main container namespace",
});
import pulumi
import pulumiverse_scaleway as scaleway
main = scaleway.containers.Namespace("main",
    name="main-container-namespace",
    description="Main container namespace")
package main
import (
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
	"github.com/pulumiverse/pulumi-scaleway/sdk/go/scaleway/containers"
)
func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := containers.NewNamespace(ctx, "main", &containers.NamespaceArgs{
			Name:        pulumi.String("main-container-namespace"),
			Description: pulumi.String("Main container namespace"),
		})
		if err != nil {
			return err
		}
		return nil
	})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Scaleway = Pulumiverse.Scaleway;
return await Deployment.RunAsync(() => 
{
    var main = new Scaleway.Containers.Namespace("main", new()
    {
        Name = "main-container-namespace",
        Description = "Main container namespace",
    });
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.scaleway.containers.Namespace;
import com.pulumi.scaleway.containers.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 main = new Namespace("main", NamespaceArgs.builder()
            .name("main-container-namespace")
            .description("Main container namespace")
            .build());
    }
}
resources:
  main:
    type: scaleway:containers:Namespace
    properties:
      name: main-container-namespace
      description: Main container namespace
Create Namespace Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new Namespace(name: string, args?: NamespaceArgs, opts?: CustomResourceOptions);@overload
def Namespace(resource_name: str,
              args: Optional[NamespaceArgs] = None,
              opts: Optional[ResourceOptions] = None)
@overload
def Namespace(resource_name: str,
              opts: Optional[ResourceOptions] = None,
              description: Optional[str] = None,
              destroy_registry: Optional[bool] = None,
              environment_variables: Optional[Mapping[str, str]] = None,
              name: Optional[str] = None,
              project_id: Optional[str] = None,
              region: Optional[str] = None,
              secret_environment_variables: Optional[Mapping[str, str]] = None,
              tags: Optional[Sequence[str]] = None)func NewNamespace(ctx *Context, name string, args *NamespaceArgs, opts ...ResourceOption) (*Namespace, error)public Namespace(string name, NamespaceArgs? args = null, CustomResourceOptions? opts = null)
public Namespace(String name, NamespaceArgs args)
public Namespace(String name, NamespaceArgs args, CustomResourceOptions options)
type: scaleway:containers:Namespace
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name string
- The unique name of the resource.
- args NamespaceArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args NamespaceArgs
- The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args NamespaceArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args NamespaceArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args NamespaceArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Constructor example
The following reference example uses placeholder values for all input properties.
var namespaceResource = new Scaleway.Containers.Namespace("namespaceResource", new()
{
    Description = "string",
    EnvironmentVariables = 
    {
        { "string", "string" },
    },
    Name = "string",
    ProjectId = "string",
    Region = "string",
    SecretEnvironmentVariables = 
    {
        { "string", "string" },
    },
    Tags = new[]
    {
        "string",
    },
});
example, err := containers.NewNamespace(ctx, "namespaceResource", &containers.NamespaceArgs{
	Description: pulumi.String("string"),
	EnvironmentVariables: pulumi.StringMap{
		"string": pulumi.String("string"),
	},
	Name:      pulumi.String("string"),
	ProjectId: pulumi.String("string"),
	Region:    pulumi.String("string"),
	SecretEnvironmentVariables: pulumi.StringMap{
		"string": pulumi.String("string"),
	},
	Tags: pulumi.StringArray{
		pulumi.String("string"),
	},
})
var namespaceResource = new Namespace("namespaceResource", NamespaceArgs.builder()
    .description("string")
    .environmentVariables(Map.of("string", "string"))
    .name("string")
    .projectId("string")
    .region("string")
    .secretEnvironmentVariables(Map.of("string", "string"))
    .tags("string")
    .build());
namespace_resource = scaleway.containers.Namespace("namespaceResource",
    description="string",
    environment_variables={
        "string": "string",
    },
    name="string",
    project_id="string",
    region="string",
    secret_environment_variables={
        "string": "string",
    },
    tags=["string"])
const namespaceResource = new scaleway.containers.Namespace("namespaceResource", {
    description: "string",
    environmentVariables: {
        string: "string",
    },
    name: "string",
    projectId: "string",
    region: "string",
    secretEnvironmentVariables: {
        string: "string",
    },
    tags: ["string"],
});
type: scaleway:containers:Namespace
properties:
    description: string
    environmentVariables:
        string: string
    name: string
    projectId: string
    region: string
    secretEnvironmentVariables:
        string: string
    tags:
        - string
Namespace Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.
The Namespace resource accepts the following input properties:
- Description string
- The description of the namespace.
- DestroyRegistry bool
- Destroy registry on deletion
- EnvironmentVariables Dictionary<string, string>
- The environment variables of the namespace.
- Name string
- The unique name of the Containers namespace. - Important Updates to the - nameargument will recreate the namespace.
- ProjectId string
- project_id) The unique identifier of the project that contains the namespace.
- Region string
- region). The region in which the namespace is created.
- SecretEnvironment Dictionary<string, string>Variables 
- The secret environment variables of the namespace.
- List<string>
- List of tags ["tag1", "tag2", ...] attached to the container namespace
- Description string
- The description of the namespace.
- DestroyRegistry bool
- Destroy registry on deletion
- EnvironmentVariables map[string]string
- The environment variables of the namespace.
- Name string
- The unique name of the Containers namespace. - Important Updates to the - nameargument will recreate the namespace.
- ProjectId string
- project_id) The unique identifier of the project that contains the namespace.
- Region string
- region). The region in which the namespace is created.
- SecretEnvironment map[string]stringVariables 
- The secret environment variables of the namespace.
- []string
- List of tags ["tag1", "tag2", ...] attached to the container namespace
- description String
- The description of the namespace.
- destroyRegistry Boolean
- Destroy registry on deletion
- environmentVariables Map<String,String>
- The environment variables of the namespace.
- name String
- The unique name of the Containers namespace. - Important Updates to the - nameargument will recreate the namespace.
- projectId String
- project_id) The unique identifier of the project that contains the namespace.
- region String
- region). The region in which the namespace is created.
- secretEnvironment Map<String,String>Variables 
- The secret environment variables of the namespace.
- List<String>
- List of tags ["tag1", "tag2", ...] attached to the container namespace
- description string
- The description of the namespace.
- destroyRegistry boolean
- Destroy registry on deletion
- environmentVariables {[key: string]: string}
- The environment variables of the namespace.
- name string
- The unique name of the Containers namespace. - Important Updates to the - nameargument will recreate the namespace.
- projectId string
- project_id) The unique identifier of the project that contains the namespace.
- region string
- region). The region in which the namespace is created.
- secretEnvironment {[key: string]: string}Variables 
- The secret environment variables of the namespace.
- string[]
- List of tags ["tag1", "tag2", ...] attached to the container namespace
- description str
- The description of the namespace.
- destroy_registry bool
- Destroy registry on deletion
- environment_variables Mapping[str, str]
- The environment variables of the namespace.
- name str
- The unique name of the Containers namespace. - Important Updates to the - nameargument will recreate the namespace.
- project_id str
- project_id) The unique identifier of the project that contains the namespace.
- region str
- region). The region in which the namespace is created.
- secret_environment_ Mapping[str, str]variables 
- The secret environment variables of the namespace.
- Sequence[str]
- List of tags ["tag1", "tag2", ...] attached to the container namespace
- description String
- The description of the namespace.
- destroyRegistry Boolean
- Destroy registry on deletion
- environmentVariables Map<String>
- The environment variables of the namespace.
- name String
- The unique name of the Containers namespace. - Important Updates to the - nameargument will recreate the namespace.
- projectId String
- project_id) The unique identifier of the project that contains the namespace.
- region String
- region). The region in which the namespace is created.
- secretEnvironment Map<String>Variables 
- The secret environment variables of the namespace.
- List<String>
- List of tags ["tag1", "tag2", ...] attached to the container namespace
Outputs
All input properties are implicitly available as output properties. Additionally, the Namespace resource produces the following output properties:
- Id string
- The provider-assigned unique ID for this managed resource.
- OrganizationId string
- The Organization ID with which the namespace is associated.
- RegistryEndpoint string
- The registry endpoint of the namespace.
- RegistryNamespace stringId 
- The registry namespace ID of the namespace.
- Id string
- The provider-assigned unique ID for this managed resource.
- OrganizationId string
- The Organization ID with which the namespace is associated.
- RegistryEndpoint string
- The registry endpoint of the namespace.
- RegistryNamespace stringId 
- The registry namespace ID of the namespace.
- id String
- The provider-assigned unique ID for this managed resource.
- organizationId String
- The Organization ID with which the namespace is associated.
- registryEndpoint String
- The registry endpoint of the namespace.
- registryNamespace StringId 
- The registry namespace ID of the namespace.
- id string
- The provider-assigned unique ID for this managed resource.
- organizationId string
- The Organization ID with which the namespace is associated.
- registryEndpoint string
- The registry endpoint of the namespace.
- registryNamespace stringId 
- The registry namespace ID of the namespace.
- id str
- The provider-assigned unique ID for this managed resource.
- organization_id str
- The Organization ID with which the namespace is associated.
- registry_endpoint str
- The registry endpoint of the namespace.
- registry_namespace_ strid 
- The registry namespace ID of the namespace.
- id String
- The provider-assigned unique ID for this managed resource.
- organizationId String
- The Organization ID with which the namespace is associated.
- registryEndpoint String
- The registry endpoint of the namespace.
- registryNamespace StringId 
- The registry namespace ID of the namespace.
Look up Existing Namespace Resource
Get an existing Namespace resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.
public static get(name: string, id: Input<ID>, state?: NamespaceState, opts?: CustomResourceOptions): Namespace@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        description: Optional[str] = None,
        destroy_registry: Optional[bool] = None,
        environment_variables: Optional[Mapping[str, str]] = None,
        name: Optional[str] = None,
        organization_id: Optional[str] = None,
        project_id: Optional[str] = None,
        region: Optional[str] = None,
        registry_endpoint: Optional[str] = None,
        registry_namespace_id: Optional[str] = None,
        secret_environment_variables: Optional[Mapping[str, str]] = None,
        tags: Optional[Sequence[str]] = None) -> Namespacefunc GetNamespace(ctx *Context, name string, id IDInput, state *NamespaceState, opts ...ResourceOption) (*Namespace, error)public static Namespace Get(string name, Input<string> id, NamespaceState? state, CustomResourceOptions? opts = null)public static Namespace get(String name, Output<String> id, NamespaceState state, CustomResourceOptions options)resources:  _:    type: scaleway:containers:Namespace    get:      id: ${id}- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- resource_name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- Description string
- The description of the namespace.
- DestroyRegistry bool
- Destroy registry on deletion
- EnvironmentVariables Dictionary<string, string>
- The environment variables of the namespace.
- Name string
- The unique name of the Containers namespace. - Important Updates to the - nameargument will recreate the namespace.
- OrganizationId string
- The Organization ID with which the namespace is associated.
- ProjectId string
- project_id) The unique identifier of the project that contains the namespace.
- Region string
- region). The region in which the namespace is created.
- RegistryEndpoint string
- The registry endpoint of the namespace.
- RegistryNamespace stringId 
- The registry namespace ID of the namespace.
- SecretEnvironment Dictionary<string, string>Variables 
- The secret environment variables of the namespace.
- List<string>
- List of tags ["tag1", "tag2", ...] attached to the container namespace
- Description string
- The description of the namespace.
- DestroyRegistry bool
- Destroy registry on deletion
- EnvironmentVariables map[string]string
- The environment variables of the namespace.
- Name string
- The unique name of the Containers namespace. - Important Updates to the - nameargument will recreate the namespace.
- OrganizationId string
- The Organization ID with which the namespace is associated.
- ProjectId string
- project_id) The unique identifier of the project that contains the namespace.
- Region string
- region). The region in which the namespace is created.
- RegistryEndpoint string
- The registry endpoint of the namespace.
- RegistryNamespace stringId 
- The registry namespace ID of the namespace.
- SecretEnvironment map[string]stringVariables 
- The secret environment variables of the namespace.
- []string
- List of tags ["tag1", "tag2", ...] attached to the container namespace
- description String
- The description of the namespace.
- destroyRegistry Boolean
- Destroy registry on deletion
- environmentVariables Map<String,String>
- The environment variables of the namespace.
- name String
- The unique name of the Containers namespace. - Important Updates to the - nameargument will recreate the namespace.
- organizationId String
- The Organization ID with which the namespace is associated.
- projectId String
- project_id) The unique identifier of the project that contains the namespace.
- region String
- region). The region in which the namespace is created.
- registryEndpoint String
- The registry endpoint of the namespace.
- registryNamespace StringId 
- The registry namespace ID of the namespace.
- secretEnvironment Map<String,String>Variables 
- The secret environment variables of the namespace.
- List<String>
- List of tags ["tag1", "tag2", ...] attached to the container namespace
- description string
- The description of the namespace.
- destroyRegistry boolean
- Destroy registry on deletion
- environmentVariables {[key: string]: string}
- The environment variables of the namespace.
- name string
- The unique name of the Containers namespace. - Important Updates to the - nameargument will recreate the namespace.
- organizationId string
- The Organization ID with which the namespace is associated.
- projectId string
- project_id) The unique identifier of the project that contains the namespace.
- region string
- region). The region in which the namespace is created.
- registryEndpoint string
- The registry endpoint of the namespace.
- registryNamespace stringId 
- The registry namespace ID of the namespace.
- secretEnvironment {[key: string]: string}Variables 
- The secret environment variables of the namespace.
- string[]
- List of tags ["tag1", "tag2", ...] attached to the container namespace
- description str
- The description of the namespace.
- destroy_registry bool
- Destroy registry on deletion
- environment_variables Mapping[str, str]
- The environment variables of the namespace.
- name str
- The unique name of the Containers namespace. - Important Updates to the - nameargument will recreate the namespace.
- organization_id str
- The Organization ID with which the namespace is associated.
- project_id str
- project_id) The unique identifier of the project that contains the namespace.
- region str
- region). The region in which the namespace is created.
- registry_endpoint str
- The registry endpoint of the namespace.
- registry_namespace_ strid 
- The registry namespace ID of the namespace.
- secret_environment_ Mapping[str, str]variables 
- The secret environment variables of the namespace.
- Sequence[str]
- List of tags ["tag1", "tag2", ...] attached to the container namespace
- description String
- The description of the namespace.
- destroyRegistry Boolean
- Destroy registry on deletion
- environmentVariables Map<String>
- The environment variables of the namespace.
- name String
- The unique name of the Containers namespace. - Important Updates to the - nameargument will recreate the namespace.
- organizationId String
- The Organization ID with which the namespace is associated.
- projectId String
- project_id) The unique identifier of the project that contains the namespace.
- region String
- region). The region in which the namespace is created.
- registryEndpoint String
- The registry endpoint of the namespace.
- registryNamespace StringId 
- The registry namespace ID of the namespace.
- secretEnvironment Map<String>Variables 
- The secret environment variables of the namespace.
- List<String>
- List of tags ["tag1", "tag2", ...] attached to the container namespace
Import
Containers namespaces can be imported using {region}/{id}, as shown below:
bash
$ pulumi import scaleway:containers/namespace:Namespace main fr-par/11111111-1111-1111-1111-111111111111
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- scaleway pulumiverse/pulumi-scaleway
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the scalewayTerraform Provider.
