Project

class Project : KotlinCustomResource

Provides a Max Compute Project resource. For information about Max Compute Project and how to use it, see What is Project.

NOTE: Available since v1.77.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.maxcompute.Project;
import com.pulumi.alicloud.maxcompute.ProjectArgs;
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 name = config.get("name").orElse("tf_example");
var default_ = new Project("default", ProjectArgs.builder()
.defaultQuota("默认后付费Quota")
.projectName(name)
.comment(name)
.productType("PayAsYouGo")
.build());
}
}

Properties

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

Comments of project

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

Default Computing Resource Group

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

IP whitelist. See ip_white_list below.

Link copied to clipboard
val owner: Output<String>

Project owner

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

Quota payment type, support PayAsYouGo, Subscription, Dev.

Link copied to clipboard
val projectName: Output<String>

The name of the project

Link copied to clipboard

Project base attributes. See properties below.

Link copied to clipboard
val pulumiChildResources: Set<KotlinResource>
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard

Security-related attributes. See security_properties below.

Link copied to clipboard
val status: Output<String>

The status of the resource

Link copied to clipboard
val type: Output<String>

Life cycle type.

Link copied to clipboard
val urn: Output<String>