1. Packages
  2. Alibaba Cloud Provider
  3. API Docs
  4. edas
  5. Namespace
Alibaba Cloud v3.76.0 published on Tuesday, Apr 8, 2025 by Pulumi

alicloud.edas.Namespace

Explore with Pulumi AI

Provides a EDAS Namespace resource.

For information about EDAS Namespace and how to use it, see What is Namespace.

NOTE: Available since v1.173.0.

Example Usage

Basic Usage

import * as pulumi from "@pulumi/pulumi";
import * as alicloud from "@pulumi/alicloud";

const config = new pulumi.Config();
const region = config.get("region") || "cn-hangzhou";
const name = config.get("name") || "tfexample";
const _default = new alicloud.edas.Namespace("default", {
    debugEnable: false,
    description: name,
    namespaceLogicalId: `${region}:${name}`,
    namespaceName: name,
});
Copy
import pulumi
import pulumi_alicloud as alicloud

config = pulumi.Config()
region = config.get("region")
if region is None:
    region = "cn-hangzhou"
name = config.get("name")
if name is None:
    name = "tfexample"
default = alicloud.edas.Namespace("default",
    debug_enable=False,
    description=name,
    namespace_logical_id=f"{region}:{name}",
    namespace_name=name)
Copy
package main

import (
	"fmt"

	"github.com/pulumi/pulumi-alicloud/sdk/v3/go/alicloud/edas"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi/config"
)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		cfg := config.New(ctx, "")
		region := "cn-hangzhou"
		if param := cfg.Get("region"); param != "" {
			region = param
		}
		name := "tfexample"
		if param := cfg.Get("name"); param != "" {
			name = param
		}
		_, err := edas.NewNamespace(ctx, "default", &edas.NamespaceArgs{
			DebugEnable:        pulumi.Bool(false),
			Description:        pulumi.String(name),
			NamespaceLogicalId: pulumi.Sprintf("%v:%v", region, name),
			NamespaceName:      pulumi.String(name),
		})
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AliCloud = Pulumi.AliCloud;

return await Deployment.RunAsync(() => 
{
    var config = new Config();
    var region = config.Get("region") ?? "cn-hangzhou";
    var name = config.Get("name") ?? "tfexample";
    var @default = new AliCloud.Edas.Namespace("default", new()
    {
        DebugEnable = false,
        Description = name,
        NamespaceLogicalId = $"{region}:{name}",
        NamespaceName = name,
    });

});
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.alicloud.edas.Namespace;
import com.pulumi.alicloud.edas.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) {
        final var config = ctx.config();
        final var region = config.get("region").orElse("cn-hangzhou");
        final var name = config.get("name").orElse("tfexample");
        var default_ = new Namespace("default", NamespaceArgs.builder()
            .debugEnable(false)
            .description(name)
            .namespaceLogicalId(String.format("%s:%s", region,name))
            .namespaceName(name)
            .build());

    }
}
Copy
configuration:
  region:
    type: string
    default: cn-hangzhou
  name:
    type: string
    default: tfexample
resources:
  default:
    type: alicloud:edas:Namespace
    properties:
      debugEnable: false
      description: ${name}
      namespaceLogicalId: ${region}:${name}
      namespaceName: ${name}
Copy

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: NamespaceArgs,
              opts: Optional[ResourceOptions] = None)

@overload
def Namespace(resource_name: str,
              opts: Optional[ResourceOptions] = None,
              namespace_logical_id: Optional[str] = None,
              namespace_name: Optional[str] = None,
              debug_enable: Optional[bool] = None,
              description: Optional[str] = None)
func NewNamespace(ctx *Context, name string, args NamespaceArgs, opts ...ResourceOption) (*Namespace, error)
public Namespace(string name, NamespaceArgs args, CustomResourceOptions? opts = null)
public Namespace(String name, NamespaceArgs args)
public Namespace(String name, NamespaceArgs args, CustomResourceOptions options)
type: alicloud:edas:Namespace
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

Parameters

name This property is required. string
The unique name of the resource.
args This property is required. NamespaceArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name This property is required. str
The unique name of the resource.
args This property is required. 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 This property is required. string
The unique name of the resource.
args This property is required. NamespaceArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name This property is required. string
The unique name of the resource.
args This property is required. NamespaceArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name This property is required. String
The unique name of the resource.
args This property is required. 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 examplenamespaceResourceResourceFromEdasnamespace = new AliCloud.Edas.Namespace("examplenamespaceResourceResourceFromEdasnamespace", new()
{
    NamespaceLogicalId = "string",
    NamespaceName = "string",
    DebugEnable = false,
    Description = "string",
});
Copy
example, err := edas.NewNamespace(ctx, "examplenamespaceResourceResourceFromEdasnamespace", &edas.NamespaceArgs{
	NamespaceLogicalId: pulumi.String("string"),
	NamespaceName:      pulumi.String("string"),
	DebugEnable:        pulumi.Bool(false),
	Description:        pulumi.String("string"),
})
Copy
var examplenamespaceResourceResourceFromEdasnamespace = new Namespace("examplenamespaceResourceResourceFromEdasnamespace", NamespaceArgs.builder()
    .namespaceLogicalId("string")
    .namespaceName("string")
    .debugEnable(false)
    .description("string")
    .build());
Copy
examplenamespace_resource_resource_from_edasnamespace = alicloud.edas.Namespace("examplenamespaceResourceResourceFromEdasnamespace",
    namespace_logical_id="string",
    namespace_name="string",
    debug_enable=False,
    description="string")
Copy
const examplenamespaceResourceResourceFromEdasnamespace = new alicloud.edas.Namespace("examplenamespaceResourceResourceFromEdasnamespace", {
    namespaceLogicalId: "string",
    namespaceName: "string",
    debugEnable: false,
    description: "string",
});
Copy
type: alicloud:edas:Namespace
properties:
    debugEnable: false
    description: string
    namespaceLogicalId: string
    namespaceName: string
Copy

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:

NamespaceLogicalId
This property is required.
Changes to this property will trigger replacement.
string
The ID of the namespace.

  • The ID of a custom namespace is in the region ID:namespace identifier format. An example is cn-beijing:tdy218.
  • The ID of the default namespace is in the region ID format. An example is cn-beijing.
NamespaceName This property is required. string
The name of the namespace, The name can be up to 63 characters in length.
DebugEnable bool
Specifies whether to enable remote debugging.
Description string
The description of the namespace, The description can be up to 128 characters in length.
NamespaceLogicalId
This property is required.
Changes to this property will trigger replacement.
string
The ID of the namespace.

  • The ID of a custom namespace is in the region ID:namespace identifier format. An example is cn-beijing:tdy218.
  • The ID of the default namespace is in the region ID format. An example is cn-beijing.
NamespaceName This property is required. string
The name of the namespace, The name can be up to 63 characters in length.
DebugEnable bool
Specifies whether to enable remote debugging.
Description string
The description of the namespace, The description can be up to 128 characters in length.
namespaceLogicalId
This property is required.
Changes to this property will trigger replacement.
String
The ID of the namespace.

  • The ID of a custom namespace is in the region ID:namespace identifier format. An example is cn-beijing:tdy218.
  • The ID of the default namespace is in the region ID format. An example is cn-beijing.
namespaceName This property is required. String
The name of the namespace, The name can be up to 63 characters in length.
debugEnable Boolean
Specifies whether to enable remote debugging.
description String
The description of the namespace, The description can be up to 128 characters in length.
namespaceLogicalId
This property is required.
Changes to this property will trigger replacement.
string
The ID of the namespace.

  • The ID of a custom namespace is in the region ID:namespace identifier format. An example is cn-beijing:tdy218.
  • The ID of the default namespace is in the region ID format. An example is cn-beijing.
namespaceName This property is required. string
The name of the namespace, The name can be up to 63 characters in length.
debugEnable boolean
Specifies whether to enable remote debugging.
description string
The description of the namespace, The description can be up to 128 characters in length.
namespace_logical_id
This property is required.
Changes to this property will trigger replacement.
str
The ID of the namespace.

  • The ID of a custom namespace is in the region ID:namespace identifier format. An example is cn-beijing:tdy218.
  • The ID of the default namespace is in the region ID format. An example is cn-beijing.
namespace_name This property is required. str
The name of the namespace, The name can be up to 63 characters in length.
debug_enable bool
Specifies whether to enable remote debugging.
description str
The description of the namespace, The description can be up to 128 characters in length.
namespaceLogicalId
This property is required.
Changes to this property will trigger replacement.
String
The ID of the namespace.

  • The ID of a custom namespace is in the region ID:namespace identifier format. An example is cn-beijing:tdy218.
  • The ID of the default namespace is in the region ID format. An example is cn-beijing.
namespaceName This property is required. String
The name of the namespace, The name can be up to 63 characters in length.
debugEnable Boolean
Specifies whether to enable remote debugging.
description String
The description of the namespace, The description can be up to 128 characters in length.

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.
Id string
The provider-assigned unique ID for this managed resource.
id String
The provider-assigned unique ID for this managed resource.
id string
The provider-assigned unique ID for this managed resource.
id str
The provider-assigned unique ID for this managed resource.
id String
The provider-assigned unique ID for this managed resource.

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,
        debug_enable: Optional[bool] = None,
        description: Optional[str] = None,
        namespace_logical_id: Optional[str] = None,
        namespace_name: Optional[str] = None) -> Namespace
func 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: alicloud:edas:Namespace    get:      id: ${id}
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
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.
The following state arguments are supported:
DebugEnable bool
Specifies whether to enable remote debugging.
Description string
The description of the namespace, The description can be up to 128 characters in length.
NamespaceLogicalId Changes to this property will trigger replacement. string
The ID of the namespace.

  • The ID of a custom namespace is in the region ID:namespace identifier format. An example is cn-beijing:tdy218.
  • The ID of the default namespace is in the region ID format. An example is cn-beijing.
NamespaceName string
The name of the namespace, The name can be up to 63 characters in length.
DebugEnable bool
Specifies whether to enable remote debugging.
Description string
The description of the namespace, The description can be up to 128 characters in length.
NamespaceLogicalId Changes to this property will trigger replacement. string
The ID of the namespace.

  • The ID of a custom namespace is in the region ID:namespace identifier format. An example is cn-beijing:tdy218.
  • The ID of the default namespace is in the region ID format. An example is cn-beijing.
NamespaceName string
The name of the namespace, The name can be up to 63 characters in length.
debugEnable Boolean
Specifies whether to enable remote debugging.
description String
The description of the namespace, The description can be up to 128 characters in length.
namespaceLogicalId Changes to this property will trigger replacement. String
The ID of the namespace.

  • The ID of a custom namespace is in the region ID:namespace identifier format. An example is cn-beijing:tdy218.
  • The ID of the default namespace is in the region ID format. An example is cn-beijing.
namespaceName String
The name of the namespace, The name can be up to 63 characters in length.
debugEnable boolean
Specifies whether to enable remote debugging.
description string
The description of the namespace, The description can be up to 128 characters in length.
namespaceLogicalId Changes to this property will trigger replacement. string
The ID of the namespace.

  • The ID of a custom namespace is in the region ID:namespace identifier format. An example is cn-beijing:tdy218.
  • The ID of the default namespace is in the region ID format. An example is cn-beijing.
namespaceName string
The name of the namespace, The name can be up to 63 characters in length.
debug_enable bool
Specifies whether to enable remote debugging.
description str
The description of the namespace, The description can be up to 128 characters in length.
namespace_logical_id Changes to this property will trigger replacement. str
The ID of the namespace.

  • The ID of a custom namespace is in the region ID:namespace identifier format. An example is cn-beijing:tdy218.
  • The ID of the default namespace is in the region ID format. An example is cn-beijing.
namespace_name str
The name of the namespace, The name can be up to 63 characters in length.
debugEnable Boolean
Specifies whether to enable remote debugging.
description String
The description of the namespace, The description can be up to 128 characters in length.
namespaceLogicalId Changes to this property will trigger replacement. String
The ID of the namespace.

  • The ID of a custom namespace is in the region ID:namespace identifier format. An example is cn-beijing:tdy218.
  • The ID of the default namespace is in the region ID format. An example is cn-beijing.
namespaceName String
The name of the namespace, The name can be up to 63 characters in length.

Import

EDAS Namespace can be imported using the id, e.g.

$ pulumi import alicloud:edas/namespace:Namespace example <id>
Copy

To learn more about importing existing cloud resources, see Importing resources.

Package Details

Repository
Alibaba Cloud pulumi/pulumi-alicloud
License
Apache-2.0
Notes
This Pulumi package is based on the alicloud Terraform Provider.