Merge "[Doc] Fix parameters in share network api-ref"

This commit is contained in:
Zuul 2017-11-13 00:29:20 +00:00 committed by Gerrit Code Review
commit 3f85754e0a
3 changed files with 21 additions and 10 deletions

View File

@ -1854,10 +1854,10 @@ neutron_net_id:
in: body in: body
required: true required: true
type: string type: string
neutron_net_id_1: neutron_net_id_request:
description: | description: |
The UUID of a neutron network when setting up a share network The UUID of a neutron network when setting up or updating a share
with neutron. Specify both a neutron network and a neutron network with neutron. Specify both a neutron network and a neutron
subnet that belongs to that neutron network. subnet that belongs to that neutron network.
in: body in: body
required: false required: false
@ -1868,10 +1868,10 @@ neutron_subnet_id:
in: body in: body
required: true required: true
type: string type: string
neutron_subnet_id_1: neutron_subnet_id_request:
description: | description: |
The UUID of the neutron subnet when setting up a share network The UUID of the neutron subnet when setting up or updating a share
with neutron. Specify both a neutron network and a neutron network with neutron. Specify both a neutron network and a neutron
subnet that belongs to that neutron network. subnet that belongs to that neutron network.
in: body in: body
required: false required: false
@ -2746,6 +2746,12 @@ share_network_description:
in: body in: body
required: true required: true
type: string type: string
share_network_description_request:
description: |
The share network description.
in: body
required: false
type: string
share_network_id: share_network_id:
description: | description: |
The share network ID. The share network ID.

View File

@ -1,5 +1,8 @@
{ {
"share_network": { "share_network": {
"neutron_net_id": "998b42ee-2cee-4d36-8b95-67b5ca1f2109",
"neutron_subnet_id": "53482b62-2c84-4a53-b6ab-30d9d9800d06",
"name": "update my network",
"description": "i'm adding a description" "description": "i'm adding a description"
} }
} }

View File

@ -178,10 +178,10 @@ Request
.. rest_parameters:: parameters.yaml .. rest_parameters:: parameters.yaml
- tenant_id: tenant_id_path - tenant_id: tenant_id_path
- neutron_net_id: neutron_net_id_1 - neutron_net_id: neutron_net_id_request
- neutron_subnet_id: neutron_subnet_id_1 - neutron_subnet_id: neutron_subnet_id_request
- name: share_network_name_request - name: share_network_name_request
- description: share_network_description - description: share_network_description_request
Request example Request example
--------------- ---------------
@ -341,7 +341,9 @@ Request
- tenant_id: tenant_id_path - tenant_id: tenant_id_path
- share_network_id: share_network_id_path - share_network_id: share_network_id_path
- name: share_network_name_request - name: share_network_name_request
- description: share_network_description - description: share_network_description_request
- neutron_net_id: neutron_net_id_request
- neutron_subnet_id: neutron_subnet_id_request
Request example Request example
--------------- ---------------