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