nova/releasenotes/notes/bp-add-pagination-for-os-migrations-2f8d5d257b0c5658.yaml
Kevin_Zheng 92a0fc0b9f Add pagination and Changes-since filter support for os-migrations.
This patch adds pagination support and changes-since filter
for os-migrations API.

Users can now use 'limit' and 'marker' to perform paginate
query of running migrations list. Users can also filter the
results according to the migrations' updated time.

The ``GET /os-migrations`` and server migrations APIs will now
return a uuid value in addition to the migrations id in the response,
and the query parameter schema of the ``GET /os-migrations`` API no
longer allows additional properties.

Co-Authored-By: Yikun Jiang <yikunkero@gmail.com>

Implement: blueprint add-pagination-and-change-since-for-migration-list
Change-Id: I7e01f95d7173d9217f76e838b3ea71555151ef56
2018-01-10 14:02:53 -05:00

16 lines
750 B
YAML

---
features:
- |
Added pagination support for migrations, there are four changes:
- Add pagination support and ``changes-since`` filter for os-migrations
API. Users can now use ``limit`` and ``marker`` to perform paginate query
when listing migrations.
- Users can also use ``changes-since`` filter to filter the results based
on the last time the migration record was updated.
- ``GET /os-migrations``,
``GET /servers/{server_id}/migrations/{migration_id}`` and
``GET /servers/{server_id}/migrations`` will now return a uuid value in
addition to the migrations id in the response.
- The query parameter schema of the ``GET /os-migrations`` API no longer
allows additional properties.