获取库表空间概况
更新时间:2023-08-22
接口说明
本接口用于获取库表空间概况
请求结构
GET /v{version}/instance/{instanceId}/smartdba/disk/list HTTP/1.1
HOST: rds.bj.baidubce.com
Content-Type: application/json
Authorization: authorization string
请求头域
除公共头域外,无其它特殊头域。
请求参数
参数名称 | 类型 | 是否必选 | 参数位置 | 描述 |
---|---|---|---|---|
version | String | 是 | URL参数 | API版本号 |
instanceId | String | 是 | URL参数 | 实例ID |
返回头域
除公共头域,无其它特殊头域。
返回参数
参数名称 | 类型 | 描述 |
---|---|---|
result | Result | 库表空间概况 |
Result字段数据结构说明
参数名称 | 类型 | 描述 |
---|---|---|
diskInfo | DiskInfo | 库表空间概况 |
DiskInfo字段数据结构说明
参数名称 | 类型 | 描述 |
---|---|---|
grow | Double | 日均增长MB |
useDay | Double | 剩余可用天数 |
diskFree | Double | 剩余空间MB |
diskUse | Double | 已用空间MB |
diskQuota | Double | 套餐大小MB |
请求示例
GET /v1/instance/rds-xXE6pdR1/smartdba/disk/list HTTP/1.1
HOST: rds.bj.baidubce.com
Content-Type: application/json
Authorization: bce-auth-v1/f81d3b34e48048fbb2634dc7882d7e21/2017-11-21T04:17:29Z/3600/host/74c506f68c65e26c633bfa104c863fffac5190fdec1ec24b7c03eb5d67d2e1de
返回示例
{
"result": {
"diskInfo": {
"grow": null,
"useDay": null,
"diskFree": 5.3100937216E10,
"diskUse": 5.86153984E8,
"diskQuota": 5.36870912E10
}
}
}