alicloud.sae.Namespace
Provides a Serverless App Engine (SAE) Namespace resource.
For information about SAE Namespace and how to use it, see What is Namespace.
NOTE: Available in v1.129.0+.
Example Usage
Basic Usage
using System.Collections.Generic;
using Pulumi;
using AliCloud = Pulumi.AliCloud;
return await Deployment.RunAsync(() =>
{
var example = new AliCloud.Sae.Namespace("example", new()
{
NamespaceDescription = "your_description",
NamespaceId = "cn-hangzhou:yourname",
NamespaceName = "example_value",
});
});
package main
import (
"github.com/pulumi/pulumi-alicloud/sdk/v3/go/alicloud/sae"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := sae.NewNamespace(ctx, "example", &sae.NamespaceArgs{
NamespaceDescription: pulumi.String("your_description"),
NamespaceId: pulumi.String("cn-hangzhou:yourname"),
NamespaceName: pulumi.String("example_value"),
})
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.alicloud.sae.Namespace;
import com.pulumi.alicloud.sae.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()
.namespaceDescription("your_description")
.namespaceId("cn-hangzhou:yourname")
.namespaceName("example_value")
.build());
}
}
import pulumi
import pulumi_alicloud as alicloud
example = alicloud.sae.Namespace("example",
namespace_description="your_description",
namespace_id="cn-hangzhou:yourname",
namespace_name="example_value")
import * as pulumi from "@pulumi/pulumi";
import * as alicloud from "@pulumi/alicloud";
const example = new alicloud.sae.Namespace("example", {
namespaceDescription: "your_description",
namespaceId: "cn-hangzhou:yourname",
namespaceName: "example_value",
});
resources:
example:
type: alicloud:sae:Namespace
properties:
namespaceDescription: your_description
namespaceId: cn-hangzhou:yourname
namespaceName: example_value
Create Namespace Resource
new Namespace(name: string, args: NamespaceArgs, opts?: CustomResourceOptions);
@overload
def Namespace(resource_name: str,
opts: Optional[ResourceOptions] = None,
namespace_description: Optional[str] = None,
namespace_id: Optional[str] = None,
namespace_name: Optional[str] = None)
@overload
def Namespace(resource_name: str,
args: NamespaceArgs,
opts: Optional[ResourceOptions] = 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:sae:Namespace
properties: # The arguments to resource properties.
options: # 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.
- 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.
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
The Namespace resource accepts the following input properties:
- Namespace
Id string The Id of Namespace.It can contain 2 to 32 lowercase characters.The value is in format
{RegionId}:{namespace}
- Namespace
Name string The Name of Namespace.
- Namespace
Description string The Description of Namespace.
- Namespace
Id string The Id of Namespace.It can contain 2 to 32 lowercase characters.The value is in format
{RegionId}:{namespace}
- Namespace
Name string The Name of Namespace.
- Namespace
Description string The Description of Namespace.
- namespace
Id String The Id of Namespace.It can contain 2 to 32 lowercase characters.The value is in format
{RegionId}:{namespace}
- namespace
Name String The Name of Namespace.
- namespace
Description String The Description of Namespace.
- namespace
Id string The Id of Namespace.It can contain 2 to 32 lowercase characters.The value is in format
{RegionId}:{namespace}
- namespace
Name string The Name of Namespace.
- namespace
Description string The Description of Namespace.
- namespace_
id str The Id of Namespace.It can contain 2 to 32 lowercase characters.The value is in format
{RegionId}:{namespace}
- namespace_
name str The Name of Namespace.
- namespace_
description str The Description of Namespace.
- namespace
Id String The Id of Namespace.It can contain 2 to 32 lowercase characters.The value is in format
{RegionId}:{namespace}
- namespace
Name String The Name of Namespace.
- namespace
Description String The Description of 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.
- 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,
namespace_description: Optional[str] = None,
namespace_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)
Resource lookup is not supported in YAML
- 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.
- Namespace
Description string The Description of Namespace.
- Namespace
Id string The Id of Namespace.It can contain 2 to 32 lowercase characters.The value is in format
{RegionId}:{namespace}
- Namespace
Name string The Name of Namespace.
- Namespace
Description string The Description of Namespace.
- Namespace
Id string The Id of Namespace.It can contain 2 to 32 lowercase characters.The value is in format
{RegionId}:{namespace}
- Namespace
Name string The Name of Namespace.
- namespace
Description String The Description of Namespace.
- namespace
Id String The Id of Namespace.It can contain 2 to 32 lowercase characters.The value is in format
{RegionId}:{namespace}
- namespace
Name String The Name of Namespace.
- namespace
Description string The Description of Namespace.
- namespace
Id string The Id of Namespace.It can contain 2 to 32 lowercase characters.The value is in format
{RegionId}:{namespace}
- namespace
Name string The Name of Namespace.
- namespace_
description str The Description of Namespace.
- namespace_
id str The Id of Namespace.It can contain 2 to 32 lowercase characters.The value is in format
{RegionId}:{namespace}
- namespace_
name str The Name of Namespace.
- namespace
Description String The Description of Namespace.
- namespace
Id String The Id of Namespace.It can contain 2 to 32 lowercase characters.The value is in format
{RegionId}:{namespace}
- namespace
Name String The Name of Namespace.
Import
Serverless App Engine (SAE) Namespace can be imported using the id, e.g.
$ pulumi import alicloud:sae/namespace:Namespace example <namespace_id>
Package Details
- Repository
- Alibaba Cloud pulumi/pulumi-alicloud
- License
- Apache-2.0
- Notes
This Pulumi package is based on the
alicloud
Terraform Provider.