Add quota v1 support for volume

added dhellmann's suggestions
created entry points in setup.py
added show/set/list quotas for v1 volume

Change-Id: I8ed6a9518007b31cafeaa70a54d5bf54a549195b
This commit is contained in:
Steve Martinelli
2013-03-03 00:42:42 -06:00
parent 287c23ca4b
commit ed809e059a
2 changed files with 116 additions and 0 deletions
openstackclient/volume/v1
setup.py

@@ -147,6 +147,9 @@ setuptools.setup(
'create_type=openstackclient.volume.v1.type:CreateType',
'delete_type=openstackclient.volume.v1.type:DeleteType',
'list_type=openstackclient.volume.v1.type:ListType',
'show_quota=openstackclient.volume.v1.quota:ShowQuota',
'list_quota=openstackclient.volume.v1.quota:ListQuota',
'set_quota=openstackclient.volume.v1.quota:SetQuota',
]
}
)