GET – 由存储控制器管理的 StoragePool
使用 GET 方法检索服务器的 StoragePool 资源。
请求 URL
GET https://<BMC_IPADDR>/redfish/v1/Systems/1/Storage/Id/StoragePools/{StoragePoolId}
响应正文
字段 | 类型 | 描述 | ||
---|---|---|---|---|
Id | 字符串 | 卷 ID | ||
Name | 字符串 | 卷信息名称 | ||
Description | 字符串 | “This resource is used to represent StoragePool in Redfish implementation.” | ||
AllocatedVolumes | 链接 | 从此存储池分配的卷集合的引用。 | ||
Capacity | 对象 | 容量利用率。 | ||
Data | 对象 | 与用户数据相关的容量信息。 | ||
AllocatedBytes | 整数 | 存储系统当前在此数据存储中为此数据类型分配的字节数。 | ||
ConsumedBytes | 整数 | 此数据类型在此数据存储中占用的字节数。 | ||
Metadata | 对象 | 与元数据相关的容量信息。 | ||
Snapshot | 对象 | 与快照或备份数据相关的容量信息。 | ||
CapacitySources | 数组 | 此存储的空间分配数组。 | ||
CapacitySources[N] | 对象 | 此存储的空间分配的每个元素。 | ||
Id | 字符串 | CapacitySource 的资源 ID。 | ||
Name | 字符串 | CapacitySource 的资源名称。 | ||
Description | 字符串 | 此 CapacitySource 的描述。 | ||
ProvidingDrives | 链接 | 提供此空间的一个或多个硬盘。 | ||
Status | 对象 | 此存储池的状态。 | ||
State | 字符串 | 此存储池的状态。 | ||
SupportedRAIDTypes | 数组 | 存储池支持的 RAID 类型集合。 |
状态代码
HTTP 状态代码 | 错误消息 ID |
---|---|
500 | InternalError |
示例
返回以下示例 JSON 响应:
{
"Capacity": {
"Metadata": {},
"Snapshot": {},
"Data": {
"AllocatedBytes": 298999349248,
"ConsumedBytes": 298999349248
}
},
"Description": "The resource is used to represent a storage pool for a Redfish implementation.",
"Name": "Pool_1_1",
"@odata.etag": "\"7a4f29555d192af3bb5\"",
"CapacitySources": [
{
"Id": "1",
"Name": "CapacitySources_1",
"@odata.type": "#Capacity.v1_1_3.CapacitySource",
"@odata.id": "/redfish/v1/Systems/1/Storage/RAID_Slot14/StoragePools/Pool_1_1/CapacitySources/1",
"ProvidingDrives": {
"@odata.id": "/redfish/v1/Systems/1/Storage/RAID_Slot14/StoragePools/Pool_1_1/CapacitySources/1/ProvidingDrives"
},
"Description": "The resource is used to represent a capacity for a Redfish implementation.",
"@odata.etag": "\"31dd7e507e4725a6be5\""
}
],
"Id": "Pool_1_1",
"AllocatedVolumes": {
"@odata.id": "/redfish/v1/Systems/1/Storage/RAID_Slot14/StoragePools/Pool_1_1/AllocatedVolumes"
},
"Status": {
"State": "Enabled"
},
"SupportedRAIDTypes": [
"RAID1"
],
"@odata.id": "/redfish/v1/Systems/1/Storage/RAID_Slot14/StoragePools/Pool_1_1",
"CapacitySources@odata.count": 1,
"@odata.type": "#StoragePool.v1_5_0.StoragePool"
}
提供反馈