diff options
| author | Jenkins <jenkins@review.openstack.org> | 2015-05-31 05:17:38 +0000 |
|---|---|---|
| committer | Gerrit Code Review <review@openstack.org> | 2015-05-31 05:17:38 +0000 |
| commit | c4bc05b94509045165de70bda1a1f312b796b53b (patch) | |
| tree | 06b54f1445cce63dd5473af04b90647a6fffc7fc /openstackclient/volume/client.py | |
| parent | d14316a8322e58d6ff208ffd6fabdb4890b412f8 (diff) | |
| parent | 5361652d8f0a90b5a2ef296a9fb718ac3d397ea9 (diff) | |
| download | python-openstackclient-c4bc05b94509045165de70bda1a1f312b796b53b.tar.gz | |
Merge "Add support for volume v2 API"
Diffstat (limited to 'openstackclient/volume/client.py')
| -rw-r--r-- | openstackclient/volume/client.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/openstackclient/volume/client.py b/openstackclient/volume/client.py index a7b64def..1038c407 100644 --- a/openstackclient/volume/client.py +++ b/openstackclient/volume/client.py @@ -23,7 +23,8 @@ DEFAULT_VOLUME_API_VERSION = '1' API_VERSION_OPTION = 'os_volume_api_version' API_NAME = "volume" API_VERSIONS = { - "1": "cinderclient.v1.client.Client" + "1": "cinderclient.v1.client.Client", + "2": "cinderclient.v2.client.Client" } |
