[DOC BLD FIX] Add code:: blocks to manager.py

There were a few blocks of code in the dosctrings for
manager.py that needed to be indicated as code blocks
to avoid Sphinx build warnings.  This patch adds
those sections.

Change-Id: I833b5233edbbd811878a2b42b1e0aadb6cc9161a
This commit is contained in:
Jay S. Bryant 2017-07-26 14:38:15 -05:00
parent 5134cf1361
commit f46e83ff68
1 changed files with 34 additions and 24 deletions

View File

@ -1620,6 +1620,8 @@ class VolumeManager(manager.CleanableManager,
information about the host that will connect to the volume in the
following format::
.. code:: json
{
'ip': ip,
'initiator': initiator,
@ -1634,6 +1636,8 @@ class VolumeManager(manager.CleanableManager,
driver is responsible for doing any necessary security setup and
returning a connection_info dictionary in the following format::
.. code:: json
{
'driver_volume_type': driver_volume_type,
'data': data,
@ -4753,32 +4757,38 @@ class VolumeManager(manager.CleanableManager,
info. 'backend_id' is a required key in 'replication_device'.
Response Example for admin:
{
'replication_targets': [
{
'backend_id': 'vendor-id-1',
'unique_key': 'val1',
......
},
{
'backend_id': 'vendor-id-2',
'unique_key': 'val2',
......
}
]
}
.. code:: json
{
'replication_targets': [
{
'backend_id': 'vendor-id-1',
'unique_key': 'val1',
......
},
{
'backend_id': 'vendor-id-2',
'unique_key': 'val2',
......
}
]
}
Response example for non-admin:
{
'replication_targets': [
{
'backend_id': 'vendor-id-1'
},
{
'backend_id': 'vendor-id-2'
}
]
}
.. code json
{
'replication_targets': [
{
'backend_id': 'vendor-id-1'
},
{
'backend_id': 'vendor-id-2'
}
]
}
"""