summaryrefslogtreecommitdiff
path: root/setup.py
diff options
context:
space:
mode:
authorJenkins <jenkins@review.openstack.org>2013-03-08 19:39:30 +0000
committerGerrit Code Review <review@openstack.org>2013-03-08 19:39:30 +0000
commit6fae83b935d36adc6d2accc4f44e498cef5b9848 (patch)
tree12c876f4d2f9fa12f26402e7dfe7dbe7362da313 /setup.py
parentec91bb617ebe946b36124f600070434cc658c945 (diff)
parentabbbed534d296c6fe1824ee010ead65292cc3a58 (diff)
downloadpython-openstackclient-6fae83b935d36adc6d2accc4f44e498cef5b9848.tar.gz
Merge "Add volume support for openstack client"
Diffstat (limited to 'setup.py')
-rw-r--r--setup.py5
1 files changed, 5 insertions, 0 deletions
diff --git a/setup.py b/setup.py
index e4ea3f93..922d103b 100644
--- a/setup.py
+++ b/setup.py
@@ -156,6 +156,11 @@ setuptools.setup(
'show_quota=openstackclient.volume.v1.quota:ShowQuota',
'list_quota=openstackclient.volume.v1.quota:ListQuota',
'set_quota=openstackclient.volume.v1.quota:SetQuota',
+ 'create_volume=openstackclient.volume.v1.volume:CreateVolume',
+ 'delete_volume=openstackclient.volume.v1.volume:DeleteVolume',
+ 'list_volume=openstackclient.volume.v1.volume:ListVolume',
+ 'set_volume=openstackclient.volume.v1.volume:SetVolume',
+ 'show_volume=openstackclient.volume.v1.volume:ShowVolume',
]
}
)