From 04af8fa8f1b0654dbb2402ecd8158aff7fc77278 Mon Sep 17 00:00:00 2001 From: Steve Martinelli Date: Fri, 22 Mar 2013 23:36:13 -0500 Subject: 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 --- setup.py | 1 + 1 file changed, 1 insertion(+) (limited to 'setup.py') 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', -- cgit v1.2.1