Add missing options in CLI reference

Add the following missing options in the CLI reference.

* nova instance-action-list
  - marker
  - limit
  - changes-since

* nova migration-list
  - marker
  - limit
  - changes-since

Change-Id: Ib4ce831a5031459d350fa73601e878e7b319640f
Closes-Bug: #1791125
This commit is contained in:
Takashi NATSUME 2018-09-11 03:07:23 +09:00
parent c2d0fb7098
commit b5a4a47977
1 changed files with 38 additions and 2 deletions

View File

@ -1921,7 +1921,9 @@ nova instance-action-list
.. code-block:: console
usage: nova instance-action-list <server>
usage: nova instance-action-list [--marker <marker>] [--limit <limit>]
[--changes-since <changes_since>]
<server>
List actions on a server.
@ -1932,6 +1934,23 @@ List actions on a server.
used to list actions on a deleted server. (Supported by API
versions '2.21' - '2.latest')
**Optional arguments:**
``--marker <marker>``
The last instance action of the previous page; displays list of actions
after "marker". (Supported by API versions '2.58' - '2.latest')
``--limit <limit>``
Maximum number of instance actions to display. Note that there is
a configurable max limit on the server, and the limit that is used will be
the minimum between what is requested here and what is configured
in the server. (Supported by API versions '2.58' - '2.latest')
``--changes-since <changes_since>``
List only instance actions changed after a certain point of time.
The provided time should be an ISO 8061 formatted time.
ex 2016-03-04T06:27:59Z. (Supported by API versions '2.58' - '2.latest')
.. _nova_interface-attach:
nova interface-attach
@ -2422,7 +2441,8 @@ nova migration-list
.. code-block:: console
usage: nova migration-list [--instance-uuid <instance_uuid>] [--host <host>]
[--status <status>]
[--status <status>] [--marker <marker>]
[--limit <limit>] [--changes-since <changes_since>]
Print a list of migrations.
@ -2437,6 +2457,22 @@ Print a list of migrations.
``--status <status>``
Fetch migrations for the given status.
``--marker <marker>``
The last migration of the previous page; displays list of migrations after
"marker". Note that the marker is the migration UUID.
(Supported by API versions '2.59' - '2.latest')
``--limit <limit>``
Maximum number of migrations to display. Note that there is a configurable
max limit on the server, and the limit that is used will be the minimum
between what is requested here and what is configured in the server.
(Supported by API versions '2.59' - '2.latest')
``--changes-since <changes_since>``
List only migrations changed after a certain point of time.
The provided time should be an ISO 8061 formatted time.
ex 2016-03-04T06:27:59Z . (Supported by API versions '2.59' - '2.latest')
.. _nova_pause:
nova pause