alicloud.cms.Namespace
Explore with Pulumi AI
Provides a Cloud Monitor Service Namespace resource.
For information about Cloud Monitor Service Namespace and how to use it, see What is Namespace.
NOTE: Available since v1.171.0.
Example Usage
Basic Usage
import * as pulumi from "@pulumi/pulumi";
import * as alicloud from "@pulumi/alicloud";
const example = new alicloud.cms.Namespace("example", {
namespace: "tf-example",
specification: "cms.s1.large",
});
import pulumi
import pulumi_alicloud as alicloud
example = alicloud.cms.Namespace("example",
namespace="tf-example",
specification="cms.s1.large")
package main
import (
"github.com/pulumi/pulumi-alicloud/sdk/v3/go/alicloud/cms"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := cms.NewNamespace(ctx, "example", &cms.NamespaceArgs{
Namespace: pulumi.String("tf-example"),
Specification: pulumi.String("cms.s1.large"),
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AliCloud = Pulumi.AliCloud;
return await Deployment.RunAsync(() =>
{
var example = new AliCloud.Cms.Namespace("example", new()
{
NamespaceName = "tf-example",
Specification = "cms.s1.large",
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.alicloud.cms.Namespace;
import com.pulumi.alicloud.cms.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()
.namespace("tf-example")
.specification("cms.s1.large")
.build());
}
}
resources:
example:
type: alicloud:cms:Namespace
properties:
namespace: tf-example
specification: cms.s1.large
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: Optional[str] = None,
description: Optional[str] = None,
specification: 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:cms: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 AliCloud.Cms.Namespace("namespaceResource", new()
{
NamespaceName = "string",
Description = "string",
Specification = "string",
});
example, err := cms.NewNamespace(ctx, "namespaceResource", &cms.NamespaceArgs{
Namespace: pulumi.String("string"),
Description: pulumi.String("string"),
Specification: pulumi.String("string"),
})
var namespaceResource = new Namespace("namespaceResource", NamespaceArgs.builder()
.namespace("string")
.description("string")
.specification("string")
.build());
namespace_resource = alicloud.cms.Namespace("namespaceResource",
namespace="string",
description="string",
specification="string")
const namespaceResource = new alicloud.cms.Namespace("namespaceResource", {
namespace: "string",
description: "string",
specification: "string",
});
type: alicloud:cms:Namespace
properties:
description: string
namespace: string
specification: 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
The Namespace resource accepts the following input properties:
- Namespace
Name string - The name of the namespace. The name can contain lowercase letters, digits, and hyphens (-).
- Description string
- The description of the namespace.
- Specification string
- The data retention period. Default value:
cms.s1.3xlarge
. Valid values:cms.s1.large
: Data storage duration is 15 days.cms.s1.xlarge
: Data storage duration is 32 days.cms.s1.2xlarge
: Data storage duration 63 days.cms.s1.3xlarge
: Data storage duration 93 days.cms.s1.6xlarge
: Data storage duration 185 days.cms.s1.12xlarge
: Data storage duration 376 days.
- Namespace string
- The name of the namespace. The name can contain lowercase letters, digits, and hyphens (-).
- Description string
- The description of the namespace.
- Specification string
- The data retention period. Default value:
cms.s1.3xlarge
. Valid values:cms.s1.large
: Data storage duration is 15 days.cms.s1.xlarge
: Data storage duration is 32 days.cms.s1.2xlarge
: Data storage duration 63 days.cms.s1.3xlarge
: Data storage duration 93 days.cms.s1.6xlarge
: Data storage duration 185 days.cms.s1.12xlarge
: Data storage duration 376 days.
- namespace String
- The name of the namespace. The name can contain lowercase letters, digits, and hyphens (-).
- description String
- The description of the namespace.
- specification String
- The data retention period. Default value:
cms.s1.3xlarge
. Valid values:cms.s1.large
: Data storage duration is 15 days.cms.s1.xlarge
: Data storage duration is 32 days.cms.s1.2xlarge
: Data storage duration 63 days.cms.s1.3xlarge
: Data storage duration 93 days.cms.s1.6xlarge
: Data storage duration 185 days.cms.s1.12xlarge
: Data storage duration 376 days.
- namespace string
- The name of the namespace. The name can contain lowercase letters, digits, and hyphens (-).
- description string
- The description of the namespace.
- specification string
- The data retention period. Default value:
cms.s1.3xlarge
. Valid values:cms.s1.large
: Data storage duration is 15 days.cms.s1.xlarge
: Data storage duration is 32 days.cms.s1.2xlarge
: Data storage duration 63 days.cms.s1.3xlarge
: Data storage duration 93 days.cms.s1.6xlarge
: Data storage duration 185 days.cms.s1.12xlarge
: Data storage duration 376 days.
- namespace str
- The name of the namespace. The name can contain lowercase letters, digits, and hyphens (-).
- description str
- The description of the namespace.
- specification str
- The data retention period. Default value:
cms.s1.3xlarge
. Valid values:cms.s1.large
: Data storage duration is 15 days.cms.s1.xlarge
: Data storage duration is 32 days.cms.s1.2xlarge
: Data storage duration 63 days.cms.s1.3xlarge
: Data storage duration 93 days.cms.s1.6xlarge
: Data storage duration 185 days.cms.s1.12xlarge
: Data storage duration 376 days.
- namespace String
- The name of the namespace. The name can contain lowercase letters, digits, and hyphens (-).
- description String
- The description of the namespace.
- specification String
- The data retention period. Default value:
cms.s1.3xlarge
. Valid values:cms.s1.large
: Data storage duration is 15 days.cms.s1.xlarge
: Data storage duration is 32 days.cms.s1.2xlarge
: Data storage duration 63 days.cms.s1.3xlarge
: Data storage duration 93 days.cms.s1.6xlarge
: Data storage duration 185 days.cms.s1.12xlarge
: Data storage duration 376 days.
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,
description: Optional[str] = None,
namespace: Optional[str] = None,
specification: 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.
- Description string
- The description of the namespace.
- Namespace
Name string - The name of the namespace. The name can contain lowercase letters, digits, and hyphens (-).
- Specification string
- The data retention period. Default value:
cms.s1.3xlarge
. Valid values:cms.s1.large
: Data storage duration is 15 days.cms.s1.xlarge
: Data storage duration is 32 days.cms.s1.2xlarge
: Data storage duration 63 days.cms.s1.3xlarge
: Data storage duration 93 days.cms.s1.6xlarge
: Data storage duration 185 days.cms.s1.12xlarge
: Data storage duration 376 days.
- Description string
- The description of the namespace.
- Namespace string
- The name of the namespace. The name can contain lowercase letters, digits, and hyphens (-).
- Specification string
- The data retention period. Default value:
cms.s1.3xlarge
. Valid values:cms.s1.large
: Data storage duration is 15 days.cms.s1.xlarge
: Data storage duration is 32 days.cms.s1.2xlarge
: Data storage duration 63 days.cms.s1.3xlarge
: Data storage duration 93 days.cms.s1.6xlarge
: Data storage duration 185 days.cms.s1.12xlarge
: Data storage duration 376 days.
- description String
- The description of the namespace.
- namespace String
- The name of the namespace. The name can contain lowercase letters, digits, and hyphens (-).
- specification String
- The data retention period. Default value:
cms.s1.3xlarge
. Valid values:cms.s1.large
: Data storage duration is 15 days.cms.s1.xlarge
: Data storage duration is 32 days.cms.s1.2xlarge
: Data storage duration 63 days.cms.s1.3xlarge
: Data storage duration 93 days.cms.s1.6xlarge
: Data storage duration 185 days.cms.s1.12xlarge
: Data storage duration 376 days.
- description string
- The description of the namespace.
- namespace string
- The name of the namespace. The name can contain lowercase letters, digits, and hyphens (-).
- specification string
- The data retention period. Default value:
cms.s1.3xlarge
. Valid values:cms.s1.large
: Data storage duration is 15 days.cms.s1.xlarge
: Data storage duration is 32 days.cms.s1.2xlarge
: Data storage duration 63 days.cms.s1.3xlarge
: Data storage duration 93 days.cms.s1.6xlarge
: Data storage duration 185 days.cms.s1.12xlarge
: Data storage duration 376 days.
- description str
- The description of the namespace.
- namespace str
- The name of the namespace. The name can contain lowercase letters, digits, and hyphens (-).
- specification str
- The data retention period. Default value:
cms.s1.3xlarge
. Valid values:cms.s1.large
: Data storage duration is 15 days.cms.s1.xlarge
: Data storage duration is 32 days.cms.s1.2xlarge
: Data storage duration 63 days.cms.s1.3xlarge
: Data storage duration 93 days.cms.s1.6xlarge
: Data storage duration 185 days.cms.s1.12xlarge
: Data storage duration 376 days.
- description String
- The description of the namespace.
- namespace String
- The name of the namespace. The name can contain lowercase letters, digits, and hyphens (-).
- specification String
- The data retention period. Default value:
cms.s1.3xlarge
. Valid values:cms.s1.large
: Data storage duration is 15 days.cms.s1.xlarge
: Data storage duration is 32 days.cms.s1.2xlarge
: Data storage duration 63 days.cms.s1.3xlarge
: Data storage duration 93 days.cms.s1.6xlarge
: Data storage duration 185 days.cms.s1.12xlarge
: Data storage duration 376 days.
Import
Cloud Monitor Service Namespace can be imported using the id, e.g.
$ pulumi import alicloud:cms/namespace:Namespace example <id>
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.