Merge "Add os-detach to api-ref"

This commit is contained in:
Jenkins 2016-09-19 16:58:59 +00:00 committed by Gerrit Code Review
commit beea718b7a
3 changed files with 51 additions and 0 deletions

View File

@ -1007,6 +1007,12 @@ os-attach:
in: body
required: true
type: object
os-detach:
description: |
The ``os-detach`` action.
in: body
required: true
type: object
os-extend:
description: |
The ``os-extend`` action.

View File

@ -0,0 +1,6 @@
{
"os-detach": {
"attachment_id": "d8777f54-84cf-4809-a679-468ffed56cf1"
}
}

View File

@ -196,6 +196,45 @@ Request Example
Detach volume from a server
===========================
.. rest_method:: POST /v2/{tenant_id}/volumes/{volume_id}/action
Detaches a volume from a server. Specify the ``os-detach`` action in the request body.
Preconditions
- Volume status must be ``in-use``.
Normal response codes: 202,
Request
-------
.. rest_parameters:: parameters.yaml
- attachment_id: attachment_id
- os-detach: os-detach
- tenant_id: tenant_id
- volume_id_1: volume_id
Request Example
---------------
.. literalinclude:: ./samples/volume-detach-request.json
:language: javascript
Unmanage volume
===============