diff options
| author | Steve Martinelli <stevemar@ca.ibm.com> | 2013-03-22 23:36:13 -0500 |
|---|---|---|
| committer | Steve Martinelli <stevemar@ca.ibm.com> | 2013-03-22 23:36:13 -0500 |
| commit | 04af8fa8f1b0654dbb2402ecd8158aff7fc77278 (patch) | |
| tree | ada68b1da345b28862a643826306c724c7250b0c /setup.py | |
| parent | 73fb88e9317f5f2e5270aca4976ffecd06621b0c (diff) | |
| download | python-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.py | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -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', |
