added generic information

Change-Id: I8fe7ce9ecd476ae32d21b0fb1bb86ef51218839a
This commit is contained in:
Tommy Sauer 2014-05-27 20:06:17 +02:00
parent 8ad6f9cac8
commit 8c18f17c79

View File

@ -1895,6 +1895,40 @@ Host: servers.api.openstack.org/v2/</literallayout>
<?hard-pagebreak?>
<section xml:id="NetworksSection">
<title>Networks</title>
<para>Using the network API you can create, update, delete and
show networks, ports and subnets. A few examples are given below.</para>
<table rules="all" xml:id="NetworkMethods-d1e5091">
<caption>Get all networks</caption>
<thead>
<tr>
<td>Method</td>
<td>URI</td>
<td>Description</td>
</tr>
</thead>
<tbody>
<tr>
<td>GET</td>
<td>/v2.0/networks</td>
<td>Returns an array of all networks</td>
</tr>
<tr>
<td>GET</td>
<td>/v2.0/networks/{network_id}</td>
<td>Return network with given id</td>
</tr>
<tr>
<td>POST</td>
<td>/v2.0/networks</td>
<td>Creates new network</td>
</tr>
<tr>
<td>DELETE</td>
<td>/v2.0/networks/{network_id}</td>
<td>Delete network with given id</td>
</tr>
</tbody>
</table>
<para>You can specify the following attributes for a
network.</para>
<table rules="all" xml:id="NetworkAttributes-d1e5090">