查询资源池列表
更新时间:2024-12-27
描述
获取指定资源池的详细信息,包括资源池元数据、状态、节点总数、空闲节点数、GPU总数、空闲卡数等
请求结构
GET /api/v1/resourcepools
Host:aihc.bj.baidubce.com
Authorization:authorization string
ContentType: application/json
请求头域
除公共头域外,无其它特殊头域。
请求参数
参数名称 | 类型 | 是否必须 | 参数位置 | 说明 |
---|---|---|---|---|
orderBy | String | 否 | Query 参数 | 集群查询排序字段,可选 [clusterName, clusterID, createdAt],默认值为 clusterAt |
order | String | 否 | Query 参数 | 排序方式,可选 [asc, desc],asc 为升序,desc 为降序,默认值为 desc |
pageNo | Integer | 否 | Query 参数 | 页码,默认值为1 |
pageSize | Integer | 否 | Query 参数 | 单页结果数,默认值为10 |
返回头域
除公共头域,无其它特殊头域。
返回参数
参数名称 | 类型 | 是否必须 | 说明 |
---|---|---|---|
requestId | String | 是 | 请求ID |
result | ResourcePoolListResult | 是 | 请求成功时的响应结果 |
返回示例
{
"requestId": "120007d6-d64a-4056-be3b-e675527ea1f2",
"result": {
"resourcePools": [
{
"metadata": {
"createdAt": "2024-01-24T10:51:44+08:00",
"name": "demo",
"id": "cce-xxxxx",
"updatedAt": "2024-04-18T15:41:21+08:00"
},
"spec": {
"k8sVersion": "1.20.8",
"associatedCpromIDs": [
"cprom-u02v1w7bj3j0b"
],
"associatedPfsID": "pfs-pxE6jz",
"createdBy": "weibingcheng",
"description": "",
"forbidDelete": true,
"region": "bj"
},
"status": {
"gpuCount": {
"total": 1,
"used": 0
},
"nodeCount": {
"total": 6,
"used": 5
},
"phase": "running"
}
},
{
"metadata": {
"createdAt": "2023-05-27T17:06:38+08:00",
"name": "aihc-test",
"uid": "cce-6zwnp4zf",
"updatedAt": "2024-05-15T19:59:18+08:00"
},
"spec": {
"k8sVersion": "1.22.5",
"associatedCpromIDs": null,
"associatedPfsID": "pfs-pxE6jz",
"createdBy": "",
"description": "百舸灰度测试集群-don't delete",
"forbidDelete": true,
"region": "bj"
},
"status": {
"gpuCount": {
"total": 4,
"used": 0
},
"nodeCount": {
"total": 6,
"used": 5
},
"phase": "running"
}
}
],
"totalCount": 9
}
}