The consistencygroups api.
Bases: cinder.api.openstack.wsgi.Controller
The ConsistencyGroups API controller for the OpenStack API.
Create a new consistency group.
Create a new consistency group from a source.
The source can be a CG snapshot or a CG. Note that this does not require volume_types as the “create” API above.
Delete a consistency group.
Returns a detailed list of consistency groups.
Returns a summary list of consistency groups.
Return data about the given consistency group.
Update the consistency group.
Expected format of the input parameter ‘body’:
{
"consistencygroup":
{
"name": "my_cg",
"description": "My consistency group",
"add_volumes": "volume-uuid-1,volume-uuid-2,...",
"remove_volumes": "volume-uuid-8,volume-uuid-9,..."
}
}