cinder/releasenotes/notes/improvement-to-get-group-detail-0e8b68114e79a8a2.yaml
wangxiyuan 5e0393b26d Improvement to get group detail(Part 2)
This feature allows users to query group details
with volume ids which are in this group.

According to the spec, this is part 2 to implement the whole bp.
This patch add the "volumes" field to group detail and group
show if user specifies the querying argument 'list_volume=True'.

This change will add a new version "3.25".

APIImpact
GET /v3/{project_id}/groups/{group_id}?list_volume=True
RESP BODY: {"group": {"status": "XXX",
                      "id": "XXX",
                      ...,
                      "volumes":['volume_id1',
                                 ...,
                                 'volume_idn']
                     }
           }

Co-Authored-By: wanghao<sxmatch1986@gmail.com>
Change-Id: Ica1afd07cd022bab168b6894b9cf43a5b18e34d4
Implements: blueprint improvement-to-query-consistency-group-detail
2017-01-16 22:54:47 +08:00

6 lines
159 B
YAML

---
features:
- Added support for querying group details with volume ids
which are in this group.
For example, "groups/{group_id}?list_volume=True".