diff options
author | TommyLike <tommylikehu@gmail.com> | 2017-07-31 19:30:50 +0800 |
---|---|---|
committer | TommyLike <tommylikehu@gmail.com> | 2017-07-31 19:30:50 +0800 |
commit | fba4164637608199672d1700cec8a416fdbfd90b (patch) | |
tree | 884b109e9c7f074e7455782349e7db8c12f94a79 /cinderclient/shell_utils.py | |
parent | 130397a12870c6c9495c0da477b93b59ba628dbb (diff) | |
download | python-cinderclient-fba4164637608199672d1700cec8a416fdbfd90b.tar.gz |
Added missing column 'Allocated'
Added missing column 'Allocated' for
quota usage command.
Change-Id: Ic2656e2f849e834c7a576b0462d6e8a399a95006
Diffstat (limited to 'cinderclient/shell_utils.py')
-rw-r--r-- | cinderclient/shell_utils.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cinderclient/shell_utils.py b/cinderclient/shell_utils.py index e01b0cf..996f6e1 100644 --- a/cinderclient/shell_utils.py +++ b/cinderclient/shell_utils.py @@ -23,7 +23,7 @@ from cinderclient import exceptions _quota_resources = ['volumes', 'snapshots', 'gigabytes', 'backups', 'backup_gigabytes', 'per_volume_gigabytes', 'groups', ] -_quota_infos = ['Type', 'In_use', 'Reserved', 'Limit'] +_quota_infos = ['Type', 'In_use', 'Reserved', 'Limit', 'Allocated'] def print_volume_image(image): |