Namespace

class Namespace : KotlinCustomResource

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

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());
}
}

Import

Cloud Monitor Service Namespace can be imported using the id, e.g.

$ pulumi import alicloud:cms/namespace:Namespace example <namespace>

Properties

Link copied to clipboard
val description: Output<String>?

Description of indicator warehouse.

Link copied to clipboard
val id: Output<String>
Link copied to clipboard
val namespace: Output<String>

Indicator warehouse name. The namespace can contain lowercase letters, digits, and hyphens (-).

Link copied to clipboard
val pulumiChildResources: Set<KotlinResource>
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
val specification: Output<String>

Data storage duration. Valid values: cms.s1.12xlarge, cms.s1.2xlarge, cms.s1.3xlarge, cms.s1.6xlarge, cms.s1.large, cms.s1.xlarge.

Link copied to clipboard
val urn: Output<String>