11.4. 方法
11.4.1. 创建网络资源
创建新网络需要
name
和 datacenter
项。
例 11.3. 创建一个网络资源
POST /api/networks HTTP/1.1 Accept: application/xml Content-type: application/xml <network> <name>network 1</name> <data_center id="00000000-0000-0000-0000-000000000000"/> </network>
11.4.2. 更新网络资源
在创建完成后,
name
、description
、ip
、vlan
、stp
和 display
项可以被修改。
例 11.4. 更新网络资源
PUT /api/networks/00000000-0000-0000-0000-000000000000 HTTP/1.1 Accept: application/xml Content-type: application/xml <network> <description>Network 1</description> </network>
11.4.3. 删除网络资源
删除网络需要一个
DELETE
请求。
例 11.5. 删除一个网络
DELETE /api/networks/00000000-0000-0000-0000-000000000000 HTTP/1.1 HTTP/1.1 204 No Content