Merge "Mention compute API 2.50 in openstack quota show --class"

This commit is contained in:
Zuul 2019-03-07 23:19:16 +00:00 committed by Gerrit Code Review
commit c305ac2896
2 changed files with 7 additions and 2 deletions

View File

@ -244,7 +244,9 @@ Set quotas for class
quota show
----------
Show quotas for project or class
Show quotas for project or class. Specify ``--os-compute-api-version 2.50`` or
higher to see ``server-groups`` and ``server-group-members`` output for a given
quota class.
.. program:: quota show
.. code:: bash

View File

@ -570,7 +570,10 @@ class SetQuota(command.Command):
class ShowQuota(command.ShowOne, BaseQuota):
_description = _("Show quotas for project or class")
_description = _(
"Show quotas for project or class. Specify "
"``--os-compute-api-version 2.50`` or higher to see ``server-groups`` "
"and ``server-group-members`` output for a given quota class.")
def get_parser(self, prog_name):
parser = super(ShowQuota, self).get_parser(prog_name)