接口功能介绍
查询对应资源池 ID 下,指定存储类型的性能基线列表,若资源池不支持性能基线,则该接口会报错
接口约束
无
URI
GET /v4/hpfs/list-baseline
路径参数
无
Query参数
无
请求参数
请求头header参数
无
请求体body参数
参数 | 是否必填 | 参数类型 | 说明 | 示例 | 下级对象 |
---|---|---|---|---|---|
regionID | 是 | String | 资源池 ID | 81f7728662dd11ec810800155d307d5b | |
sfsType | 是 | String | 类型,hpfs_perf(HPC性能型) | hpfs_perf | |
azName | 否 | String | 多可用区下的可用区名字,4.0资源池必填 | az1 | |
clusterName | 否 | String | 集群名称,若资源池不支持指定集群,则不填此参数 | nm0001 | |
pageNo | 否 | Integer | 列表的分页页码,默认值为1 | 1 | |
pageSize | 否 | Integer | 每页包含的元素个数范围(1-50),默认值为10 | 10 |
响应参数
参数 | 参数类型 | 说明 | 示例 | 下级对象 |
---|---|---|---|---|
statusCode | Integer | 返回状态码(800 为成功,900 为失败) | 800 | |
message | String | 响应描述 | SUCCESS | |
description | String | 响应描述 | 成功 | |
returnObj | Object | 返回对象 | 参考returnObj | |
errorCode | String | 业务细分码,为 product.module.code 三段式码 | sfs.sfsInfo.resourceNotExists | |
error | String | 业务细分码,为product.module.code三段式大驼峰码。 | 参考 通用结果码(大驼峰形式) |
表 returnObj
参数 | 参数类型 | 说明 | 示例 | 下级对象 |
---|---|---|---|---|
baselineList | Array of Objects | 返回的性能基线列表 | 参考 baselineList | |
totalCount | Integer | 某资源池某存储类型下集群总数 | 1 | |
currentCount | Integer | 当前页码下查询回来的集群数 | 10 | |
pageSize | Integer | 每页包含的元素个数范围(1-50),默认值为10 | 10 | |
pageNo | Integer | 列表的分页页码,默认值为1 | 1 |
表 baselineList
参数 | 参数类型 | 说明 | 示例 | 下级对象 |
---|---|---|---|---|
baseline | String | 性能基线(MB/s/TB) | 100 | |
storageType | String | 支持类型,hpfs_perf(HPC性能型) | hpfs_perf | |
azName | String | 多可用区下可用区名称 | az1 | |
clusterNames | Array of Strings | 集群列表 | ["nm0001"] |
枚举参数
无
请求示例
请求url
无
请求头header
无
请求体body
{
"regionID": "81f7728662dd11ec810800155d307d5b",
"sfsType": "hpfs_perf",
"azName": "az1",
"clusterName": "nm0001",
"pageNo": 1,
"pageSize": 10
}
响应示例
{
"returnObj": {
"currentCount": 3,
"totalCount": 3,
"baselineList": [
{
"baseline": "100",
"storageType": "hpfs_perf",
"clusterNames": ["nm0001"],
"azName": "az1"
},
{
"baseline": "200",
"storageType": "hpfs_perf",
"clusterNames": ["nm0001", "hp001"],
"azName": "az1"
},
{
"baseline": "400",
"storageType": "hpfs_perf",
"clusterNames": ["nm0001"],
"azName": "az1"
}
],
"pageSize": 10,
"pageNo": 1
},
"message": "SUCCESS",
"description": "成功",
"statusCode": 800
}
状态码
请参考 状态码
错误码
请参考 错误码