64bf8da977
In the "List Migrations" (GET /os-migrations) API, there are the following response body examples. * Example List Migrations: JSON response * Example List Migrations (v2.59) * Example List Migrations With Paging (v2.59) In the second and third examples, the 'instance_uuid' are UUID strings. But in the first one, the 'instance_uuid' is not UUID. It should be a UUID string. So replace non UUID string with a UUID string in the example. Change-Id: I6c29c48f53838beb7da3ec0f849380e3706df422
32 lines
1.0 KiB
JSON
32 lines
1.0 KiB
JSON
{
|
|
"migrations": [
|
|
{
|
|
"created_at": "2012-10-29T13:42:02.000000",
|
|
"dest_compute": "compute2",
|
|
"dest_host": "1.2.3.4",
|
|
"dest_node": "node2",
|
|
"id": 1234,
|
|
"instance_uuid": "8600d31b-d1a1-4632-b2ff-45c2be1a70ff",
|
|
"new_instance_type_id": 2,
|
|
"old_instance_type_id": 1,
|
|
"source_compute": "compute1",
|
|
"source_node": "node1",
|
|
"status": "done",
|
|
"updated_at": "2012-10-29T13:42:02.000000"
|
|
},
|
|
{
|
|
"created_at": "2013-10-22T13:42:02.000000",
|
|
"dest_compute": "compute20",
|
|
"dest_host": "5.6.7.8",
|
|
"dest_node": "node20",
|
|
"id": 5678,
|
|
"instance_uuid": "9128d044-7b61-403e-b766-7547076ff6c1",
|
|
"new_instance_type_id": 6,
|
|
"old_instance_type_id": 5,
|
|
"source_compute": "compute10",
|
|
"source_node": "node10",
|
|
"status": "done",
|
|
"updated_at": "2013-10-22T13:42:02.000000"
|
|
}
|
|
]
|
|
} |