diff options
| author | Jenkins <jenkins@review.openstack.org> | 2017-03-01 19:10:47 +0000 |
|---|---|---|
| committer | Gerrit Code Review <review@openstack.org> | 2017-03-01 19:10:48 +0000 |
| commit | 3ec0bc917906275b0fd3963b4c73e1a2bc98b404 (patch) | |
| tree | 2c116402f8c5622f1ce69217b8f8bdb37df7cf1b /openstackclient/volume | |
| parent | 3816433b53cf6098d062961320e37083451cb9e1 (diff) | |
| parent | 4d5f2c3925068fe49748e05a47c5c9c7e7999b3c (diff) | |
| download | python-openstackclient-3ec0bc917906275b0fd3963b4c73e1a2bc98b404.tar.gz | |
Merge "Add Cinder v3 client support for volumes"
Diffstat (limited to 'openstackclient/volume')
| -rw-r--r-- | openstackclient/volume/client.py | 3 | ||||
| -rw-r--r-- | openstackclient/volume/v3/__init__.py | 0 |
2 files changed, 2 insertions, 1 deletions
diff --git a/openstackclient/volume/client.py b/openstackclient/volume/client.py index ade5a95f..c4b0dfca 100644 --- a/openstackclient/volume/client.py +++ b/openstackclient/volume/client.py @@ -27,7 +27,8 @@ API_VERSION_OPTION = 'os_volume_api_version' API_NAME = "volume" API_VERSIONS = { "1": "cinderclient.v1.client.Client", - "2": "cinderclient.v2.client.Client" + "2": "cinderclient.v2.client.Client", + "3": "cinderclient.v3.client.Client", } diff --git a/openstackclient/volume/v3/__init__.py b/openstackclient/volume/v3/__init__.py new file mode 100644 index 00000000..e69de29b --- /dev/null +++ b/openstackclient/volume/v3/__init__.py |
