EMC ECS REST API

Search (SHIFT+S)




Get Virtual Arrays

GET /vdc/data-services/varrays

Gets a list of storage pools from the local VDC.


Query Parameters

vdc-idvirtual data center identifier for which list of storage poold is to be retrieved

Required Roles

Requires one of the following roles:

  • SYSTEM_ADMIN

  • SYSTEM_MONITOR


Response Body

Storage pool details for the given virtual data center identifier

Field Description Type Notes
varrays
varray     0-* Elements
id Storage pool id String
name Storage pool name String
description Description String
isColdStorageEnabled Flag indicating that cold storage encoding is enabled Boolean Valid Values:
  •  True
  •  False
warningAlertAt Threshold percent at which warning alert is raised. Valid values are from -1 to 100. Value of -1 means do not alert Integer
errorAlertAt Threshold percent at which error alert is raised. Valid values are from -1 to 100. Value of -1 means do not alert Integer
criticalAlertAt Threshold percent at which critical alert is raised. Valid values are from -1 to 100. Value of -1 means do not alert Integer

Examples

Request
GET https://192.168.0.0:4443/vdc/data-services/varrays  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"?>
<varrays>
    <varray>
        <id>urn:storageos:VirtualArray:c7fc54dc-6616-4b7e-a86c-0210ef9a8804</id>
        <name>CommodityvPool</name>
        <isProtected>false</isProtected>
        <isColdStorageEnabled>false</isColdStorageEnabled>
    </varray>
</varrays>