EMC ViPR REST API

Search (SHIFT+S)

API Reference


Get All Storage Pools

GET /vdc/storage-systems/{id}/storage-pools

Gets all storage pools for the registered storage system with the passed id.

idthe URN of a ViPR storage system.

Required Roles

Requires one of the following roles:

  • SYSTEM_ADMIN
  • SYSTEM_MONITOR

Response Body

A reference to a StoragePooList specifying the id and self link for each storage pool.

Field Description Type Notes
<storage_pools>
<storage_pool>     0-* Elements
<name> The name of the resource String
<id> ViPR ID of the related object URI
<link> A hyperlink to the related object
</storage_pool>      
</storage_pools>

Examples

Request
GET https://192.168.0.0:4443/vdc/storage-systems/urn:storageos:StorageSystem:a1895790-5977-4115-a9f5-b70d033da537:/storage-pools HTTP/1.1  

Content-Type: application/xml
X-SDS-AUTH-TOKEN: <AUTH_TOKEN>
Response
HTTP/1.1 200 OK 
Content-Type: application/xml 

<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<storage_pools>
  <storage_pool>
    <id>urn:storageos:StoragePool:62171f79-2e6d-47db-b303-32c856062c29:</id>
    <link href="/vdc/storage-systems/urn:storageos:StorageSystem:a1895790-5977-4115-a9f5-b70d033da537:/storage-pools/urn:storageos:StoragePool:62171f79-2e6d-47db-b303-32c856062c29:" rel="self"/>
    <name>ISILON+6805ca00ad4426b77a51381b1ff2f2af5a41+POOL+x200_5.5tb_200gb-ssd_6gb</name>
  </storage_pool>
</storage_pools>