API Guide

Table Of Contents
HTTP
Code
Description Schema
204
Created
Headers :
Location (string) : URI of created ConsistencyGroup.
No Content
Example HTTP response
Response 201
{
Ê "name" : "Test_CG",
Ê "operational_status" : [ {
Ê "cluster" : "/vplex/v2/clusters/cluster-1",
Ê "summary" : "ok",
Ê "details" : [ ]
Ê } ],
Ê "read_only" : false,
Ê "virtual_volumes" : [ "/vplex/v2/clusters/virtual_volumes/vvol1",
"/vplex/v2/clusters/virtual_volumes/vvol2" ]
}
3.7.2. Returns a list of ConsistencyGroups
GET /clusters/{cluster_name}/consistency_groups
Parameters
Type Name Description Schema
Path
cluster_name
required
The name of the cluster string
Query
fields
optional
Select which fields are included in the response.
'name' is always included. See
FieldSelectionExpression for details.
string
(FieldSelectionExpre
ssion)
Query
limit
optional
<p>Maximum number of elements to include in
paginated results.<br> <b>'offset' must also be
specified.<b>
integer (int32)
Query
name
optional
Filter results by name. See
LexicalQueryExpression for details.
string
(LexicalQueryExpres
sion)
Query
offset
optional
Index of the first element to include in paginated
results.<br> <b>'limit' must also be
specified.</b>
integer (int32)
16