Namespace

class Namespace : KotlinCustomResource

Provides a Schedulerx Namespace resource. For information about Schedulerx Namespace and how to use it, see What is Namespace.

NOTE: Available in v1.173.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.schedulerx.Namespace;
import com.pulumi.alicloud.schedulerx.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()
.namespaceName("example_value")
.build());
}
}

Import

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

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

Properties

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

The description of the resource.

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

The name of the resource.

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