API Guide

Table Of Contents
Parameters
Type Name Schema
Query
uri
required
string
Responses
HTTP
Code
Description Schema
200
A description of the parents and children of the given element. To
get the complete hierarchy, make subsequent requests for the parent
and children elements. This ensures that large volumes of unwanted
data aren’t fetched from the server, for example when viewing a
large storage view, we don’t want to get the complete hierarchy of
every virtual volume in that view.
StorageMap
Example HTTP response
Response 200
{
Ê "uri" : "/vplex/v2/clusters/cluster-1/devices/device_0",
Ê "parents" : [ "/vplex/v2/clusters/cluster-1/virtual_volumes/virtual_volume_0" ],
Ê "children" : [ "/vplex/v2/clusters/cluster-1/extents/extent_00",
"/vplex/v2/clusters/cluster-1/extents/extent_01" ]
}
3.24. Meta_volume
3.24.1. Create a new MetaVolume
POST /clusters/{cluster_name}/meta_volumes
Parameters
Type Name Description Schema
Header
X-Include-
Object
optional
When passed as part of a POST request, controls
whether the representation of the newly created
object is included in the response. Defaults to
'true' which will include the object in the
response. This header is useful because
refreshing the newly created object is usually
the slowest part of a POST operation.
string
Path
cluster_name
required
The name of the cluster string
78