DescribeZoneInstanceConfigInfos
Last updated: 2018-10-12 16:02:45
Contents:
1. API Description
Domain name for API request: cvm.tencentcloudapi.com
This API (DescribeZoneInstanceConfigInfos) is used to obtain the model information in an availability zone.
A maximum of 40 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
2. Input Parameters
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: DescribeZoneInstanceConfigInfos |
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. |
Filters.N | No | Array of Filter | Filter conditions. |
3. Output Parameters
Parameter Name | Type | Description |
---|---|---|
InstanceTypeQuotaSet | Array of InstanceTypeQuotaItem | List of model configuration in an availability zone. |
RequestId | String | The unique request ID, which is returned for each request. RequestId is required for locating a problem. |
4. Error Codes
The following only lists the error codes related to the API business logic. For other error codes, see Common Error Codes.
Error Code | Description |
---|---|
InvalidInstanceType.Malformed | The format of the specified parameter InstanceType is invalid. |
InvalidRegion.NotFound | The region cannot be found. |
InvalidZone.MismatchRegion | The specified zone does not exist. |
5. Example
Example 1 Obtain the list of model configuration in an availability zone
Input example
https://cvm.tencentcloudapi.com/?Action=DescribeZoneInstanceConfigInfos
&Filters.0.Name=zone
&Filters.0.Values.0=ap-guangzhou-2
&Filters.1.Name=instance-charge-type
&Filters.1.Values.0=POSTPAID_BY_HOUR
&<Common request parameters>
Output example
{
"Response": {
"InstanceTypeQuotaSet": [
{
"Cpu": 2,
"Externals": {},
"InstanceChargeType": "POSTPAID_BY_HOUR",
"InstanceFamily": "S2",
"InstanceType": "S2.MEDIUM4",
"LocalDiskTypeList": [
{
"MaxSize": 50,
"MinSize": 50,
"PartitionType": "ROOT",
"Type": "LOCAL_BASIC"
},
{
"MaxSize": 500,
"MinSize": 0,
"PartitionType": "DATA",
"Type": "LOCAL_BASIC"
}
],
"Memory": 4,
"NetworkCard": 0,
"Price": {
"ChargeUnit": "HOUR",
"UnitPrice": 0.64
},
"Status": "SELL",
"TypeName": "Standard S2",
"Zone": "ap-guangzhou-2"
}
],
"RequestId": "c28559ca-d3cf-40f0-9664-2ab303484efa"
}
}