blob: b8cdf6f7e192a0b3b3e7e14a944bf55ec978d9ab (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
{
"request": {
"uri": "/api/resmgr/v1/hosts",
"method": "put",
"headers": {
"Content-Type": "application/json;charset=UTF-8"
},
"json": {
"id":"12345678",
"name": "hostName",
"cpu": "20",
"memory": "8",
"disk": "100",
"vimId": "123",
"vimName": "456"
}
},
"response": {
"status": 200,
"json": {
"msg": "org.openo.nfvo.resmanage.common.update.success"
}
}
}
|