diff options
author | Takashi NATSUME <natsume.takashi@lab.ntt.co.jp> | 2019-10-04 12:44:30 +0900 |
---|---|---|
committer | Takashi NATSUME <natsume.takashi@lab.ntt.co.jp> | 2019-10-10 21:28:02 +0000 |
commit | 9a5da9252434b65df5757730e5bc24e3a8f0297a (patch) | |
tree | 8cf4942b28517b8f6959eb110b519fd268eec29f /api-guide/source/down_cells.rst | |
parent | 27818dd607936209d8d73f534d64ba74fb2dd7f0 (diff) | |
download | nova-9a5da9252434b65df5757730e5bc24e3a8f0297a.tar.gz |
api-guide: Fix available info in handling down cells
Add the 'security_groups' parameter as available infomation
in the "List Servers Detailed" API (GET /servers/detail)
when there is a down cell.
Change-Id: I9653a46478c80b343a5a5f8d6b1607688538b1d5
CLoses-Bug: #1846559
Diffstat (limited to 'api-guide/source/down_cells.rst')
-rw-r--r-- | api-guide/source/down_cells.rst | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/api-guide/source/down_cells.rst b/api-guide/source/down_cells.rst index d77ad27312..25da06f8b6 100644 --- a/api-guide/source/down_cells.rst +++ b/api-guide/source/down_cells.rst @@ -68,6 +68,7 @@ behavior are described below: - tenant_id: The tenant_id to which the server belongs to. - created: The time of server creation. - links: Links to the servers in question. + - security_groups: One or more security groups. (Optional) A sample response for a GET /servers/details request that includes one result each from an unreachable and a healthy part of the @@ -79,9 +80,14 @@ behavior are described below: "servers": [ { "created": "2018-06-29T15:07:29Z", + "id": "bcc6c6dd-3d0a-4633-9586-60878fd68edb", "status": "UNKNOWN", "tenant_id": "940f47b984034c7f8f9624ab28f5643c", - "id": "bcc6c6dd-3d0a-4633-9586-60878fd68edb", + "security_groups": [ + { + "name": "default" + } + ], "links": [ { "href": "http://openstack.example.com/v2.1/6f70656e737461636b20342065766572/servers/bcc6c6dd-3d0a-4633-9586-60878fd68edb", |