You need to enable JavaScript to run this app.
导航
DescribeMaxExtraPerformanceCanPurchase
最近更新时间:2024.11.07 14:42:29首次发布时间:2024.05.08 11:27:21

调用DescribeMaxExtraPerformanceCanPurchase接口查询当前容量的吞吐型SSD云盘的基准性能,最大能达到的性能,以及可购买的额外性能上限。

注意事项

仅吞吐型SSD云盘支持调用DescribeMaxExtraPerformanceCanPurchase接口查询性能。

请求参数

名称类型是否必填示例值描述
ActionStringDescribeMaxExtraPerformanceCanPurchase要执行的操作,取值:DescribeMaxExtraPerformanceCanPurchase。
VersionString2020-04-01API的版本,取值:2020-04-01。

VolumeId

String

vol-3vkbg3c6193q2lea****

云盘ID。

注意

VolumeId参数与VolumeTypeSize参数为二选一。即如果没有设置VolumeId,则必须设置VolumeTypeSize参数,否则调用会失败。

VolumeTypeStringTSSD_TL0云盘类型,只支持取值为TSSD_TL0,即吞吐型SSD云盘。
SizeInt100云盘大小(GiB)。

返回数据

名称
类型
示例值
说明
BaselineVolumePerformance-基准性能。
IOPSInt3000当前容量云盘的基准IOPS。
ThroughputInt170当前容量云盘的基准吞吐量。
LimitVolumePerformance-云盘最大性能。
IOPSInt3480当前容量云盘能达到的IOPS上限。
ThroughputInt200当前容量云盘能达到的吞吐量上限。
MaxExtraPerformanceCanPurchase[]ExtraPerformanceLimit-额外性能。
ExtraPerformanceTypeIdStringThroughput额外性能包类型。
LimitInt30当前容量云盘可以购买的额外性能上限。

请求示例

GET /?Action=DescribeMaxExtraPerformanceCanPurchase&Version=2020-04-01&VolumeId=vol-3vkbg3c6193q2lea**** HTTP/1.1
Host: open.volcengineapi.com
Region: cn-beijing
ServiceName: storage_ebs

返回示例

{
    "ResponseMetadata": {
        "RequestId": "53828e34-458e-4707-a0c5-4b4a00a9****",
        "Action": "DescribeMaxExtraPerformanceCanPurchase",
        "Version": "2020-04-01",
        "Service": "storage_ebs",
        "Region": "cn-beijing"
    },
    "Result": {
        "Baseline": {
            "IOPS": 3000,
            "Throughput": 170
        },
        "Limit": {
            "IOPS": 3480,
            "Throughput": 200
        },
        "MaxExtraPerformanceCanPurchase": [
            {
                "ExtraPerformanceTypeId": "Throughput",
                "Limit": 30
            }
        ]
    }
}