Domain name for API request: cvm.tencentcloudapi.com.
This API is used to query limitations on operations on an instance.
A maximum of 10 requests can be initiated per second for this API.
Note: This API supports Finance regions. If the common parameter Region is a Finance region, a domain name with the Finance region needs to be specified, for example: cvm.ap-shanghai-fsi.tencentcloudapi.com
The following request parameter list only provides API request parameters and some common parameters. For the complete common parameter list, see Common Request Parameters.
Parameter Name | Required | Type | Description |
---|---|---|---|
Action | Yes | String | Common parameter. The value used for this API: DescribeInstancesOperationLimit. |
Version | Yes | String | Common parameter. The value used for this API: 2017-03-12. |
Region | Yes | String | Common parameter. For more information, please see the list of regions supported by the product. |
InstanceIds.N | Yes | Array of String | Query by instance ID(s). You can obtain the instance IDs from the value of InstanceId returned by the DescribeInstances API. For example, instance ID: ins-xxxxxxxx. (For the specific format, refer to section ids.N of the API Introduction.) You can query up to 100 instances in each request. |
Operation | Yes | String | Operation on the instance(s). |
Parameter Name | Type | Description |
---|---|---|
InstanceOperationLimitSet | Array of OperationCountLimit | The maximum number of times you can modify the instance configurations (degrading the configurations) |
RequestId | String | The unique request ID, which is returned for each request. RequestId is required for locating a problem. |
GET https://cvm.tencentcloudapi.com/?Action=DescribeInstancesOperationLimit
&InstanceIds.0=ins-r8hr2upy
&Operation=INSTANCE_DEGRADE
&<Common request parameters>
{
"Response": {
"InstanceOperationLimitSet": [
{
"Operation": "INSTANCE_DEGRADE",
"InstanceId": "ins-r8hr2upy",
"CurrentCount": 0,
"LimitCount": 5
}
],
"RequestId": "951caf78-580f-42f6-8b83-a902d051d672"
}
}
TencentCloud API 3.0 integrates SDKs that support various programming languages to make it easier for you to call APIs.
The following only lists the error codes related to the API business logic. For other error codes, see Common Error Codes.
Error Code | Description |
---|---|
InvalidInstanceId.Malformed | Invalid instance ID . The specified instance ID has an invalid format. For example, ins-1122 has an invalid ID length. |
InvalidInstanceId.NotFound | No instance found. |
Was this page helpful?