Merge "Fix really long help strings"
This commit is contained in:
@@ -749,12 +749,10 @@ class SetQuota(common.NetDetectionMixin, command.Command):
|
|||||||
|
|
||||||
|
|
||||||
class ShowQuota(command.Lister):
|
class ShowQuota(command.Lister):
|
||||||
_description = _(
|
_description = _("""Show quotas for project or class.
|
||||||
"Show quotas for project or class. "
|
|
||||||
"Specify ``--os-compute-api-version 2.50`` or higher to see "
|
Specify ``--os-compute-api-version 2.50`` or higher to see ``server-groups``
|
||||||
"``server-groups`` and ``server-group-members`` output for a given "
|
and ``server-group-members`` output for a given quota class.""")
|
||||||
"quota class."
|
|
||||||
)
|
|
||||||
|
|
||||||
def get_parser(self, prog_name):
|
def get_parser(self, prog_name):
|
||||||
parser = super().get_parser(prog_name)
|
parser = super().get_parser(prog_name)
|
||||||
|
@@ -608,10 +608,10 @@ class AddServerSecurityGroup(command.Command):
|
|||||||
|
|
||||||
|
|
||||||
class AddServerVolume(command.ShowOne):
|
class AddServerVolume(command.ShowOne):
|
||||||
_description = _(
|
_description = _("""Add volume to server.
|
||||||
"Add volume to server. "
|
|
||||||
"Specify ``--os-compute-api-version 2.20`` or higher to add a volume "
|
Specify ``--os-compute-api-version 2.20`` or higher to add a volume to a server
|
||||||
"to a server with status ``SHELVED`` or ``SHELVED_OFFLOADED``.")
|
with status ``SHELVED`` or ``SHELVED_OFFLOADED``.""")
|
||||||
|
|
||||||
def get_parser(self, prog_name):
|
def get_parser(self, prog_name):
|
||||||
parser = super(AddServerVolume, self).get_parser(prog_name)
|
parser = super(AddServerVolume, self).get_parser(prog_name)
|
||||||
@@ -3757,11 +3757,10 @@ class RemoveServerSecurityGroup(command.Command):
|
|||||||
|
|
||||||
|
|
||||||
class RemoveServerVolume(command.Command):
|
class RemoveServerVolume(command.Command):
|
||||||
_description = _(
|
_description = _("""Remove volume from server.
|
||||||
"Remove volume from server. "
|
|
||||||
"Specify ``--os-compute-api-version 2.20`` or higher to remove a "
|
Specify ``--os-compute-api-version 2.20`` or higher to remove a
|
||||||
"volume from a server with status ``SHELVED`` or "
|
volume from a server with status ``SHELVED`` or ``SHELVED_OFFLOADED``.""")
|
||||||
"``SHELVED_OFFLOADED``.")
|
|
||||||
|
|
||||||
def get_parser(self, prog_name):
|
def get_parser(self, prog_name):
|
||||||
parser = super(RemoveServerVolume, self).get_parser(prog_name)
|
parser = super(RemoveServerVolume, self).get_parser(prog_name)
|
||||||
@@ -3798,11 +3797,10 @@ class RemoveServerVolume(command.Command):
|
|||||||
|
|
||||||
|
|
||||||
class RescueServer(command.Command):
|
class RescueServer(command.Command):
|
||||||
_description = _(
|
_description = _("""Put server in rescue mode.
|
||||||
"Put server in rescue mode. "
|
|
||||||
"Specify ``--os-compute-api-version 2.87`` or higher to rescue a "
|
Specify ``--os-compute-api-version 2.87`` or higher to rescue a
|
||||||
"server booted from a volume."
|
server booted from a volume.""")
|
||||||
)
|
|
||||||
|
|
||||||
def get_parser(self, prog_name):
|
def get_parser(self, prog_name):
|
||||||
parser = super(RescueServer, self).get_parser(prog_name)
|
parser = super(RescueServer, self).get_parser(prog_name)
|
||||||
@@ -4342,10 +4340,10 @@ class ShelveServer(command.Command):
|
|||||||
|
|
||||||
|
|
||||||
class ShowServer(command.ShowOne):
|
class ShowServer(command.ShowOne):
|
||||||
_description = _(
|
_description = _("""Show server details.
|
||||||
"Show server details. Specify ``--os-compute-api-version 2.47`` "
|
|
||||||
"or higher to see the embedded flavor information for the server."
|
Specify ``--os-compute-api-version 2.47`` or higher to see the embedded flavor
|
||||||
)
|
information for the server.""")
|
||||||
|
|
||||||
def get_parser(self, prog_name):
|
def get_parser(self, prog_name):
|
||||||
parser = super(ShowServer, self).get_parser(prog_name)
|
parser = super(ShowServer, self).get_parser(prog_name)
|
||||||
|
@@ -71,11 +71,11 @@ class DeleteService(command.Command):
|
|||||||
|
|
||||||
|
|
||||||
class ListService(command.Lister):
|
class ListService(command.Lister):
|
||||||
_description = _("List compute services. Using "
|
_description = _("""List compute services.
|
||||||
"``--os-compute-api-version`` 2.53 or greater will "
|
|
||||||
"return the ID as a UUID value which can be used to "
|
Using ``--os-compute-api-version`` 2.53 or greater will return the ID as a UUID
|
||||||
"uniquely identify the service in a multi-cell "
|
value which can be used to uniquely identify the service in a multi-cell
|
||||||
"deployment.")
|
deployment.""")
|
||||||
|
|
||||||
def get_parser(self, prog_name):
|
def get_parser(self, prog_name):
|
||||||
parser = super(ListService, self).get_parser(prog_name)
|
parser = super(ListService, self).get_parser(prog_name)
|
||||||
|
@@ -26,9 +26,10 @@ LOG = logging.getLogger(__name__)
|
|||||||
|
|
||||||
|
|
||||||
class ExportBackupRecord(command.ShowOne):
|
class ExportBackupRecord(command.ShowOne):
|
||||||
_description = _('Export volume backup details. Backup information can be '
|
_description = _("""Export volume backup details.
|
||||||
'imported into a new service instance to be able to '
|
|
||||||
'restore.')
|
Backup information can be imported into a new service instance to be able to
|
||||||
|
restore.""")
|
||||||
|
|
||||||
def get_parser(self, prog_name):
|
def get_parser(self, prog_name):
|
||||||
parser = super(ExportBackupRecord, self).get_parser(prog_name)
|
parser = super(ExportBackupRecord, self).get_parser(prog_name)
|
||||||
@@ -54,9 +55,10 @@ class ExportBackupRecord(command.ShowOne):
|
|||||||
|
|
||||||
|
|
||||||
class ImportBackupRecord(command.ShowOne):
|
class ImportBackupRecord(command.ShowOne):
|
||||||
_description = _('Import volume backup details. Exported backup details '
|
_description = _("""Import volume backup details.
|
||||||
'contain the metadata necessary to restore to a new or '
|
|
||||||
'rebuilt service instance')
|
Exported backup details contain the metadata necessary to restore to a new or
|
||||||
|
rebuilt service instance""")
|
||||||
|
|
||||||
def get_parser(self, prog_name):
|
def get_parser(self, prog_name):
|
||||||
parser = super(ImportBackupRecord, self).get_parser(prog_name)
|
parser = super(ImportBackupRecord, self).get_parser(prog_name)
|
||||||
|
Reference in New Issue
Block a user