Alibaba Cloud v3.86.1 published on Saturday, Sep 27, 2025 by Pulumi
alicloud.quotas.getTemplateApplications
This data source provides Quotas Template Applications available to the user.What is Template Applications
NOTE: Available since v1.214.0.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as alicloud from "@pulumi/alicloud";
const _default = alicloud.resourcemanager.getAccounts({
status: "CreateSuccess",
});
const defaultTemplateApplications = new alicloud.quotas.TemplateApplications("default", {
quotaActionCode: "vpc_whitelist/ha_vip_whitelist",
productCode: "vpc",
quotaCategory: "FlowControl",
aliyunUids: [_default.then(_default => _default.ids?.[0])],
desireValue: 6,
noticeType: 0,
envLanguage: "zh",
reason: "example",
dimensions: [
{
key: "apiName",
value: "GetProductQuotaDimension",
},
{
key: "apiVersion",
value: "2020-05-10",
},
{
key: "regionId",
value: "cn-hangzhou",
},
],
});
const defaultGetTemplateApplications = alicloud.quotas.getTemplateApplicationsOutput({
ids: [defaultTemplateApplications.id],
productCode: "vpc",
quotaActionCode: "vpc_whitelist/ha_vip_whitelist",
quotaCategory: "FlowControl",
});
export const alicloudQuotasTemplateApplicationsExampleId = defaultGetTemplateApplications.apply(defaultGetTemplateApplications => defaultGetTemplateApplications.applications?.[0]?.id);
import pulumi
import pulumi_alicloud as alicloud
default = alicloud.resourcemanager.get_accounts(status="CreateSuccess")
default_template_applications = alicloud.quotas.TemplateApplications("default",
quota_action_code="vpc_whitelist/ha_vip_whitelist",
product_code="vpc",
quota_category="FlowControl",
aliyun_uids=[default.ids[0]],
desire_value=6,
notice_type=0,
env_language="zh",
reason="example",
dimensions=[
{
"key": "apiName",
"value": "GetProductQuotaDimension",
},
{
"key": "apiVersion",
"value": "2020-05-10",
},
{
"key": "regionId",
"value": "cn-hangzhou",
},
])
default_get_template_applications = alicloud.quotas.get_template_applications_output(ids=[default_template_applications.id],
product_code="vpc",
quota_action_code="vpc_whitelist/ha_vip_whitelist",
quota_category="FlowControl")
pulumi.export("alicloudQuotasTemplateApplicationsExampleId", default_get_template_applications.applications[0].id)
package main
import (
"github.com/pulumi/pulumi-alicloud/sdk/v3/go/alicloud/quotas"
"github.com/pulumi/pulumi-alicloud/sdk/v3/go/alicloud/resourcemanager"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_default, err := resourcemanager.GetAccounts(ctx, &resourcemanager.GetAccountsArgs{
Status: pulumi.StringRef("CreateSuccess"),
}, nil)
if err != nil {
return err
}
defaultTemplateApplications, err := quotas.NewTemplateApplications(ctx, "default", "as.TemplateApplicationsArgs{
QuotaActionCode: pulumi.String("vpc_whitelist/ha_vip_whitelist"),
ProductCode: pulumi.String("vpc"),
QuotaCategory: pulumi.String("FlowControl"),
AliyunUids: pulumi.StringArray{
pulumi.String(_default.Ids[0]),
},
DesireValue: pulumi.Float64(6),
NoticeType: pulumi.Int(0),
EnvLanguage: pulumi.String("zh"),
Reason: pulumi.String("example"),
Dimensions: quotas.TemplateApplicationsDimensionArray{
"as.TemplateApplicationsDimensionArgs{
Key: pulumi.String("apiName"),
Value: pulumi.String("GetProductQuotaDimension"),
},
"as.TemplateApplicationsDimensionArgs{
Key: pulumi.String("apiVersion"),
Value: pulumi.String("2020-05-10"),
},
"as.TemplateApplicationsDimensionArgs{
Key: pulumi.String("regionId"),
Value: pulumi.String("cn-hangzhou"),
},
},
})
if err != nil {
return err
}
defaultGetTemplateApplications := quotas.LookupTemplateApplicationsOutput(ctx, quotas.GetTemplateApplicationsOutputArgs{
Ids: pulumi.StringArray{
defaultTemplateApplications.ID(),
},
ProductCode: pulumi.String("vpc"),
QuotaActionCode: pulumi.String("vpc_whitelist/ha_vip_whitelist"),
QuotaCategory: pulumi.String("FlowControl"),
}, nil)
ctx.Export("alicloudQuotasTemplateApplicationsExampleId", defaultGetTemplateApplications.ApplyT(func(defaultGetTemplateApplications quotas.GetTemplateApplicationsResult) (*string, error) {
return &defaultGetTemplateApplications.Applications[0].Id, nil
}).(pulumi.StringPtrOutput))
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AliCloud = Pulumi.AliCloud;
return await Deployment.RunAsync(() =>
{
var @default = AliCloud.ResourceManager.GetAccounts.Invoke(new()
{
Status = "CreateSuccess",
});
var defaultTemplateApplications = new AliCloud.Quotas.TemplateApplications("default", new()
{
QuotaActionCode = "vpc_whitelist/ha_vip_whitelist",
ProductCode = "vpc",
QuotaCategory = "FlowControl",
AliyunUids = new[]
{
@default.Apply(@default => @default.Apply(getAccountsResult => getAccountsResult.Ids[0])),
},
DesireValue = 6,
NoticeType = 0,
EnvLanguage = "zh",
Reason = "example",
Dimensions = new[]
{
new AliCloud.Quotas.Inputs.TemplateApplicationsDimensionArgs
{
Key = "apiName",
Value = "GetProductQuotaDimension",
},
new AliCloud.Quotas.Inputs.TemplateApplicationsDimensionArgs
{
Key = "apiVersion",
Value = "2020-05-10",
},
new AliCloud.Quotas.Inputs.TemplateApplicationsDimensionArgs
{
Key = "regionId",
Value = "cn-hangzhou",
},
},
});
var defaultGetTemplateApplications = AliCloud.Quotas.GetTemplateApplications.Invoke(new()
{
Ids = new[]
{
defaultTemplateApplications.Id,
},
ProductCode = "vpc",
QuotaActionCode = "vpc_whitelist/ha_vip_whitelist",
QuotaCategory = "FlowControl",
});
return new Dictionary<string, object?>
{
["alicloudQuotasTemplateApplicationsExampleId"] = defaultGetTemplateApplications.Apply(getTemplateApplicationsResult => getTemplateApplicationsResult.Applications[0]?.Id),
};
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.alicloud.resourcemanager.ResourcemanagerFunctions;
import com.pulumi.alicloud.resourcemanager.inputs.GetAccountsArgs;
import com.pulumi.alicloud.quotas.TemplateApplications;
import com.pulumi.alicloud.quotas.TemplateApplicationsArgs;
import com.pulumi.alicloud.quotas.inputs.TemplateApplicationsDimensionArgs;
import com.pulumi.alicloud.quotas.QuotasFunctions;
import com.pulumi.alicloud.quotas.inputs.GetTemplateApplicationsArgs;
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 default = ResourcemanagerFunctions.getAccounts(GetAccountsArgs.builder()
.status("CreateSuccess")
.build());
var defaultTemplateApplications = new TemplateApplications("defaultTemplateApplications", TemplateApplicationsArgs.builder()
.quotaActionCode("vpc_whitelist/ha_vip_whitelist")
.productCode("vpc")
.quotaCategory("FlowControl")
.aliyunUids(default_.ids()[0])
.desireValue(6.0)
.noticeType(0)
.envLanguage("zh")
.reason("example")
.dimensions(
TemplateApplicationsDimensionArgs.builder()
.key("apiName")
.value("GetProductQuotaDimension")
.build(),
TemplateApplicationsDimensionArgs.builder()
.key("apiVersion")
.value("2020-05-10")
.build(),
TemplateApplicationsDimensionArgs.builder()
.key("regionId")
.value("cn-hangzhou")
.build())
.build());
final var defaultGetTemplateApplications = QuotasFunctions.getTemplateApplications(GetTemplateApplicationsArgs.builder()
.ids(defaultTemplateApplications.id())
.productCode("vpc")
.quotaActionCode("vpc_whitelist/ha_vip_whitelist")
.quotaCategory("FlowControl")
.build());
ctx.export("alicloudQuotasTemplateApplicationsExampleId", defaultGetTemplateApplications.applyValue(_defaultGetTemplateApplications -> _defaultGetTemplateApplications.applications()[0].id()));
}
}
resources:
defaultTemplateApplications:
type: alicloud:quotas:TemplateApplications
name: default
properties:
quotaActionCode: vpc_whitelist/ha_vip_whitelist
productCode: vpc
quotaCategory: FlowControl
aliyunUids:
- ${default.ids[0]}
desireValue: 6
noticeType: '0'
envLanguage: zh
reason: example
dimensions:
- key: apiName
value: GetProductQuotaDimension
- key: apiVersion
value: 2020-05-10
- key: regionId
value: cn-hangzhou
variables:
default:
fn::invoke:
function: alicloud:resourcemanager:getAccounts
arguments:
status: CreateSuccess
defaultGetTemplateApplications:
fn::invoke:
function: alicloud:quotas:getTemplateApplications
arguments:
ids:
- ${defaultTemplateApplications.id}
productCode: vpc
quotaActionCode: vpc_whitelist/ha_vip_whitelist
quotaCategory: FlowControl
outputs:
alicloudQuotasTemplateApplicationsExampleId: ${defaultGetTemplateApplications.applications[0].id}
Using getTemplateApplications
Two invocation forms are available. The direct form accepts plain arguments and either blocks until the result value is available, or returns a Promise-wrapped result. The output form accepts Input-wrapped arguments and returns an Output-wrapped result.
function getTemplateApplications(args: GetTemplateApplicationsArgs, opts?: InvokeOptions): Promise<GetTemplateApplicationsResult>
function getTemplateApplicationsOutput(args: GetTemplateApplicationsOutputArgs, opts?: InvokeOptions): Output<GetTemplateApplicationsResult>
def get_template_applications(batch_quota_application_id: Optional[str] = None,
ids: Optional[Sequence[str]] = None,
output_file: Optional[str] = None,
product_code: Optional[str] = None,
quota_action_code: Optional[str] = None,
quota_category: Optional[str] = None,
opts: Optional[InvokeOptions] = None) -> GetTemplateApplicationsResult
def get_template_applications_output(batch_quota_application_id: Optional[pulumi.Input[str]] = None,
ids: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
output_file: Optional[pulumi.Input[str]] = None,
product_code: Optional[pulumi.Input[str]] = None,
quota_action_code: Optional[pulumi.Input[str]] = None,
quota_category: Optional[pulumi.Input[str]] = None,
opts: Optional[InvokeOptions] = None) -> Output[GetTemplateApplicationsResult]
func LookupTemplateApplications(ctx *Context, args *LookupTemplateApplicationsArgs, opts ...InvokeOption) (*LookupTemplateApplicationsResult, error)
func LookupTemplateApplicationsOutput(ctx *Context, args *LookupTemplateApplicationsOutputArgs, opts ...InvokeOption) LookupTemplateApplicationsResultOutput
> Note: This function is named LookupTemplateApplications
in the Go SDK.
public static class GetTemplateApplications
{
public static Task<GetTemplateApplicationsResult> InvokeAsync(GetTemplateApplicationsArgs args, InvokeOptions? opts = null)
public static Output<GetTemplateApplicationsResult> Invoke(GetTemplateApplicationsInvokeArgs args, InvokeOptions? opts = null)
}
public static CompletableFuture<GetTemplateApplicationsResult> getTemplateApplications(GetTemplateApplicationsArgs args, InvokeOptions options)
public static Output<GetTemplateApplicationsResult> getTemplateApplications(GetTemplateApplicationsArgs args, InvokeOptions options)
fn::invoke:
function: alicloud:quotas/getTemplateApplications:getTemplateApplications
arguments:
# arguments dictionary
The following arguments are supported:
- Batch
Quota stringApplication Id - The ID of the quota application batch.
- Ids List<string>
- A list of Template Applications IDs.
- Output
File string - File name where to save data source results (after running
pulumi preview
). - Product
Code string - Cloud service name abbreviation.> For more information about cloud services that support quota centers, see Cloud services that support quota centers.
- Quota
Action stringCode - The quota ID.
- Quota
Category string - The quota type. Value:
CommonQuota
,FlowControl
andWhiteListLabel
.
- Batch
Quota stringApplication Id - The ID of the quota application batch.
- Ids []string
- A list of Template Applications IDs.
- Output
File string - File name where to save data source results (after running
pulumi preview
). - Product
Code string - Cloud service name abbreviation.> For more information about cloud services that support quota centers, see Cloud services that support quota centers.
- Quota
Action stringCode - The quota ID.
- Quota
Category string - The quota type. Value:
CommonQuota
,FlowControl
andWhiteListLabel
.
- batch
Quota StringApplication Id - The ID of the quota application batch.
- ids List<String>
- A list of Template Applications IDs.
- output
File String - File name where to save data source results (after running
pulumi preview
). - product
Code String - Cloud service name abbreviation.> For more information about cloud services that support quota centers, see Cloud services that support quota centers.
- quota
Action StringCode - The quota ID.
- quota
Category String - The quota type. Value:
CommonQuota
,FlowControl
andWhiteListLabel
.
- batch
Quota stringApplication Id - The ID of the quota application batch.
- ids string[]
- A list of Template Applications IDs.
- output
File string - File name where to save data source results (after running
pulumi preview
). - product
Code string - Cloud service name abbreviation.> For more information about cloud services that support quota centers, see Cloud services that support quota centers.
- quota
Action stringCode - The quota ID.
- quota
Category string - The quota type. Value:
CommonQuota
,FlowControl
andWhiteListLabel
.
- batch_
quota_ strapplication_ id - The ID of the quota application batch.
- ids Sequence[str]
- A list of Template Applications IDs.
- output_
file str - File name where to save data source results (after running
pulumi preview
). - product_
code str - Cloud service name abbreviation.> For more information about cloud services that support quota centers, see Cloud services that support quota centers.
- quota_
action_ strcode - The quota ID.
- quota_
category str - The quota type. Value:
CommonQuota
,FlowControl
andWhiteListLabel
.
- batch
Quota StringApplication Id - The ID of the quota application batch.
- ids List<String>
- A list of Template Applications IDs.
- output
File String - File name where to save data source results (after running
pulumi preview
). - product
Code String - Cloud service name abbreviation.> For more information about cloud services that support quota centers, see Cloud services that support quota centers.
- quota
Action StringCode - The quota ID.
- quota
Category String - The quota type. Value:
CommonQuota
,FlowControl
andWhiteListLabel
.
getTemplateApplications Result
The following output properties are available:
- Applications
List<Pulumi.
Ali Cloud. Quotas. Outputs. Get Template Applications Application> - A list of Template Applications Entries. Each element contains the following attributes:
- Id string
- The provider-assigned unique ID for this managed resource.
- Ids List<string>
- A list of Template Applications IDs.
- Batch
Quota stringApplication Id - The ID of the quota application batch.
- Output
File string - Product
Code string - Cloud service name abbreviation.> For more information about cloud services that support quota centers, see Cloud services that support quota centers.
- Quota
Action stringCode - The quota ID.
- Quota
Category string - The quota type. Value:-CommonQuota (default): Generic quota.-FlowControl:API rate quota.-WhiteListLabel: Equity quota.
- Applications
[]Get
Template Applications Application - A list of Template Applications Entries. Each element contains the following attributes:
- Id string
- The provider-assigned unique ID for this managed resource.
- Ids []string
- A list of Template Applications IDs.
- Batch
Quota stringApplication Id - The ID of the quota application batch.
- Output
File string - Product
Code string - Cloud service name abbreviation.> For more information about cloud services that support quota centers, see Cloud services that support quota centers.
- Quota
Action stringCode - The quota ID.
- Quota
Category string - The quota type. Value:-CommonQuota (default): Generic quota.-FlowControl:API rate quota.-WhiteListLabel: Equity quota.
- applications
List<Get
Template Applications Application> - A list of Template Applications Entries. Each element contains the following attributes:
- id String
- The provider-assigned unique ID for this managed resource.
- ids List<String>
- A list of Template Applications IDs.
- batch
Quota StringApplication Id - The ID of the quota application batch.
- output
File String - product
Code String - Cloud service name abbreviation.> For more information about cloud services that support quota centers, see Cloud services that support quota centers.
- quota
Action StringCode - The quota ID.
- quota
Category String - The quota type. Value:-CommonQuota (default): Generic quota.-FlowControl:API rate quota.-WhiteListLabel: Equity quota.
- applications
Get
Template Applications Application[] - A list of Template Applications Entries. Each element contains the following attributes:
- id string
- The provider-assigned unique ID for this managed resource.
- ids string[]
- A list of Template Applications IDs.
- batch
Quota stringApplication Id - The ID of the quota application batch.
- output
File string - product
Code string - Cloud service name abbreviation.> For more information about cloud services that support quota centers, see Cloud services that support quota centers.
- quota
Action stringCode - The quota ID.
- quota
Category string - The quota type. Value:-CommonQuota (default): Generic quota.-FlowControl:API rate quota.-WhiteListLabel: Equity quota.
- applications
Sequence[Get
Template Applications Application] - A list of Template Applications Entries. Each element contains the following attributes:
- id str
- The provider-assigned unique ID for this managed resource.
- ids Sequence[str]
- A list of Template Applications IDs.
- batch_
quota_ strapplication_ id - The ID of the quota application batch.
- output_
file str - product_
code str - Cloud service name abbreviation.> For more information about cloud services that support quota centers, see Cloud services that support quota centers.
- quota_
action_ strcode - The quota ID.
- quota_
category str - The quota type. Value:-CommonQuota (default): Generic quota.-FlowControl:API rate quota.-WhiteListLabel: Equity quota.
- applications List<Property Map>
- A list of Template Applications Entries. Each element contains the following attributes:
- id String
- The provider-assigned unique ID for this managed resource.
- ids List<String>
- A list of Template Applications IDs.
- batch
Quota StringApplication Id - The ID of the quota application batch.
- output
File String - product
Code String - Cloud service name abbreviation.> For more information about cloud services that support quota centers, see Cloud services that support quota centers.
- quota
Action StringCode - The quota ID.
- quota
Category String - The quota type. Value:-CommonQuota (default): Generic quota.-FlowControl:API rate quota.-WhiteListLabel: Equity quota.
Supporting Types
GetTemplateApplicationsApplication
- Aliyun
Uids List<string> - The list of Alibaba Cloud accounts (primary accounts) of the resource directory members to which the quota is applied.> 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.
- Apply
Time string - The UTC time of the quota increase application.
- Audit
Status List<Pulumi.Vos Ali Cloud. Quotas. Inputs. Get Template Applications Application Audit Status Vo> - Quantity of requisitions in different approval statuses.
- Batch
Quota stringApplication Id - The ID of the quota application batch.
- Desire
Value double - The value of the quota request.> 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
List<Pulumi.
Ali Cloud. Quotas. Inputs. Get Template Applications Application Dimension> - Quota dimension.
- Effective
Time string - The UTC time when the quota takes effect. This parameter applies only to the equity quota (WhiteListLabel).> If the current account does not select the effective time, the default is the submission time.
- Expire
Time string - The UTC time when the quota expires. This parameter applies only to the equity quota (WhiteListLabel).> If No Expiration Time is selected for the current account, the expiration time is 99 years from the effective time of the current quota.
- Id string
- The ID of the quota application batch.
- Product
Code string - Cloud service name abbreviation.> For more information about cloud services that support quota centers, see Cloud services that support quota centers.
- Quota
Action stringCode - The quota ID.
- Quota
Category string - The quota type. Value:
CommonQuota
,FlowControl
andWhiteListLabel
. - Reason string
- Reason for quota application.> 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 []string - The list of Alibaba Cloud accounts (primary accounts) of the resource directory members to which the quota is applied.> 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.
- Apply
Time string - The UTC time of the quota increase application.
- Audit
Status []GetVos Template Applications Application Audit Status Vo - Quantity of requisitions in different approval statuses.
- Batch
Quota stringApplication Id - The ID of the quota application batch.
- Desire
Value float64 - The value of the quota request.> 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
[]Get
Template Applications Application Dimension - Quota dimension.
- Effective
Time string - The UTC time when the quota takes effect. This parameter applies only to the equity quota (WhiteListLabel).> If the current account does not select the effective time, the default is the submission time.
- Expire
Time string - The UTC time when the quota expires. This parameter applies only to the equity quota (WhiteListLabel).> If No Expiration Time is selected for the current account, the expiration time is 99 years from the effective time of the current quota.
- Id string
- The ID of the quota application batch.
- Product
Code string - Cloud service name abbreviation.> For more information about cloud services that support quota centers, see Cloud services that support quota centers.
- Quota
Action stringCode - The quota ID.
- Quota
Category string - The quota type. Value:
CommonQuota
,FlowControl
andWhiteListLabel
. - Reason string
- Reason for quota application.> 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 List<String> - The list of Alibaba Cloud accounts (primary accounts) of the resource directory members to which the quota is applied.> 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.
- apply
Time String - The UTC time of the quota increase application.
- audit
Status List<GetVos Template Applications Application Audit Status Vo> - Quantity of requisitions in different approval statuses.
- batch
Quota StringApplication Id - The ID of the quota application batch.
- desire
Value Double - The value of the quota request.> 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
List<Get
Template Applications Application Dimension> - Quota dimension.
- effective
Time String - The UTC time when the quota takes effect. This parameter applies only to the equity quota (WhiteListLabel).> If the current account does not select the effective time, the default is the submission time.
- expire
Time String - The UTC time when the quota expires. This parameter applies only to the equity quota (WhiteListLabel).> If No Expiration Time is selected for the current account, the expiration time is 99 years from the effective time of the current quota.
- id String
- The ID of the quota application batch.
- product
Code String - Cloud service name abbreviation.> For more information about cloud services that support quota centers, see Cloud services that support quota centers.
- quota
Action StringCode - The quota ID.
- quota
Category String - The quota type. Value:
CommonQuota
,FlowControl
andWhiteListLabel
. - reason String
- Reason for quota application.> 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 string[] - The list of Alibaba Cloud accounts (primary accounts) of the resource directory members to which the quota is applied.> 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.
- apply
Time string - The UTC time of the quota increase application.
- audit
Status GetVos Template Applications Application Audit Status Vo[] - Quantity of requisitions in different approval statuses.
- batch
Quota stringApplication Id - The ID of the quota application batch.
- desire
Value number - The value of the quota request.> 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
Get
Template Applications Application Dimension[] - Quota dimension.
- effective
Time string - The UTC time when the quota takes effect. This parameter applies only to the equity quota (WhiteListLabel).> If the current account does not select the effective time, the default is the submission time.
- expire
Time string - The UTC time when the quota expires. This parameter applies only to the equity quota (WhiteListLabel).> If No Expiration Time is selected for the current account, the expiration time is 99 years from the effective time of the current quota.
- id string
- The ID of the quota application batch.
- product
Code string - Cloud service name abbreviation.> For more information about cloud services that support quota centers, see Cloud services that support quota centers.
- quota
Action stringCode - The quota ID.
- quota
Category string - The quota type. Value:
CommonQuota
,FlowControl
andWhiteListLabel
. - reason string
- Reason for quota application.> 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 Sequence[str] - The list of Alibaba Cloud accounts (primary accounts) of the resource directory members to which the quota is applied.> 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.
- apply_
time str - The UTC time of the quota increase application.
- audit_
status_ Sequence[Getvos Template Applications Application Audit Status Vo] - Quantity of requisitions in different approval statuses.
- batch_
quota_ strapplication_ id - The ID of the quota application batch.
- desire_
value float - The value of the quota request.> 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
Sequence[Get
Template Applications Application Dimension] - Quota dimension.
- effective_
time str - The UTC time when the quota takes effect. This parameter applies only to the equity quota (WhiteListLabel).> If the current account does not select the effective time, the default is the submission time.
- expire_
time str - The UTC time when the quota expires. This parameter applies only to the equity quota (WhiteListLabel).> If No Expiration Time is selected for the current account, the expiration time is 99 years from the effective time of the current quota.
- id str
- The ID of the quota application batch.
- product_
code str - Cloud service name abbreviation.> For more information about cloud services that support quota centers, see Cloud services that support quota centers.
- quota_
action_ strcode - The quota ID.
- quota_
category str - The quota type. Value:
CommonQuota
,FlowControl
andWhiteListLabel
. - reason str
- Reason for quota application.> 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 List<String> - The list of Alibaba Cloud accounts (primary accounts) of the resource directory members to which the quota is applied.> 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.
- apply
Time String - The UTC time of the quota increase application.
- audit
Status List<Property Map>Vos - Quantity of requisitions in different approval statuses.
- batch
Quota StringApplication Id - The ID of the quota application batch.
- desire
Value Number - The value of the quota request.> 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 List<Property Map>
- Quota dimension.
- effective
Time String - The UTC time when the quota takes effect. This parameter applies only to the equity quota (WhiteListLabel).> If the current account does not select the effective time, the default is the submission time.
- expire
Time String - The UTC time when the quota expires. This parameter applies only to the equity quota (WhiteListLabel).> If No Expiration Time is selected for the current account, the expiration time is 99 years from the effective time of the current quota.
- id String
- The ID of the quota application batch.
- product
Code String - Cloud service name abbreviation.> For more information about cloud services that support quota centers, see Cloud services that support quota centers.
- quota
Action StringCode - The quota ID.
- quota
Category String - The quota type. Value:
CommonQuota
,FlowControl
andWhiteListLabel
. - reason String
- Reason for quota application.> 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.
GetTemplateApplicationsApplicationAuditStatusVo
GetTemplateApplicationsApplicationDimension
Package Details
- Repository
- Alibaba Cloud pulumi/pulumi-alicloud
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
alicloud
Terraform Provider.