Storages
List all registered storage back ends
get/v1/storages
Query parameters
limitinteger
Requests a page size of items. Returns a number of items up to a limit value. Use the limit parameter to make an initial limited request and use the ID of the last-seen item from the response as the marker parameter value in a subsequent limited request.
offsetinteger
Used in conjunction with limit to return a slice of items. offset is where to start in the list.
sortstring
Example:sort=name:desc,id:asc
Comma separated list of sort keys and optional sort directions in the form of key:val
vendorstring
vendor(manufacturer) of the storage.
modelstring
model of the storage
namestring
The storage name.
serial_numberstring
The storage serial number.
status'normal' | 'offline' | 'abnormal'
The storage status
Response
Storage backend list available.
Example response
{
"storages": [
{
"name": "EMC-VMAX-123456",
"description": "VMAX storage lab1",
"vendor": "Dell EMC",
"model": "VMAX250F",
"status": "normal",
"serial_number": "0002004355"
}
]
}