GET – Collection of StoragePool managed by storage controller
Use the GET method to retrieve the StoragePool collection resource for a server.
Request URL
GET https://<BMC_IPADDR>/redfish/v1/Systems/1/Storage/{StorageId}/StoragePools
Response body
Field | Type | Description | ||
---|---|---|---|---|
Name | String | StoragePoolCollection | ||
Description | String | A collection of storage pools instances. | ||
Members | Array | Items: A reference link of the elements of StoragePools. |
Status code
HTTP Status Code | Error Message ID |
---|---|
500 | InternalError |
Example
The following example JSON response is returned:
{
"@odata.etag": "\"24248091\"",
"@odata.id": "/redfish/v1/Systems/1/Storage/controller_slot8/StoragePools",
"@odata.type": "#StoragePoolCollection.StoragePoolCollection",
"Description": "A collection of StoragePool resource instances.",
"Members": [
{
"@odata.id": "/redfish/v1/Systems/1/Storage/controller_slot8/StoragePools/Pool_8_239"
},
{
"@odata.id": "/redfish/v1/Systems/1/Storage/controller_slot8/StoragePools/Pool_8_238"
}
],
"Members@odata.count": 2,
"Name": "Storage Pool Collection"
}
Give documentation feedback