1. Packages
  2. Alibaba Cloud Provider
  3. API Docs
  4. quotas
  5. TemplateApplications
Alibaba Cloud v3.76.0 published on Tuesday, Apr 8, 2025 by Pulumi

alicloud.quotas.TemplateApplications

Explore with Pulumi AI

Import

Quotas Template Applications can be imported using the id, e.g.

$ pulumi import alicloud:quotas/templateApplications:TemplateApplications example <id>
Copy

Create TemplateApplications Resource

Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

Constructor syntax

new TemplateApplications(name: string, args: TemplateApplicationsArgs, opts?: CustomResourceOptions);
@overload
def TemplateApplications(resource_name: str,
                         args: TemplateApplicationsArgs,
                         opts: Optional[ResourceOptions] = None)

@overload
def TemplateApplications(resource_name: str,
                         opts: Optional[ResourceOptions] = None,
                         aliyun_uids: Optional[Sequence[str]] = None,
                         desire_value: Optional[float] = None,
                         product_code: Optional[str] = None,
                         quota_action_code: Optional[str] = None,
                         quota_category: Optional[str] = None,
                         reason: Optional[str] = None,
                         dimensions: Optional[Sequence[TemplateApplicationsDimensionArgs]] = None,
                         effective_time: Optional[str] = None,
                         env_language: Optional[str] = None,
                         expire_time: Optional[str] = None,
                         notice_type: Optional[int] = None)
func NewTemplateApplications(ctx *Context, name string, args TemplateApplicationsArgs, opts ...ResourceOption) (*TemplateApplications, error)
public TemplateApplications(string name, TemplateApplicationsArgs args, CustomResourceOptions? opts = null)
public TemplateApplications(String name, TemplateApplicationsArgs args)
public TemplateApplications(String name, TemplateApplicationsArgs args, CustomResourceOptions options)
type: alicloud:quotas:TemplateApplications
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

Parameters

name This property is required. string
The unique name of the resource.
args This property is required. TemplateApplicationsArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name This property is required. str
The unique name of the resource.
args This property is required. TemplateApplicationsArgs
The arguments to resource properties.
opts ResourceOptions
Bag of options to control resource's behavior.
ctx Context
Context object for the current deployment.
name This property is required. string
The unique name of the resource.
args This property is required. TemplateApplicationsArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name This property is required. string
The unique name of the resource.
args This property is required. TemplateApplicationsArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name This property is required. String
The unique name of the resource.
args This property is required. TemplateApplicationsArgs
The arguments to resource properties.
options CustomResourceOptions
Bag of options to control resource's behavior.

Constructor example

The following reference example uses placeholder values for all input properties.

var templateApplicationsResource = new AliCloud.Quotas.TemplateApplications("templateApplicationsResource", new()
{
    AliyunUids = new[]
    {
        "string",
    },
    DesireValue = 0,
    ProductCode = "string",
    QuotaActionCode = "string",
    QuotaCategory = "string",
    Reason = "string",
    Dimensions = new[]
    {
        new AliCloud.Quotas.Inputs.TemplateApplicationsDimensionArgs
        {
            Key = "string",
            Value = "string",
        },
    },
    EffectiveTime = "string",
    EnvLanguage = "string",
    ExpireTime = "string",
    NoticeType = 0,
});
Copy
example, err := quotas.NewTemplateApplications(ctx, "templateApplicationsResource", &quotas.TemplateApplicationsArgs{
	AliyunUids: pulumi.StringArray{
		pulumi.String("string"),
	},
	DesireValue:     pulumi.Float64(0),
	ProductCode:     pulumi.String("string"),
	QuotaActionCode: pulumi.String("string"),
	QuotaCategory:   pulumi.String("string"),
	Reason:          pulumi.String("string"),
	Dimensions: quotas.TemplateApplicationsDimensionArray{
		&quotas.TemplateApplicationsDimensionArgs{
			Key:   pulumi.String("string"),
			Value: pulumi.String("string"),
		},
	},
	EffectiveTime: pulumi.String("string"),
	EnvLanguage:   pulumi.String("string"),
	ExpireTime:    pulumi.String("string"),
	NoticeType:    pulumi.Int(0),
})
Copy
var templateApplicationsResource = new TemplateApplications("templateApplicationsResource", TemplateApplicationsArgs.builder()
    .aliyunUids("string")
    .desireValue(0)
    .productCode("string")
    .quotaActionCode("string")
    .quotaCategory("string")
    .reason("string")
    .dimensions(TemplateApplicationsDimensionArgs.builder()
        .key("string")
        .value("string")
        .build())
    .effectiveTime("string")
    .envLanguage("string")
    .expireTime("string")
    .noticeType(0)
    .build());
Copy
template_applications_resource = alicloud.quotas.TemplateApplications("templateApplicationsResource",
    aliyun_uids=["string"],
    desire_value=0,
    product_code="string",
    quota_action_code="string",
    quota_category="string",
    reason="string",
    dimensions=[{
        "key": "string",
        "value": "string",
    }],
    effective_time="string",
    env_language="string",
    expire_time="string",
    notice_type=0)
Copy
const templateApplicationsResource = new alicloud.quotas.TemplateApplications("templateApplicationsResource", {
    aliyunUids: ["string"],
    desireValue: 0,
    productCode: "string",
    quotaActionCode: "string",
    quotaCategory: "string",
    reason: "string",
    dimensions: [{
        key: "string",
        value: "string",
    }],
    effectiveTime: "string",
    envLanguage: "string",
    expireTime: "string",
    noticeType: 0,
});
Copy
type: alicloud:quotas:TemplateApplications
properties:
    aliyunUids:
        - string
    desireValue: 0
    dimensions:
        - key: string
          value: string
    effectiveTime: string
    envLanguage: string
    expireTime: string
    noticeType: 0
    productCode: string
    quotaActionCode: string
    quotaCategory: string
    reason: string
Copy

TemplateApplications Resource Properties

To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

Inputs

In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.

The TemplateApplications resource accepts the following input properties:

AliyunUids
This property is required.
Changes to this property will trigger replacement.
List<string>

The list of Alibaba Cloud accounts (primary accounts) of the resource directory members to which the quota is applied.

NOTE: Only 50 members can apply for quota increase in batch at a time. For more information about the members of the resource directory, see Query the list of all members in the resource directory.

DesireValue
This property is required.
Changes to this property will trigger replacement.
double

The value of the quota request.

NOTE: The quota request is approved by the technical support of each cloud service. If you want to increase the chance of passing, please fill in a reasonable application value and detailed application reasons when applying for quota.

ProductCode
This property is required.
Changes to this property will trigger replacement.
string

Cloud service name abbreviation.

NOTE: For more information about cloud services that support quota centers, see Cloud services that support quota centers.

QuotaActionCode
This property is required.
Changes to this property will trigger replacement.
string
The quota ID.
QuotaCategory
This property is required.
Changes to this property will trigger replacement.
string
The quota type. Value:

  • CommonQuota (default): Generic quota.
  • FlowControl:API rate quota.
  • WhiteListLabel: Equity quota.
Reason
This property is required.
Changes to this property will trigger replacement.
string

Reason for quota application.

NOTE: The quota request is approved by the technical support of each cloud service. If you want to increase the chance of passing, please fill in a reasonable application value and detailed application reasons when applying for quota.

Dimensions Changes to this property will trigger replacement. List<Pulumi.AliCloud.Quotas.Inputs.TemplateApplicationsDimension>
Quota dimension. See dimensions below.
EffectiveTime Changes to this property will trigger replacement. string

The UTC time when the quota takes effect. This parameter applies only to the equity quota (WhiteListLabel).

NOTE: If the current account does not select the effective time, the default is the submission time.

EnvLanguage string
The language of the quota application result notification. Value:

  • zh (default): Chinese.
  • en: English.
ExpireTime Changes to this property will trigger replacement. string

The UTC time when the quota expires. This parameter applies only to the equity quota (WhiteListLabel).

NOTE: If No Expiration Time is selected for the current account, the expiration time is 99 years from the effective time of the current quota.

NoticeType int
Whether to send notification of quota application result. Value:

  • 0 (default): No.
  • 3: Yes.
AliyunUids
This property is required.
Changes to this property will trigger replacement.
[]string

The list of Alibaba Cloud accounts (primary accounts) of the resource directory members to which the quota is applied.

NOTE: Only 50 members can apply for quota increase in batch at a time. For more information about the members of the resource directory, see Query the list of all members in the resource directory.

DesireValue
This property is required.
Changes to this property will trigger replacement.
float64

The value of the quota request.

NOTE: The quota request is approved by the technical support of each cloud service. If you want to increase the chance of passing, please fill in a reasonable application value and detailed application reasons when applying for quota.

ProductCode
This property is required.
Changes to this property will trigger replacement.
string

Cloud service name abbreviation.

NOTE: For more information about cloud services that support quota centers, see Cloud services that support quota centers.

QuotaActionCode
This property is required.
Changes to this property will trigger replacement.
string
The quota ID.
QuotaCategory
This property is required.
Changes to this property will trigger replacement.
string
The quota type. Value:

  • CommonQuota (default): Generic quota.
  • FlowControl:API rate quota.
  • WhiteListLabel: Equity quota.
Reason
This property is required.
Changes to this property will trigger replacement.
string

Reason for quota application.

NOTE: The quota request is approved by the technical support of each cloud service. If you want to increase the chance of passing, please fill in a reasonable application value and detailed application reasons when applying for quota.

Dimensions Changes to this property will trigger replacement. []TemplateApplicationsDimensionArgs
Quota dimension. See dimensions below.
EffectiveTime Changes to this property will trigger replacement. string

The UTC time when the quota takes effect. This parameter applies only to the equity quota (WhiteListLabel).

NOTE: If the current account does not select the effective time, the default is the submission time.

EnvLanguage string
The language of the quota application result notification. Value:

  • zh (default): Chinese.
  • en: English.
ExpireTime Changes to this property will trigger replacement. string

The UTC time when the quota expires. This parameter applies only to the equity quota (WhiteListLabel).

NOTE: If No Expiration Time is selected for the current account, the expiration time is 99 years from the effective time of the current quota.

NoticeType int
Whether to send notification of quota application result. Value:

  • 0 (default): No.
  • 3: Yes.
aliyunUids
This property is required.
Changes to this property will trigger replacement.
List<String>

The list of Alibaba Cloud accounts (primary accounts) of the resource directory members to which the quota is applied.

NOTE: Only 50 members can apply for quota increase in batch at a time. For more information about the members of the resource directory, see Query the list of all members in the resource directory.

desireValue
This property is required.
Changes to this property will trigger replacement.
Double

The value of the quota request.

NOTE: The quota request is approved by the technical support of each cloud service. If you want to increase the chance of passing, please fill in a reasonable application value and detailed application reasons when applying for quota.

productCode
This property is required.
Changes to this property will trigger replacement.
String

Cloud service name abbreviation.

NOTE: For more information about cloud services that support quota centers, see Cloud services that support quota centers.

quotaActionCode
This property is required.
Changes to this property will trigger replacement.
String
The quota ID.
quotaCategory
This property is required.
Changes to this property will trigger replacement.
String
The quota type. Value:

  • CommonQuota (default): Generic quota.
  • FlowControl:API rate quota.
  • WhiteListLabel: Equity quota.
reason
This property is required.
Changes to this property will trigger replacement.
String

Reason for quota application.

NOTE: The quota request is approved by the technical support of each cloud service. If you want to increase the chance of passing, please fill in a reasonable application value and detailed application reasons when applying for quota.

dimensions Changes to this property will trigger replacement. List<TemplateApplicationsDimension>
Quota dimension. See dimensions below.
effectiveTime Changes to this property will trigger replacement. String

The UTC time when the quota takes effect. This parameter applies only to the equity quota (WhiteListLabel).

NOTE: If the current account does not select the effective time, the default is the submission time.

envLanguage String
The language of the quota application result notification. Value:

  • zh (default): Chinese.
  • en: English.
expireTime Changes to this property will trigger replacement. String

The UTC time when the quota expires. This parameter applies only to the equity quota (WhiteListLabel).

NOTE: If No Expiration Time is selected for the current account, the expiration time is 99 years from the effective time of the current quota.

noticeType Integer
Whether to send notification of quota application result. Value:

  • 0 (default): No.
  • 3: Yes.
aliyunUids
This property is required.
Changes to this property will trigger replacement.
string[]

The list of Alibaba Cloud accounts (primary accounts) of the resource directory members to which the quota is applied.

NOTE: Only 50 members can apply for quota increase in batch at a time. For more information about the members of the resource directory, see Query the list of all members in the resource directory.

desireValue
This property is required.
Changes to this property will trigger replacement.
number

The value of the quota request.

NOTE: The quota request is approved by the technical support of each cloud service. If you want to increase the chance of passing, please fill in a reasonable application value and detailed application reasons when applying for quota.

productCode
This property is required.
Changes to this property will trigger replacement.
string

Cloud service name abbreviation.

NOTE: For more information about cloud services that support quota centers, see Cloud services that support quota centers.

quotaActionCode
This property is required.
Changes to this property will trigger replacement.
string
The quota ID.
quotaCategory
This property is required.
Changes to this property will trigger replacement.
string
The quota type. Value:

  • CommonQuota (default): Generic quota.
  • FlowControl:API rate quota.
  • WhiteListLabel: Equity quota.
reason
This property is required.
Changes to this property will trigger replacement.
string

Reason for quota application.

NOTE: The quota request is approved by the technical support of each cloud service. If you want to increase the chance of passing, please fill in a reasonable application value and detailed application reasons when applying for quota.

dimensions Changes to this property will trigger replacement. TemplateApplicationsDimension[]
Quota dimension. See dimensions below.
effectiveTime Changes to this property will trigger replacement. string

The UTC time when the quota takes effect. This parameter applies only to the equity quota (WhiteListLabel).

NOTE: If the current account does not select the effective time, the default is the submission time.

envLanguage string
The language of the quota application result notification. Value:

  • zh (default): Chinese.
  • en: English.
expireTime Changes to this property will trigger replacement. string

The UTC time when the quota expires. This parameter applies only to the equity quota (WhiteListLabel).

NOTE: If No Expiration Time is selected for the current account, the expiration time is 99 years from the effective time of the current quota.

noticeType number
Whether to send notification of quota application result. Value:

  • 0 (default): No.
  • 3: Yes.
aliyun_uids
This property is required.
Changes to this property will trigger replacement.
Sequence[str]

The list of Alibaba Cloud accounts (primary accounts) of the resource directory members to which the quota is applied.

NOTE: Only 50 members can apply for quota increase in batch at a time. For more information about the members of the resource directory, see Query the list of all members in the resource directory.

desire_value
This property is required.
Changes to this property will trigger replacement.
float

The value of the quota request.

NOTE: The quota request is approved by the technical support of each cloud service. If you want to increase the chance of passing, please fill in a reasonable application value and detailed application reasons when applying for quota.

product_code
This property is required.
Changes to this property will trigger replacement.
str

Cloud service name abbreviation.

NOTE: For more information about cloud services that support quota centers, see Cloud services that support quota centers.

quota_action_code
This property is required.
Changes to this property will trigger replacement.
str
The quota ID.
quota_category
This property is required.
Changes to this property will trigger replacement.
str
The quota type. Value:

  • CommonQuota (default): Generic quota.
  • FlowControl:API rate quota.
  • WhiteListLabel: Equity quota.
reason
This property is required.
Changes to this property will trigger replacement.
str

Reason for quota application.

NOTE: The quota request is approved by the technical support of each cloud service. If you want to increase the chance of passing, please fill in a reasonable application value and detailed application reasons when applying for quota.

dimensions Changes to this property will trigger replacement. Sequence[TemplateApplicationsDimensionArgs]
Quota dimension. See dimensions below.
effective_time Changes to this property will trigger replacement. str

The UTC time when the quota takes effect. This parameter applies only to the equity quota (WhiteListLabel).

NOTE: If the current account does not select the effective time, the default is the submission time.

env_language str
The language of the quota application result notification. Value:

  • zh (default): Chinese.
  • en: English.
expire_time Changes to this property will trigger replacement. str

The UTC time when the quota expires. This parameter applies only to the equity quota (WhiteListLabel).

NOTE: If No Expiration Time is selected for the current account, the expiration time is 99 years from the effective time of the current quota.

notice_type int
Whether to send notification of quota application result. Value:

  • 0 (default): No.
  • 3: Yes.
aliyunUids
This property is required.
Changes to this property will trigger replacement.
List<String>

The list of Alibaba Cloud accounts (primary accounts) of the resource directory members to which the quota is applied.

NOTE: Only 50 members can apply for quota increase in batch at a time. For more information about the members of the resource directory, see Query the list of all members in the resource directory.

desireValue
This property is required.
Changes to this property will trigger replacement.
Number

The value of the quota request.

NOTE: The quota request is approved by the technical support of each cloud service. If you want to increase the chance of passing, please fill in a reasonable application value and detailed application reasons when applying for quota.

productCode
This property is required.
Changes to this property will trigger replacement.
String

Cloud service name abbreviation.

NOTE: For more information about cloud services that support quota centers, see Cloud services that support quota centers.

quotaActionCode
This property is required.
Changes to this property will trigger replacement.
String
The quota ID.
quotaCategory
This property is required.
Changes to this property will trigger replacement.
String
The quota type. Value:

  • CommonQuota (default): Generic quota.
  • FlowControl:API rate quota.
  • WhiteListLabel: Equity quota.
reason
This property is required.
Changes to this property will trigger replacement.
String

Reason for quota application.

NOTE: The quota request is approved by the technical support of each cloud service. If you want to increase the chance of passing, please fill in a reasonable application value and detailed application reasons when applying for quota.

dimensions Changes to this property will trigger replacement. List<Property Map>
Quota dimension. See dimensions below.
effectiveTime Changes to this property will trigger replacement. String

The UTC time when the quota takes effect. This parameter applies only to the equity quota (WhiteListLabel).

NOTE: If the current account does not select the effective time, the default is the submission time.

envLanguage String
The language of the quota application result notification. Value:

  • zh (default): Chinese.
  • en: English.
expireTime Changes to this property will trigger replacement. String

The UTC time when the quota expires. This parameter applies only to the equity quota (WhiteListLabel).

NOTE: If No Expiration Time is selected for the current account, the expiration time is 99 years from the effective time of the current quota.

noticeType Number
Whether to send notification of quota application result. Value:

  • 0 (default): No.
  • 3: Yes.

Outputs

All input properties are implicitly available as output properties. Additionally, the TemplateApplications resource produces the following output properties:

Id string
The provider-assigned unique ID for this managed resource.
QuotaApplicationDetails List<Pulumi.AliCloud.Quotas.Outputs.TemplateApplicationsQuotaApplicationDetail>
List of quota application details.
Id string
The provider-assigned unique ID for this managed resource.
QuotaApplicationDetails []TemplateApplicationsQuotaApplicationDetail
List of quota application details.
id String
The provider-assigned unique ID for this managed resource.
quotaApplicationDetails List<TemplateApplicationsQuotaApplicationDetail>
List of quota application details.
id string
The provider-assigned unique ID for this managed resource.
quotaApplicationDetails TemplateApplicationsQuotaApplicationDetail[]
List of quota application details.
id str
The provider-assigned unique ID for this managed resource.
quota_application_details Sequence[TemplateApplicationsQuotaApplicationDetail]
List of quota application details.
id String
The provider-assigned unique ID for this managed resource.
quotaApplicationDetails List<Property Map>
List of quota application details.

Look up Existing TemplateApplications Resource

Get an existing TemplateApplications resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.

public static get(name: string, id: Input<ID>, state?: TemplateApplicationsState, opts?: CustomResourceOptions): TemplateApplications
@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        aliyun_uids: Optional[Sequence[str]] = None,
        desire_value: Optional[float] = None,
        dimensions: Optional[Sequence[TemplateApplicationsDimensionArgs]] = None,
        effective_time: Optional[str] = None,
        env_language: Optional[str] = None,
        expire_time: Optional[str] = None,
        notice_type: Optional[int] = None,
        product_code: Optional[str] = None,
        quota_action_code: Optional[str] = None,
        quota_application_details: Optional[Sequence[TemplateApplicationsQuotaApplicationDetailArgs]] = None,
        quota_category: Optional[str] = None,
        reason: Optional[str] = None) -> TemplateApplications
func GetTemplateApplications(ctx *Context, name string, id IDInput, state *TemplateApplicationsState, opts ...ResourceOption) (*TemplateApplications, error)
public static TemplateApplications Get(string name, Input<string> id, TemplateApplicationsState? state, CustomResourceOptions? opts = null)
public static TemplateApplications get(String name, Output<String> id, TemplateApplicationsState state, CustomResourceOptions options)
resources:  _:    type: alicloud:quotas:TemplateApplications    get:      id: ${id}
name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
resource_name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
The following state arguments are supported:
AliyunUids Changes to this property will trigger replacement. List<string>

The list of Alibaba Cloud accounts (primary accounts) of the resource directory members to which the quota is applied.

NOTE: Only 50 members can apply for quota increase in batch at a time. For more information about the members of the resource directory, see Query the list of all members in the resource directory.

DesireValue Changes to this property will trigger replacement. double

The value of the quota request.

NOTE: The quota request is approved by the technical support of each cloud service. If you want to increase the chance of passing, please fill in a reasonable application value and detailed application reasons when applying for quota.

Dimensions Changes to this property will trigger replacement. List<Pulumi.AliCloud.Quotas.Inputs.TemplateApplicationsDimension>
Quota dimension. See dimensions below.
EffectiveTime Changes to this property will trigger replacement. string

The UTC time when the quota takes effect. This parameter applies only to the equity quota (WhiteListLabel).

NOTE: If the current account does not select the effective time, the default is the submission time.

EnvLanguage string
The language of the quota application result notification. Value:

  • zh (default): Chinese.
  • en: English.
ExpireTime Changes to this property will trigger replacement. string

The UTC time when the quota expires. This parameter applies only to the equity quota (WhiteListLabel).

NOTE: If No Expiration Time is selected for the current account, the expiration time is 99 years from the effective time of the current quota.

NoticeType int
Whether to send notification of quota application result. Value:

  • 0 (default): No.
  • 3: Yes.
ProductCode Changes to this property will trigger replacement. string

Cloud service name abbreviation.

NOTE: For more information about cloud services that support quota centers, see Cloud services that support quota centers.

QuotaActionCode Changes to this property will trigger replacement. string
The quota ID.
QuotaApplicationDetails List<Pulumi.AliCloud.Quotas.Inputs.TemplateApplicationsQuotaApplicationDetail>
List of quota application details.
QuotaCategory Changes to this property will trigger replacement. string
The quota type. Value:

  • CommonQuota (default): Generic quota.
  • FlowControl:API rate quota.
  • WhiteListLabel: Equity quota.
Reason Changes to this property will trigger replacement. string

Reason for quota application.

NOTE: The quota request is approved by the technical support of each cloud service. If you want to increase the chance of passing, please fill in a reasonable application value and detailed application reasons when applying for quota.

AliyunUids Changes to this property will trigger replacement. []string

The list of Alibaba Cloud accounts (primary accounts) of the resource directory members to which the quota is applied.

NOTE: Only 50 members can apply for quota increase in batch at a time. For more information about the members of the resource directory, see Query the list of all members in the resource directory.

DesireValue Changes to this property will trigger replacement. float64

The value of the quota request.

NOTE: The quota request is approved by the technical support of each cloud service. If you want to increase the chance of passing, please fill in a reasonable application value and detailed application reasons when applying for quota.

Dimensions Changes to this property will trigger replacement. []TemplateApplicationsDimensionArgs
Quota dimension. See dimensions below.
EffectiveTime Changes to this property will trigger replacement. string

The UTC time when the quota takes effect. This parameter applies only to the equity quota (WhiteListLabel).

NOTE: If the current account does not select the effective time, the default is the submission time.

EnvLanguage string
The language of the quota application result notification. Value:

  • zh (default): Chinese.
  • en: English.
ExpireTime Changes to this property will trigger replacement. string

The UTC time when the quota expires. This parameter applies only to the equity quota (WhiteListLabel).

NOTE: If No Expiration Time is selected for the current account, the expiration time is 99 years from the effective time of the current quota.

NoticeType int
Whether to send notification of quota application result. Value:

  • 0 (default): No.
  • 3: Yes.
ProductCode Changes to this property will trigger replacement. string

Cloud service name abbreviation.

NOTE: For more information about cloud services that support quota centers, see Cloud services that support quota centers.

QuotaActionCode Changes to this property will trigger replacement. string
The quota ID.
QuotaApplicationDetails []TemplateApplicationsQuotaApplicationDetailArgs
List of quota application details.
QuotaCategory Changes to this property will trigger replacement. string
The quota type. Value:

  • CommonQuota (default): Generic quota.
  • FlowControl:API rate quota.
  • WhiteListLabel: Equity quota.
Reason Changes to this property will trigger replacement. string

Reason for quota application.

NOTE: The quota request is approved by the technical support of each cloud service. If you want to increase the chance of passing, please fill in a reasonable application value and detailed application reasons when applying for quota.

aliyunUids Changes to this property will trigger replacement. List<String>

The list of Alibaba Cloud accounts (primary accounts) of the resource directory members to which the quota is applied.

NOTE: Only 50 members can apply for quota increase in batch at a time. For more information about the members of the resource directory, see Query the list of all members in the resource directory.

desireValue Changes to this property will trigger replacement. Double

The value of the quota request.

NOTE: The quota request is approved by the technical support of each cloud service. If you want to increase the chance of passing, please fill in a reasonable application value and detailed application reasons when applying for quota.

dimensions Changes to this property will trigger replacement. List<TemplateApplicationsDimension>
Quota dimension. See dimensions below.
effectiveTime Changes to this property will trigger replacement. String

The UTC time when the quota takes effect. This parameter applies only to the equity quota (WhiteListLabel).

NOTE: If the current account does not select the effective time, the default is the submission time.

envLanguage String
The language of the quota application result notification. Value:

  • zh (default): Chinese.
  • en: English.
expireTime Changes to this property will trigger replacement. String

The UTC time when the quota expires. This parameter applies only to the equity quota (WhiteListLabel).

NOTE: If No Expiration Time is selected for the current account, the expiration time is 99 years from the effective time of the current quota.

noticeType Integer
Whether to send notification of quota application result. Value:

  • 0 (default): No.
  • 3: Yes.
productCode Changes to this property will trigger replacement. String

Cloud service name abbreviation.

NOTE: For more information about cloud services that support quota centers, see Cloud services that support quota centers.

quotaActionCode Changes to this property will trigger replacement. String
The quota ID.
quotaApplicationDetails List<TemplateApplicationsQuotaApplicationDetail>
List of quota application details.
quotaCategory Changes to this property will trigger replacement. String
The quota type. Value:

  • CommonQuota (default): Generic quota.
  • FlowControl:API rate quota.
  • WhiteListLabel: Equity quota.
reason Changes to this property will trigger replacement. String

Reason for quota application.

NOTE: The quota request is approved by the technical support of each cloud service. If you want to increase the chance of passing, please fill in a reasonable application value and detailed application reasons when applying for quota.

aliyunUids Changes to this property will trigger replacement. string[]

The list of Alibaba Cloud accounts (primary accounts) of the resource directory members to which the quota is applied.

NOTE: Only 50 members can apply for quota increase in batch at a time. For more information about the members of the resource directory, see Query the list of all members in the resource directory.

desireValue Changes to this property will trigger replacement. number

The value of the quota request.

NOTE: The quota request is approved by the technical support of each cloud service. If you want to increase the chance of passing, please fill in a reasonable application value and detailed application reasons when applying for quota.

dimensions Changes to this property will trigger replacement. TemplateApplicationsDimension[]
Quota dimension. See dimensions below.
effectiveTime Changes to this property will trigger replacement. string

The UTC time when the quota takes effect. This parameter applies only to the equity quota (WhiteListLabel).

NOTE: If the current account does not select the effective time, the default is the submission time.

envLanguage string
The language of the quota application result notification. Value:

  • zh (default): Chinese.
  • en: English.
expireTime Changes to this property will trigger replacement. string

The UTC time when the quota expires. This parameter applies only to the equity quota (WhiteListLabel).

NOTE: If No Expiration Time is selected for the current account, the expiration time is 99 years from the effective time of the current quota.

noticeType number
Whether to send notification of quota application result. Value:

  • 0 (default): No.
  • 3: Yes.
productCode Changes to this property will trigger replacement. string

Cloud service name abbreviation.

NOTE: For more information about cloud services that support quota centers, see Cloud services that support quota centers.

quotaActionCode Changes to this property will trigger replacement. string
The quota ID.
quotaApplicationDetails TemplateApplicationsQuotaApplicationDetail[]
List of quota application details.
quotaCategory Changes to this property will trigger replacement. string
The quota type. Value:

  • CommonQuota (default): Generic quota.
  • FlowControl:API rate quota.
  • WhiteListLabel: Equity quota.
reason Changes to this property will trigger replacement. string

Reason for quota application.

NOTE: The quota request is approved by the technical support of each cloud service. If you want to increase the chance of passing, please fill in a reasonable application value and detailed application reasons when applying for quota.

aliyun_uids Changes to this property will trigger replacement. Sequence[str]

The list of Alibaba Cloud accounts (primary accounts) of the resource directory members to which the quota is applied.

NOTE: Only 50 members can apply for quota increase in batch at a time. For more information about the members of the resource directory, see Query the list of all members in the resource directory.

desire_value Changes to this property will trigger replacement. float

The value of the quota request.

NOTE: The quota request is approved by the technical support of each cloud service. If you want to increase the chance of passing, please fill in a reasonable application value and detailed application reasons when applying for quota.

dimensions Changes to this property will trigger replacement. Sequence[TemplateApplicationsDimensionArgs]
Quota dimension. See dimensions below.
effective_time Changes to this property will trigger replacement. str

The UTC time when the quota takes effect. This parameter applies only to the equity quota (WhiteListLabel).

NOTE: If the current account does not select the effective time, the default is the submission time.

env_language str
The language of the quota application result notification. Value:

  • zh (default): Chinese.
  • en: English.
expire_time Changes to this property will trigger replacement. str

The UTC time when the quota expires. This parameter applies only to the equity quota (WhiteListLabel).

NOTE: If No Expiration Time is selected for the current account, the expiration time is 99 years from the effective time of the current quota.

notice_type int
Whether to send notification of quota application result. Value:

  • 0 (default): No.
  • 3: Yes.
product_code Changes to this property will trigger replacement. str

Cloud service name abbreviation.

NOTE: For more information about cloud services that support quota centers, see Cloud services that support quota centers.

quota_action_code Changes to this property will trigger replacement. str
The quota ID.
quota_application_details Sequence[TemplateApplicationsQuotaApplicationDetailArgs]
List of quota application details.
quota_category Changes to this property will trigger replacement. str
The quota type. Value:

  • CommonQuota (default): Generic quota.
  • FlowControl:API rate quota.
  • WhiteListLabel: Equity quota.
reason Changes to this property will trigger replacement. str

Reason for quota application.

NOTE: The quota request is approved by the technical support of each cloud service. If you want to increase the chance of passing, please fill in a reasonable application value and detailed application reasons when applying for quota.

aliyunUids Changes to this property will trigger replacement. List<String>

The list of Alibaba Cloud accounts (primary accounts) of the resource directory members to which the quota is applied.

NOTE: Only 50 members can apply for quota increase in batch at a time. For more information about the members of the resource directory, see Query the list of all members in the resource directory.

desireValue Changes to this property will trigger replacement. Number

The value of the quota request.

NOTE: The quota request is approved by the technical support of each cloud service. If you want to increase the chance of passing, please fill in a reasonable application value and detailed application reasons when applying for quota.

dimensions Changes to this property will trigger replacement. List<Property Map>
Quota dimension. See dimensions below.
effectiveTime Changes to this property will trigger replacement. String

The UTC time when the quota takes effect. This parameter applies only to the equity quota (WhiteListLabel).

NOTE: If the current account does not select the effective time, the default is the submission time.

envLanguage String
The language of the quota application result notification. Value:

  • zh (default): Chinese.
  • en: English.
expireTime Changes to this property will trigger replacement. String

The UTC time when the quota expires. This parameter applies only to the equity quota (WhiteListLabel).

NOTE: If No Expiration Time is selected for the current account, the expiration time is 99 years from the effective time of the current quota.

noticeType Number
Whether to send notification of quota application result. Value:

  • 0 (default): No.
  • 3: Yes.
productCode Changes to this property will trigger replacement. String

Cloud service name abbreviation.

NOTE: For more information about cloud services that support quota centers, see Cloud services that support quota centers.

quotaActionCode Changes to this property will trigger replacement. String
The quota ID.
quotaApplicationDetails List<Property Map>
List of quota application details.
quotaCategory Changes to this property will trigger replacement. String
The quota type. Value:

  • CommonQuota (default): Generic quota.
  • FlowControl:API rate quota.
  • WhiteListLabel: Equity quota.
reason Changes to this property will trigger replacement. String

Reason for quota application.

NOTE: The quota request is approved by the technical support of each cloud service. If you want to increase the chance of passing, please fill in a reasonable application value and detailed application reasons when applying for quota.

Supporting Types

TemplateApplicationsDimension
, TemplateApplicationsDimensionArgs

Key Changes to this property will trigger replacement. string
Quota dimension Key.
Value Changes to this property will trigger replacement. string
Quota dimension Value.
Key Changes to this property will trigger replacement. string
Quota dimension Key.
Value Changes to this property will trigger replacement. string
Quota dimension Value.
key Changes to this property will trigger replacement. String
Quota dimension Key.
value Changes to this property will trigger replacement. String
Quota dimension Value.
key Changes to this property will trigger replacement. string
Quota dimension Key.
value Changes to this property will trigger replacement. string
Quota dimension Value.
key Changes to this property will trigger replacement. str
Quota dimension Key.
value Changes to this property will trigger replacement. str
Quota dimension Value.
key Changes to this property will trigger replacement. String
Quota dimension Key.
value Changes to this property will trigger replacement. String
Quota dimension Value.

TemplateApplicationsQuotaApplicationDetail
, TemplateApplicationsQuotaApplicationDetailArgs

AliyunUid string
Alibaba Cloud account (primary account).
ApplicationId string
The ID of the quota promotion request.
ApproveValue double
The approved quota value of the quota increase request.
AuditReason string
Approval comments on quota increase applications.
Dimensions Dictionary<string, string>
Quota dimension. See dimensions below.
EnvLanguage string
The language of the quota application result notification. Value:

  • zh (default): Chinese.
  • en: English.
NoticeType int
Whether to send notification of quota application result. Value:

  • 0 (default): No.
  • 3: Yes.
Period Pulumi.AliCloud.Quotas.Inputs.TemplateApplicationsQuotaApplicationDetailPeriod
Quota calculation period.
QuotaArn string
Quota ARN.
QuotaDescription string
The quota description.
QuotaName string
The quota name.
QuotaUnit string
Quota unit.
Reason string

Reason for quota application.

NOTE: The quota request is approved by the technical support of each cloud service. If you want to increase the chance of passing, please fill in a reasonable application value and detailed application reasons when applying for quota.

Status string
The approval status of the quota promotion application. Value:

  • Disagree: reject.
  • Approve: approved.
  • Process: under review.
  • Cancel: Closed.
AliyunUid string
Alibaba Cloud account (primary account).
ApplicationId string
The ID of the quota promotion request.
ApproveValue float64
The approved quota value of the quota increase request.
AuditReason string
Approval comments on quota increase applications.
Dimensions map[string]string
Quota dimension. See dimensions below.
EnvLanguage string
The language of the quota application result notification. Value:

  • zh (default): Chinese.
  • en: English.
NoticeType int
Whether to send notification of quota application result. Value:

  • 0 (default): No.
  • 3: Yes.
Period TemplateApplicationsQuotaApplicationDetailPeriod
Quota calculation period.
QuotaArn string
Quota ARN.
QuotaDescription string
The quota description.
QuotaName string
The quota name.
QuotaUnit string
Quota unit.
Reason string

Reason for quota application.

NOTE: The quota request is approved by the technical support of each cloud service. If you want to increase the chance of passing, please fill in a reasonable application value and detailed application reasons when applying for quota.

Status string
The approval status of the quota promotion application. Value:

  • Disagree: reject.
  • Approve: approved.
  • Process: under review.
  • Cancel: Closed.
aliyunUid String
Alibaba Cloud account (primary account).
applicationId String
The ID of the quota promotion request.
approveValue Double
The approved quota value of the quota increase request.
auditReason String
Approval comments on quota increase applications.
dimensions Map<String,String>
Quota dimension. See dimensions below.
envLanguage String
The language of the quota application result notification. Value:

  • zh (default): Chinese.
  • en: English.
noticeType Integer
Whether to send notification of quota application result. Value:

  • 0 (default): No.
  • 3: Yes.
period TemplateApplicationsQuotaApplicationDetailPeriod
Quota calculation period.
quotaArn String
Quota ARN.
quotaDescription String
The quota description.
quotaName String
The quota name.
quotaUnit String
Quota unit.
reason String

Reason for quota application.

NOTE: The quota request is approved by the technical support of each cloud service. If you want to increase the chance of passing, please fill in a reasonable application value and detailed application reasons when applying for quota.

status String
The approval status of the quota promotion application. Value:

  • Disagree: reject.
  • Approve: approved.
  • Process: under review.
  • Cancel: Closed.
aliyunUid string
Alibaba Cloud account (primary account).
applicationId string
The ID of the quota promotion request.
approveValue number
The approved quota value of the quota increase request.
auditReason string
Approval comments on quota increase applications.
dimensions {[key: string]: string}
Quota dimension. See dimensions below.
envLanguage string
The language of the quota application result notification. Value:

  • zh (default): Chinese.
  • en: English.
noticeType number
Whether to send notification of quota application result. Value:

  • 0 (default): No.
  • 3: Yes.
period TemplateApplicationsQuotaApplicationDetailPeriod
Quota calculation period.
quotaArn string
Quota ARN.
quotaDescription string
The quota description.
quotaName string
The quota name.
quotaUnit string
Quota unit.
reason string

Reason for quota application.

NOTE: The quota request is approved by the technical support of each cloud service. If you want to increase the chance of passing, please fill in a reasonable application value and detailed application reasons when applying for quota.

status string
The approval status of the quota promotion application. Value:

  • Disagree: reject.
  • Approve: approved.
  • Process: under review.
  • Cancel: Closed.
aliyun_uid str
Alibaba Cloud account (primary account).
application_id str
The ID of the quota promotion request.
approve_value float
The approved quota value of the quota increase request.
audit_reason str
Approval comments on quota increase applications.
dimensions Mapping[str, str]
Quota dimension. See dimensions below.
env_language str
The language of the quota application result notification. Value:

  • zh (default): Chinese.
  • en: English.
notice_type int
Whether to send notification of quota application result. Value:

  • 0 (default): No.
  • 3: Yes.
period TemplateApplicationsQuotaApplicationDetailPeriod
Quota calculation period.
quota_arn str
Quota ARN.
quota_description str
The quota description.
quota_name str
The quota name.
quota_unit str
Quota unit.
reason str

Reason for quota application.

NOTE: The quota request is approved by the technical support of each cloud service. If you want to increase the chance of passing, please fill in a reasonable application value and detailed application reasons when applying for quota.

status str
The approval status of the quota promotion application. Value:

  • Disagree: reject.
  • Approve: approved.
  • Process: under review.
  • Cancel: Closed.
aliyunUid String
Alibaba Cloud account (primary account).
applicationId String
The ID of the quota promotion request.
approveValue Number
The approved quota value of the quota increase request.
auditReason String
Approval comments on quota increase applications.
dimensions Map<String>
Quota dimension. See dimensions below.
envLanguage String
The language of the quota application result notification. Value:

  • zh (default): Chinese.
  • en: English.
noticeType Number
Whether to send notification of quota application result. Value:

  • 0 (default): No.
  • 3: Yes.
period Property Map
Quota calculation period.
quotaArn String
Quota ARN.
quotaDescription String
The quota description.
quotaName String
The quota name.
quotaUnit String
Quota unit.
reason String

Reason for quota application.

NOTE: The quota request is approved by the technical support of each cloud service. If you want to increase the chance of passing, please fill in a reasonable application value and detailed application reasons when applying for quota.

status String
The approval status of the quota promotion application. Value:

  • Disagree: reject.
  • Approve: approved.
  • Process: under review.
  • Cancel: Closed.

TemplateApplicationsQuotaApplicationDetailPeriod
, TemplateApplicationsQuotaApplicationDetailPeriodArgs

PeriodUnit string
Quota calculation cycle unit.
PeriodValue int
The quota calculation period value.
PeriodUnit string
Quota calculation cycle unit.
PeriodValue int
The quota calculation period value.
periodUnit String
Quota calculation cycle unit.
periodValue Integer
The quota calculation period value.
periodUnit string
Quota calculation cycle unit.
periodValue number
The quota calculation period value.
period_unit str
Quota calculation cycle unit.
period_value int
The quota calculation period value.
periodUnit String
Quota calculation cycle unit.
periodValue Number
The quota calculation period value.

Package Details

Repository
Alibaba Cloud pulumi/pulumi-alicloud
License
Apache-2.0
Notes
This Pulumi package is based on the alicloud Terraform Provider.