Add servers/ips api_samples tests

Change-Id: I65f8b53b4126458e1522f0bc47559dc1318a473a
This commit is contained in:
Dan Smith 2012-09-25 09:40:46 -07:00
parent 187208165e
commit fb336147de
4 changed files with 28 additions and 0 deletions

View File

@ -0,0 +1,8 @@
{
"private": [
{
"addr": "192.168.0.3",
"version": 4
}
]
}

View File

@ -0,0 +1,4 @@
<?xml version='1.0' encoding='UTF-8'?>
<network xmlns="http://docs.openstack.org/compute/api/v1.1" id="private">
<ip version="4" addr="192.168.0.3"/>
</network>

View File

@ -0,0 +1,10 @@
{
"addresses": {
"private": [
{
"addr": "192.168.0.3",
"version": 4
}
]
}
}

View File

@ -0,0 +1,6 @@
<?xml version='1.0' encoding='UTF-8'?>
<addresses xmlns="http://docs.openstack.org/compute/api/v1.1">
<network id="private">
<ip version="4" addr="192.168.0.3"/>
</network>
</addresses>