From 4d5f2c3925068fe49748e05a47c5c9c7e7999b3c Mon Sep 17 00:00:00 2001 From: Justin A Wilson Date: Fri, 30 Sep 2016 13:44:26 -0700 Subject: Add Cinder v3 client support for volumes Initial Cinder v3 support Change-Id: Idd5074832e80697ed0671f06d3291dfd92dbfb08 --- openstackclient/volume/client.py | 3 ++- openstackclient/volume/v3/__init__.py | 0 2 files changed, 2 insertions(+), 1 deletion(-) create mode 100644 openstackclient/volume/v3/__init__.py (limited to 'openstackclient/volume') 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 -- cgit v1.2.1