ProjectArgs

data class ProjectArgs(val comment: Output<String>? = null, val defaultQuota: Output<String>? = null, val ipWhiteList: Output<ProjectIpWhiteListArgs>? = null, val productType: Output<String>? = null, val projectName: Output<String>? = null, val properties: Output<ProjectPropertiesArgs>? = null, val securityProperties: Output<ProjectSecurityPropertiesArgs>? = null) : ConvertibleToJava<ProjectArgs>

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

NOTE: Available in 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) {
var default_ = new Project("default", ProjectArgs.builder()
.comment("test_for_terraform")
.defaultQuota("默认后付费Quota")
.productType("PAYASYOUGO")
.projectName("test_create_spec_one")
.build());
}
}

Constructors

Link copied to clipboard
fun ProjectArgs(comment: Output<String>? = null, defaultQuota: Output<String>? = null, ipWhiteList: Output<ProjectIpWhiteListArgs>? = null, productType: Output<String>? = null, projectName: Output<String>? = null, properties: Output<ProjectPropertiesArgs>? = null, securityProperties: Output<ProjectSecurityPropertiesArgs>? = null)

Functions

Link copied to clipboard
open override fun toJava(): ProjectArgs

Properties

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

Comments of project

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

Default Computing Resource Group

Link copied to clipboard
val ipWhiteList: Output<ProjectIpWhiteListArgs>? = null

IP whitelistSee the following Block IpWhiteList.

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

Quota payment type, support PayAsYouGo, Subscription, Dev.

Link copied to clipboard
val projectName: Output<String>? = null

The name of the project

Link copied to clipboard
val properties: Output<ProjectPropertiesArgs>? = null

Project base attributesSee the following Block Properties.

Link copied to clipboard

Security-related attributesSee the following Block SecurityProperties.