QuotaApplication

Provides a Quotas Quota Application resource. For information about Quotas Quota Application and how to use it, see What is Quota Application.

NOTE: Available in v1.117.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.quotas.QuotaApplication;
import com.pulumi.alicloud.quotas.QuotaApplicationArgs;
import com.pulumi.alicloud.quotas.inputs.QuotaApplicationDimensionArgs;
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 QuotaApplication("example", QuotaApplicationArgs.builder()
.desireValue("100")
.dimensions(QuotaApplicationDimensionArgs.builder()
.key("regionId")
.value("cn-hangzhou")
.build())
.noticeType("0")
.productCode("ess")
.quotaActionCode("q_db_instance")
.reason("For Terraform Test")
.build());
}
}

Import

Quotas Application Info can be imported using the id, e.g.

$ pulumi import alicloud:quotas/quotaApplication:QuotaApplication example <id>

Properties

Link copied to clipboard
val approveValue: Output<String>

The approve value of the quota application.

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

The audit mode. Valid values: Async, Sync. Default to: Async.

Link copied to clipboard
val auditReason: Output<String>

The audit reason.

Link copied to clipboard
val desireValue: Output<Double>

The desire value of the quota application.

Link copied to clipboard

The quota dimensions.

Link copied to clipboard
val effectiveTime: Output<String>

The effective time of the quota application.

Link copied to clipboard
val expireTime: Output<String>

The expire time of the quota application.

Link copied to clipboard
val id: Output<String>
Link copied to clipboard
val noticeType: Output<Int>?

The notice type. Valid values: 0, 1, 2, 3.

Link copied to clipboard
val productCode: Output<String>

The product code.

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

The ID of quota action.

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

The quota category. Valid values: CommonQuota, FlowControl.

Link copied to clipboard

The description of the quota application.

Link copied to clipboard
val quotaName: Output<String>

The name of the quota application.

Link copied to clipboard
val quotaUnit: Output<String>

The unit of the quota application.

Link copied to clipboard
val reason: Output<String>

The reason of the quota application.

Link copied to clipboard
val status: Output<String>

The status of the quota application.

Link copied to clipboard
val urn: Output<String>