Add volume support for openstack client

fix with dtroyer's comments
rebase
fix with dhellmann's comments
create/list/delete/show/set for volume commands

Change-Id: Id8236685d815dbf73873bab2363d82274a9aa556
This commit is contained in:
Steve Martinelli 2013-03-01 16:36:08 -06:00
parent 8de05536b5
commit 6f9f3165c2
1 changed files with 5 additions and 0 deletions

View File

@ -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',
]
}
)