HP VAN SDN Controller REST API Guide
7 "core_data_version": 0,
8 "core_data_version_timestamp": "1970-01-01T00:00:00.000Z",
9 "time": "1970-01-01T00:00:00.000Z",
10 "self": true,
11 "status": "active"
12 }
13 }
Response codes
• Normal: OK (200)
• Error: Unauthorized (401), Not Found (404), Service Unavailable (503)
Update the IP address of a non-teamed system
Updating the IP address of a system applies only to a non-teamed system where the system
information being updated is a representation of the system being called, i.e., "self":true. If the
system being updated is teamed and/or is not self, then an error will be returned. This is a partial
update operation.
Sample request
This example updates the IP address of a non-teamed system with the UID of
"adc5e492-957c-4f8c-aa0a-97fa2dac5f23":
PUT /sdn/v2.0/systems/adc5e492-957c-4f8c-aa0a-97fa2dac5f23
The request body contains:
1 {
2 "system": {
3 "ip": "192.168.1.200"
4 }
5 }
Sample response
Updated JSON for the system information of the system that was updated will be returned, for
example:
1 {
2 "system": {
3 "uid": "adc5e492-957c-4f8c-aa0a-97fa2dac5f23",
4 "version": "01.14.00.0000",
5 "ip": "192.168.1.200",
6 "role": "leader",
7 "core_data_version": 8,
8 "core_data_version_timestamp": "2013-08-21T18:17:33.187Z",
9 "time": "2013-08-21T18:17:23.899Z",
10 "status": "active",
11 "self": true
12 }
13 }
Response codes
• Normal: OK (200)
• Error: Unauthorized (401), Not Found (404), Service Unavailable (503)
Systems/{system uid}/action
Backup system
This API is asynchronous.
Systems 33