56adc9bd85ecd5b1f401fd32cf63201b8db28cc7
15 Commits
| Author | SHA1 | Message | Date | |
|---|---|---|---|---|
|
zhangbailin
|
ac165112b7 |
Filter migrations by user_id/project_id
In microversion 2.80, the ``GET /os-migrations`` API will have
optional ``user_id`` and ``project_id`` query parameters for
filtering migrations by user and/or project:
* GET /os-migrations?user_id=ef9d34b4-45d0-4530-871b-3fb535988394
* GET /os-migrations?project_id=011ee9f4-8f16-4c38-8633-a254d420fd54
* GET /os-migrations?user_id=ef9d34b4-45d0-4530-871b-3fb535988394&project_id=011ee9f4-8f16-4c38-8633-a254d420fd54
And expose the ``user_id`` and ``project_id`` fields in the following APIs:
* GET /os-migrations
* GET /servers/{server_id}/migrations
* GET /servers/{server_id}/migrations/{migration_id}
Co-Authored-By: Qiu Fossen <qiujunting>
Part of blueprint add-user-id-field-to-the-migrations-table
Change-Id: I7313d6cde1a5e1dc7dd6f3c0dff9f30bbf4bee2c
|
||
|
Takashi NATSUME
|
084ce9b28a |
api-ref: Add a description about sort order
Add a description about the sort order in the "List Migrations" (GET /os-migrations) API. Change-Id: Iaa8e264ca95b69f3c97a6848918862ee22922de1 Closes-Bug: #1801789 |
||
|
Matt Riedemann
|
183ba80ec5 |
api-ref: add 'migrations' param to GET /os-migrations
The response parameter table for the GET /os-migrations API reference was missing the top level "migrations" parameter which is the list of migration objects. While in here, fix the fake "Done" status to "done" in the sample. There is nothing in nova that uses a status of "Done". The evacuate operation uses "done". Change-Id: I1e193237e9aec05395cd2760d96e70db7791409b |
||
|
zhangbailin
|
28c1075b59 |
Resource retrieving: add changes-before filter
This adds the changes-before filter to the servers, os-instance-actions and os-migrations APIs for filtering resources which were last updated before or equal to the given time. The changes-before filter, like the changes-since filter, will return deleted server resources. Part of bp support-to-query-nova-resources-filter-by-changes-before Change-Id: If91c179e3823c8b0da744a9363906b0f7b05c326 |
||
|
Matt Riedemann
|
1b46015f23 |
Address nits in change I7e01f95d7173d9217f76e838b3ea71555151ef56
Change-Id: I687de92de0ff088e9f1e64223ce40d87443bf36f |
||
|
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 |
||
|
Takashi NATSUME
|
319656dd11 |
api-ref: Verify parameters in os-migrations.inc
Change-Id: I6baeecc4c2d62c3c39d856f5b659cb986a00b724 Implements: blueprint api-ref-in-rst-pike Closes-Bug: #1668747 |
||
|
Sean Dague
|
c9f5ad3bcf |
remove /v2.1/{tenant_id} from all urls
As discussed at summit, the version part of the URL is not really relevant, or a thing a user should be filling out themselves, this should instead be set by the service catalog and extracted from the token. This removes it's reference in all documented REST urls, and adds a new section describing how one gets the base URL for all calls. Change-Id: I4306b8c3de0225e54f3909dd8a1fb293c4e5944c |
||
|
jichenjc
|
a7dde84ba1 |
verify api-ref os-migrations.inc
verify the parameters of os-migrations.inc including response and request. And, add warning for deprecation and incorrect wording of policy default rule. looks like the new migration is missing in doc, follow up patch will add it. Part of bp:api-ref-in-rst Change-Id: I8fed7374c34c5c857c8c55f56f86ad4c744844e9 |
||
|
Sujitha
|
f8870c6d26 |
Complete method verification of os-migrations
Corrects the error status responses for os-migrations Part of bp:api-ref-in-rst Change-Id: Ia4aa0e6378e1b327fb75b2f630279b35835ba095 |
||
|
Sean Dague
|
d929b9fc76 |
add tags to files for the content verification phase
This adds a set of tags in comments to the beginning of files so that we can process them according to the documentation here: https://wiki.openstack.org/wiki/NovaAPIRef Part of bp:api-ref-in-rst Change-Id: I17cf584dafb5bd969c12f51b7e7185d92365bf93 |
||
|
ghanshyam
|
1d6cd1277b |
Fix content and sample file for keypair, migration, networks
This fix some content and sample file path for: -os-keypairs -os-migrations -os-networks Part of bp:api-ref-in-rst Change-Id: I6ae6d38207c5a9552bab9a42b2800449e4ad040a |
||
|
ghanshyam
|
6f8cda2f39 |
Fix json response example heading in api ref
Heading for json response example is wrong, it is json request instead of json response. Part of bp:api-ref-in-rst Change-Id: I709b2bf19520eb76e0264c358a2146bb0dbcee2b |
||
|
Sean Dague
|
9526462326 |
move sphinx h3 to '-' instead of '^'
In the sphinx document h3 is supposed to be '-' not '^': =, for sections -, for subsections ^, for subsubsections We have to enforce consistency here because we're processing included files which all have to agree, otherwise it's a sphinx error. Part of bp:api-ref-in-rst Change-Id: Ic6eef5cacb07870f161b04b031e332f2b87aeedc |
||
|
Sean Dague
|
d4e2771440 |
Import RST files for documentation
This is the results of the RST conversion from WADL. It creates a single index plus a bunch of included files which represent sections of the API document. This is the starting point for fixing the documentation. Change-Id: I7d561c2ecdcd864172dedb54a551f17ad3bdfe26 |