cinder/api-ref/source/v3/group-replication.inc
whoami-rajat 609412fcd2 Improve/Clean api-ref parameters
The parameters with name like example_1, example_2 ... etc. cause
confusion while updating the api-ref docs like the examples below:

https://review.openstack.org/#/c/609639/
https://review.openstack.org/#/c/609611/

This patch does the following changes :
1) Replace numbering in the parameter with relevant names
2) Clean up unused parameters

Change-Id: I35b343bf068281d729576e5ecc209bda60c28680
2018-11-05 10:47:14 +05:30

161 lines
2.6 KiB
ReStructuredText

.. -*- rst -*-
Group replication
=================
Lists targets, enables, disables, and fails over group replication.
Available since API microversion 3.38.
List replication targets
~~~~~~~~~~~~~~~~~~~~~~~~
.. rest_method:: POST /v3/{project_id}/groups/{group_id}/action
Lists replication targets for a group.
Response codes
--------------
.. rest_status_code:: success ../status.yaml
- 202
.. rest_status_code:: error ../status.yaml
- 400
- 404
Request
-------
.. rest_parameters:: parameters.yaml
- project_id: project_id_path
- group_id: group_id_path
Request Example
---------------
.. literalinclude:: ./samples/group-replication-list-targets.json
:language: javascript
Response Parameters
-------------------
.. rest_parameters:: parameters.yaml
- backend_id: backend_id_target
- unique_key: replication_targets_unique_key
Response Example
----------------
.. literalinclude:: ./samples/group-replication-target.json
:language: javascript
Enable group replication
~~~~~~~~~~~~~~~~~~~~~~~~
.. rest_method:: POST /v3/{project_id}/groups/{group_id}/action
Enable replication for a group.
Response codes
--------------
.. rest_status_code:: success ../status.yaml
- 202
.. rest_status_code:: error ../status.yaml
- 400
- 404
Request
-------
.. rest_parameters:: parameters.yaml
- project_id: project_id_path
- group_id: group_id_path
Request Example
---------------
.. literalinclude:: ./samples/group-replication-enable.json
:language: javascript
Disable group replication
~~~~~~~~~~~~~~~~~~~~~~~~~
.. rest_method:: POST /v3/{project_id}/groups/{group_id}/action
Disable replication for a group.
Response codes
--------------
.. rest_status_code:: success ../status.yaml
- 202
.. rest_status_code:: error ../status.yaml
- 400
- 404
Request
-------
.. rest_parameters:: parameters.yaml
- project_id: project_id_path
- group_id: group_id_path
Request Example
---------------
.. literalinclude:: ./samples/group-replication-disable.json
:language: javascript
Failover replication
~~~~~~~~~~~~~~~~~~~~
.. rest_method:: POST /v3/{project_id}/groups/{group_id}/action
Failover a replicated group.
Response codes
--------------
.. rest_status_code:: success ../status.yaml
- 202
.. rest_status_code:: error ../status.yaml
- 400
- 404
Request
-------
.. rest_parameters:: parameters.yaml
- project_id: project_id_path
- group_id: group_id_path
- allow_attached_volume: allow_attached_volume
- secondary_backend_id: backend_id_target
Request Example
---------------
.. literalinclude:: ./samples/group-replication-failover.json
:language: javascript