You need to enable JavaScript to run this app.
导航

CreateQuotaApplication - 创建配额提升申请

最近更新时间2022.12.27 10:18:23

首次发布时间2022.09.21 12:00:27

请求参数

接口参数

参数类型位置是否必填描述
ActionstringQueryCreateQuotaApplication
VersionstringQuery当前API版本,该接口版本为2022-07-01

业务变量参数

参数类型位置是否必填描述
ProviderCodestringQuery服务提供方英文简称
QuotaCodestringQuery配额英文简称
QuotaUnitstringQuery配额用量单位值
QuotaTypestringQuerynormal/spec
DesireValuefloat64Query申请值
ReasonstringQuery/Body长度不可超出100

Dimensions

array

Query/Body

[
    {
        "Name":"region_code",
        "Value":"cn-north"
    },
    {
        "Name":"charge_type",
        "Value":"PostPaid"
    },
    {
        "Name":"zone_id",
        "Value":"cn-north-a"
    }
]
-NamestringBody目前可选值有region_code、zone_id、charge_type
-ValuestringBody

请求示例

http://open.volcengineapi.com/?Action=CreateQuotaApplication
&Version=2022-07-01
&ProviderCode=RocketMQ
&QuotaCode=StorageSum
&QuotaUnit=GiB&QuotaType=normal
&DesireValue=5
&Reason=生产所需
&Dimensions=[{"Name":"region_code","value":"cn-beijing"}]

返回示例

{
    "ResponseMetadata": {
        "RequestId": "2022080418464401021002504400242955"
    },
    "Result": {
        "Application": {
            "ID": 237,
            "DesireValue": 5,
            "ProviderCode": "RocketMQ",
            "QuotaCode": "StorageSum",
            "QuotaUnit": "GiB",
            "ApplicationId": "0",
            "Reason": "生产所需",
            "ApproveValue": 0,
            "AuditReason": "",
            "ApplyTime": "2022-08-04T18:46:44.901+08:00",
            "EffectiveTime": "2022-08-04T18:46:44.901+08:00",
            "Status": "ToAgree",
            "Dimensions": [
                {
                    "Name": "region_code",
                    "Value": "cn-beijing"
                }
            ],
            "QuotaType": "normal"
        }
    }
}