summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTakashi NATSUME <natsume.takashi@lab.ntt.co.jp>2018-09-11 03:07:23 +0900
committerTakashi NATSUME <natsume.takashi@lab.ntt.co.jp>2018-09-11 06:27:24 +0000
commitd553b3abcf5434e21df79fc8659fed503f3f8d90 (patch)
tree65f03397fd77d59510dd2859efaf32cd54cf3179
parentef0316415b13ca5376ec406da970fdf0ff40787f (diff)
downloadpython-novaclient-d553b3abcf5434e21df79fc8659fed503f3f8d90.tar.gz
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 (cherry picked from commit b5a4a47977700cb9780c94629b48645612acadb1)
-rw-r--r--doc/source/cli/nova.rst40
1 files changed, 38 insertions, 2 deletions
diff --git a/doc/source/cli/nova.rst b/doc/source/cli/nova.rst
index 41a5b232..af9660aa 100644
--- a/doc/source/cli/nova.rst
+++ b/doc/source/cli/nova.rst
@@ -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