summaryrefslogtreecommitdiff
path: root/setup.py
diff options
context:
space:
mode:
authorSteve Martinelli <stevemar@ca.ibm.com>2013-03-22 23:36:13 -0500
committerSteve Martinelli <stevemar@ca.ibm.com>2013-03-22 23:36:13 -0500
commit04af8fa8f1b0654dbb2402ecd8158aff7fc77278 (patch)
treeada68b1da345b28862a643826306c724c7250b0c /setup.py
parent73fb88e9317f5f2e5270aca4976ffecd06621b0c (diff)
downloadpython-openstackclient-04af8fa8f1b0654dbb2402ecd8158aff7fc77278.tar.gz
Add metadata support for volume
Now able to pass metadata to the create method, as well as update it with set, and remove it with unset. I'm currently passing it as an optional param like the following: --meta-data=key1=value1 which seems weird, what about --meta-data=key1:value1 I'd have to update type too if that is the case. Change-Id: I0fc8398768da015c1f53c5c564c68a2cfb53e778
Diffstat (limited to 'setup.py')
-rw-r--r--setup.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/setup.py b/setup.py
index 336c7898..f3b7deb6 100644
--- a/setup.py
+++ b/setup.py
@@ -225,6 +225,7 @@ setuptools.setup(
'list_volume=openstackclient.volume.v1.volume:ListVolume',
'set_volume=openstackclient.volume.v1.volume:SetVolume',
'show_volume=openstackclient.volume.v1.volume:ShowVolume',
+ 'unset_volume=openstackclient.volume.v1.volume:UnsetVolume',
'create_volume-type='
'openstackclient.volume.v1.type:CreateVolumeType',