summaryrefslogtreecommitdiff
path: root/tempest_lib/api_schema/response
Commit message (Collapse)AuthorAgeFilesLines
* Retire tempest-lib in favor of tempest.libHEADmasterGhanshyam Mann2022-04-0534-3059/+0
| | | | | | | | | | | | | | | As of the 1.0.0 release tempest-lib as a separate repository and project is deprecated. We moved all the code to tempest.lib temepst version 10. Hoping everyone is moved to tempest.lib now, We can retire the tempest-lib. We discussed the same in PTG and agreed to proceed on retirement - https://etherpad.opendev.org/p/qa-zed-ptg Needed-By: https://review.opendev.org/c/openstack/governance/+/836704 Change-Id: I37ceb96e084f569ea59e4849ca8770742ce17846
* Add update attached volume function to servers_clientTakashi NATSUME2016-02-051-0/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | os-volume_attachments API for update: PUT /v2.1/{tenant_id}/servers/{server_id}/os-volume_attachments/{attachment_id} tenant_id: The project ID (tenant ID) that the target server belongs to server_id: The server ID to update the volume attachment attachment_id: The volume attachment ID to update Request body sample: { "volumeAttachment": { "volumeId": "a26887c6-c47b-4654-abb5-dfadf7d3f805" } } volumeId: The volume ID to attach instead of the volume that has already been attached This API does not return a response body. Reference: - Request body sample https://github.com/openstack/nova/blob/master/doc/api_samples/os-volumes/update-volume-req.json - Fuctional test test_volume_attachment_update method in VolumeAttachmentsSample class https://github.com/openstack/nova/blob/master/nova/tests/functional/api_sample_tests/test_volumes.py Change-Id: Ic0258e5688be6ede3316ab4310e9ca6ac0f51659 Implements: blueprint add-nova-swap-volume-tests
* Alter image json schema to allow for null name and size valuesJohn Warren2016-01-261-2/+2
| | | | | | | | | | | | | Tests are failing due to images that have null name or size values even though these are valid images that happen to have been created outside of tempest. The API spec indicates that both values can be null: http://developer.openstack.org/api-ref-image-v2.html#listImages-v2 Change-Id: I015bc569ac4dde5d06b5418b98ff29537b7a4b1c Closes-Bug: #1533730
* Migrated servers_client.py from tempest0.12.0Ken'ichi Ohmichi2015-12-161-5/+5
| | | | | | | | | | | | | | | | This migrates the above files from tempest. This includes tempest commits: * servers_client.py : I7174723f907fd8962d9d12fe76bec2dc06883938 * servers.py : I10a8c32b53f15063dab087d67123598800b141a0 * test_servers_client.py: I7174723f907fd8962d9d12fe76bec2dc06883938 to see the commit history for these files refer to the above Change-Ids in the tempest repository. Partially implements blueprint migrate-service-clients-to-tempest-lib Change-Id: I9234f063a72bd58100bfffd3db38718a257ce6ea
* Merge "Fix fixed_ip schema and service client"Jenkins2015-12-021-3/+2
|\
| * Fix fixed_ip schema and service clientghanshyam2015-11-241-3/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | There are two issues in fixed_ip schema and client. 1. Schema expect string in response body- Nova had bug#1356058 for response of reserve/unreserve fixed ip APIs, where plain text ("202 Accepted The request is accepted for processing.") was returned in response body. It is fixed on Nova side - Ifca3081f573407808a2196e71ac1db87180db6ec 2. Return value of reserve_fixed_ip client method- In Fixed ip service client, reserve_fixed_ip method does not return the response body. As per consistency in service client interfaces, this method should return the response value even that is empty body. Those were fixed in Tempest but did not get sync in lib. -I098ee0d1fa3056f8cfb0654e2b8fd3bf75fb3e2c -I2cb1ef8dacd1994576656cfb108dd2eef2fbd988 Change-Id: I27b8d2165188ee069f5d8d22c0426f2c748f80c8
* | Rename get_server_group to show_server_groupKen'ichi Ohmichi2015-11-191-1/+1
|/ | | | | | | | | | | | | | | | [GET /resources] methods should be "list_<resource name>s" or "show_<resource name>", so this patch applies the rule to server_group client. This patch makes tempest-lib sync for the commit of Tempest I75307176c2f032301da6227249070c42af54dd6e, but get_server_group has been released in tempest-lib 1.0.0 already. So it is difficult to remove it directly for backwards compatibility and this patch adds warning message for clarifying deprecated method. Partially implements blueprint consistent-service-method-names Change-Id: I9e321aaf4791e8ff11e3aa114b41eb612db481ca
* Migrated server_groups_client.pyJohn Fischer2015-09-291-0/+549
| | | | | | | | | | | | | | This migrates the above files from tempest. This includes tempest commits: * server_groups_client.py : Icb38fd22c61545cfbe024108a06068ada01afc6b * test_server_groups_client.py: I3ad6761651cec5e66012d08e6b63322f53286a5c * servers.py : Ica929c402a3d042ae751302384e68853eb28b405 Partially implements blueprint migrate-service-clients-to-tempest-lib to see the commit history for these files refer to the above Change-Ids in the tempest repository Change-Id: Ie95fcbfad5352d272e8977c33f80ebb9769fe824
* Merge "Migrated quota_classes_client.py from tempest"Jenkins2015-10-151-0/+31
|\
| * Migrated quota_classes_client.py from tempestTuan Nguyen2015-10-091-0/+31
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This migrates the above files from tempest. This includes tempest commits: * quota_classes_client.py: Idd8afb1bcfc1b0165b1e967a991d4705ff182249 * test_quota_classes_client.py: I3ad6761651cec5e66012d08e6b63322f53286a5c * quota_classes.py: I2378e019353f551a3ac49666edd5ecb561b5b6ed to see the commit history for these files refer to the above Change-Ids in the tempest repository. Partially implements blueprint migrate-service-clients-to-tempest-lib Change-Id: I48ce2ddf21218eb02f6ae47cb0356c340ced06ae
* | Merge "Migrated services_client.py from tempest"Jenkins2015-10-151-0/+65
|\ \
| * | Migrated services_client.py from tempestKen'ichi Ohmichi2015-10-141-0/+65
| |/ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This migrates the above files from tempest. This includes tempest commits: * services_client.py : Ib5617c3957cf60b2c1f11b78b7c3a136adf7ef9d * test_services_client.py: I3ad6761651cec5e66012d08e6b63322f53286a5c * services.py : Icd49783f19be4c30df9532e85b0cccf3410ad8fb to see the commit history for these files refer to the above Change-Ids in the tempest repository. Partially implements blueprint migrate-service-clients-to-tempest-lib Change-Id: I29684ec61023650bd2bb3a76b708bac24608f6c0
* | Merge "Migrated interfaces_client.py from tempest"Jenkins2015-10-151-0/+73
|\ \
| * | Migrated interfaces_client.py from tempestReedip Banerjee2015-10-141-0/+73
| |/ | | | | | | | | | | | | | | | | | | | | | | | | | | | | This migrates the above files from tempest. This includes tempest commits: * interfaces_client.py: Idacc612bfed3d5a4abd58c8a987f68675b948f86 * test_interfaces_client.py: I976fd1d91dc3db4006f32b30e859981120487b0b * interfaces.py: I64883306235dc3b90a3a878674532f77d825d5c4 to see the commit history for these files refer to the above Change-Ids in the tempest repository. Partially implements blueprint migrate-service-clients-to-tempest-lib Change-Id: I758cf64ba1e6f760a60ed253cb9a8c9bc75ba73b
* | Merge "Migrated volumes_client.py from tempest"Jenkins2015-10-151-0/+120
|\ \
| * | Migrated volumes_client.py from tempestKen'ichi Ohmichi2015-10-141-0/+120
| |/ | | | | | | | | | | | | | | | | | | | | | | | | | | | | This migrates the above files from tempest. This includes tempest commits: * volumes_client.py : Ibd9b6c67c5b9790b6d6f1a76d334ee5d6c98ad5f * test_volumes_client.py: Ibd9b6c67c5b9790b6d6f1a76d334ee5d6c98ad5f * volumes.py : Ica929c402a3d042ae751302384e68853eb28b405 to see the commit history for these files refer to the above Change-Ids in the tempest repository. Partially implements blueprint migrate-service-clients-to-tempest-lib Change-Id: I10913f82dc3d0bef53edd67144cb47580d3c574d
* | Migrated snapshots_client.py from tempestKenji Yasui2015-10-141-0/+61
|/ | | | | | | | | | | | | | | | This migrates the above files from tempest. This includes tempest commits: * snapshots_client.py : If7be1e24451b24fce03dcfc1394abb6260da460c * test_snapshots_client.py : Idc31ee38fd9d5fd4873de6ba29550bdd5ce35043 * snapshots.py : I9694e36a7d0a8e9bd6cd66c9dc46a4a715d2c25f to see the commit history for these files refer to the above Change-Ids in the tempest repository. Partially implements blueprint migrate-service-clients-to-tempest-lib Change-Id: I7854f7e080de9e819a1fae0d2de5d3aee111505a
* Merge "Migrated images_client.py from tempest"0.10.0Jenkins2015-10-091-0/+154
|\
| * Migrated images_client.py from tempestReedip Banerjee2015-10-071-0/+154
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This migrates the above files from tempest. This includes tempest commits: * images_client.py: I57818ccf8d0f6a631223a240b20829e5c40c3e6d * test_images_client.py: I2a33e98c6b6770ef6e67362a663847296e03fbc1 * images.py: Ica929c402a3d042ae751302384e68853eb28b405 to see the commit history for these files refer to the above Change-Ids in the tempest repository. Partially implements blueprint migrate-service-clients-to-tempest-lib Change-Id: I495915a5a40f7d351cb69463c032281e02c907c7
* | Merge "Migrated versions_client.py from tempest"Jenkins2015-10-091-0/+110
|\ \
| * | Migrated versions_client.py from tempestThao Nguyen2015-09-301-0/+110
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This migrates the above files from tempest. This includes tempest commits: * versions.py: I70294329870de46b2c4c8775a1d7920bee403954 * versions_client.py: I70294329870de46b2c4c8775a1d7920bee403954 to see the commit history for these files refer to the above Change-Ids in the tempest repository Partially implements blueprint migrate-service-clients-to-tempest-lib Change-Id: I41ec60e12a155ee80f3a1825405bdd6e1ec82425
* | | Merge "Migrated extensions_client.py from tempest"Jenkins2015-10-091-0/+47
|\ \ \
| * | | Migrated extensions_client.py from tempestKen'ichi Ohmichi2015-10-021-0/+47
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This migrates the above files from tempest. This includes tempest commits: * extensions_client.py : I8dcb70ce6ba2af59c7636c5f83157dd058fb1df3 * test_extensions_client.py: I3ad6761651cec5e66012d08e6b63322f53286a5c * extensions.py : Ica929c402a3d042ae751302384e68853eb28b405 to see the commit history for these files refer to the above Change-Ids in the tempest repository. Partially implements blueprint migrate-service-clients-to-tempest-lib Change-Id: Ic658f09649ed9498fe6d3e7792a7c370772f165b
* | | | Merge "Migrated hosts_client.py from tempest"Jenkins2015-10-091-0/+116
|\ \ \ \ | | |_|/ | |/| |
| * | | Migrated hosts_client.py from tempestReedip Banerjee2015-10-021-0/+116
| |/ / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This migrates the above files from tempest. This includes tempest commits: * hosts_client.py: Ife5bdbbcbdd856ecbce66e8b9c74c70dbb93f077 * test_hosts_client.py: Ifc4aa410d1db84ea8c43c64d1feadd74dbfbc4a4 * hosts.py: Ica929c402a3d042ae751302384e68853eb28b405 to see the commit history for these files refer to the above Change-Ids in the tempest repository. Partially implements blueprint migrate-service-clients-to-tempest-lib Change-Id: I59c82bc896d5036d936e6f9cddb3c7b004648dde
* | | Merge "Migrated instance_usage_audit_log_client.py from tempest"Jenkins2015-10-091-0/+62
|\ \ \
| * | | Migrated instance_usage_audit_log_client.py from tempestTuan Nguyen2015-10-061-0/+62
| |/ / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This migrates the above files from tempest. This includes tempest commits: * instance_usage_audit_log_client.py: I11038a3b5e263918c150bbb304ae40a905329bef * test_instance_usage_audit_log_client.py: I3ad6761651cec5e66012d08e6b63322f53286a5c * instance_usage_audit_logs.py: Ica929c402a3d042ae751302384e68853eb28b405 to see the commit history for these files refer to the above Change-Ids in the tempest repository Partially implements blueprint migrate-service-clients-to-tempest-lib Change-Id: I3c104b49903e5762041c370e3e9803a382de76fa
* | | Merge "Migrated security_groups_client.py"Jenkins2015-10-091-0/+113
|\ \ \
| * | | Migrated security_groups_client.pyJohn Fischer2015-09-261-0/+113
| |/ / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This migrates the above files from tempest. This includes tempest commits: * security_groups_client.py : I8cfd1845be221ae2e3629cc79ab5fdfd14ac48d4 * test_security_groups_client.py: I3ad6761651cec5e66012d08e6b63322f53286a5c * security_groups.py : Ica929c402a3d042ae751302384e68853eb28b405 to see the commit history for these files refer to the above Change-Ids in the tempest repository Partially implements blueprint migrate-service-clients-to-tempest-lib Change-Id: I4076278b92e8166b52deaa0447047f7dc7a3934a
* | | Merge "Migrated quotas_client.py from tempest"Jenkins2015-10-091-0/+65
|\ \ \
| * | | Migrated quotas_client.py from tempestTuan Nguyen2015-10-021-0/+65
| | |/ | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This migrates the above files from tempest. This includes tempest commits: * quotas_client.py: Idd8afb1bcfc1b0165b1e967a991d4705ff182249 * test_quotas_client.py: I3ad6761651cec5e66012d08e6b63322f53286a5c * quotas.py: Ica929c402a3d042ae751302384e68853eb28b405 to see the commit history for these files refer to the above Change-Ids in the tempest repository Partially implements blueprint migrate-service-clients-to-tempest-lib Change-Id: Ib0fcb82ce09ea68d9899836264e8037ac977347b
* | | Merge "Migrated flavors_client.py from tempest"Jenkins2015-10-083-0/+179
|\ \ \
| * | | Migrated flavors_client.py from tempestKen'ichi Ohmichi2015-10-023-0/+179
| | |/ | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This migrates the above files from tempest. This includes tempest commits: * flavors_client.py : Id153ba7b5ff838532fd7bf0e2b72815141c2e250 * test_flavors_client.py: Ibf160ba20e26a9c1f216a2e741bdfa9f45c4f0d0 * flavors.py : Ica929c402a3d042ae751302384e68853eb28b405 * flavors_access.py : Ica929c402a3d042ae751302384e68853eb28b405 * flavors_extra_specs.py: Ica929c402a3d042ae751302384e68853eb28b405 to see the commit history for these files refer to the above Change-Ids in the tempest repository Partially implements blueprint migrate-service-clients-to-tempest-lib Change-Id: I3de529b1e0db298530e54fd2c871d40f29614126
* | | Merge "Migrated hypervisor_client.py"Jenkins2015-10-061-0/+195
|\ \ \
| * | | Migrated hypervisor_client.pyJohn Fischer2015-09-252-0/+291
| | |/ | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This migrates the above files from tempest. This includes tempest commits: * hypervisor_client.py : Icf782e4469fcecba773b3187c1b36d9d49829c93 * test_hypervisor_client.py: I401057ecdf70d693c285cdaf64e1a5db62fc9b17 * hypervisors.py : I64883306235dc3b90a3a878674532f77d825d5c4 to see the commit history for these files refer to the above Change-Ids in the tempest repository Partially implements blueprint migrate-service-clients-to-tempest-lib Change-Id: I1a1dcab8ecd6e12ec03d14303517c8cb1e68ec60
* | | Merge "Migrated security_group_default_rules_client.py"Jenkins2015-10-061-0/+65
|\ \ \
| * | | Migrated security_group_default_rules_client.pyJohn Warren2015-09-291-0/+65
| |/ / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This migrates the above files from tempest. This includes tempest commits: * security_group_default_rules_client.py: Ie39cb8a0d710c1412836f93ce6b3df60faad9f76 * test_security_group_default_rules_client.py: I3ad6761651cec5e66012d08e6b63322f53286a5c * security_group_default_rule.py: Ica929c402a3d042ae751302384e68853eb28b405 to see the commit history for these files refer to the above Change-Ids in the tempest repository Partially implements blueprint migrate-service-clients-to-tempest-lib Change-Id: I8b652aeb82d2a7335212ef7cc021a969ad297c6a
* | | Merge "Migrated tenant_networks_client.py from tempest"Jenkins2015-10-061-0/+53
|\ \ \ | |_|/ |/| |
| * | Migrated tenant_networks_client.py from tempestKen'ichi Ohmichi2015-09-281-0/+53
| |/ | | | | | | | | | | | | | | | | | | | | | | | | | | This migrates the above files from tempest. This includes tempest commits: * tenant_networks_client.py : Ie0f6e709cbb3a215752344cb39f2f7a6f5a7a91b * tenant_networks.py : Ica929c402a3d042ae751302384e68853eb28b405 * test_tenant_networks_client.py: I3ad6761651cec5e66012d08e6b63322f53286a5c to see the commit history for these files refer to the above Change-Ids in the tempest repository Partially implements blueprint migrate-service-clients-to-tempest-lib Change-Id: Ie98ff37137e25e73eb77acb0b5b7e53184842540
* | Merge "Migrated keypairs_client.py from tempest"Jenkins2015-09-291-0/+107
|\ \
| * | Migrated keypairs_client.py from tempestKen'ichi Ohmichi2015-09-281-0/+107
| |/ | | | | | | | | | | | | | | | | | | | | | | | | | | This migrates the above files from tempest. This includes tempest commits: * keypairs_client.py : I5bbc2c15155e6a25da7c44d00d5ac1214c0462bf * keypairs.py : Ica929c402a3d042ae751302384e68853eb28b405 * test_keypairs_client.py: I3ad6761651cec5e66012d08e6b63322f53286a5c to see the commit history for these files refer to the above Change-Ids in the tempest repository. Partially implements blueprint migrate-service-clients-to-tempest-lib Change-Id: I825e54c23be673725afc6d89104ff12c2363890f
* | Merge "Migrated migrations_client.py from tempest"Jenkins2015-09-291-0/+51
|\ \
| * | Migrated migrations_client.py from tempestKen'ichi Ohmichi2015-09-281-0/+51
| |/ | | | | | | | | | | | | | | | | | | | | | | | | | | This migrates the above files from tempest. This includes tempest commits: * migrations_client.py : Ice3665e91ff34409f6f105303213303d1fca1816 * migrations.py : I5e81dadd5dee4ecd85f309c34dae0d3ba0733a0d * test_migrations_client.py: I3ad6761651cec5e66012d08e6b63322f53286a5c to see the commit history for these files refer to the above Change-Ids in the tempest repository. Partially implements blueprint migrate-service-clients-to-tempest-lib Change-Id: I0dbae04c479b9d742a3e51d1d60c372093c2c027
* | Merge "Migrated limits_client.py from tempest"Jenkins2015-09-291-0/+106
|\ \
| * | Migrated limits_client.py from tempestKen'ichi Ohmichi2015-09-281-0/+106
| |/ | | | | | | | | | | | | | | | | | | | | | | | | | | This migrates the above files from tempest. This includes tempest commits: * limits_client.py : Ice3665e91ff34409f6f105303213303d1fca1816 * limits.py : Ica929c402a3d042ae751302384e68853eb28b405 * test_limits_client.py: I3ad6761651cec5e66012d08e6b63322f53286a5c to see the commit history for these files refer to the above Change-Ids in the tempest repository Partially implements blueprint migrate-service-clients-to-tempest-lib Change-Id: I80c6e148ae30148e591d24675fe068c829a0867a
* | Merge "Migrated tenant_usages_client.py from tempest"Jenkins2015-09-291-0/+92
|\ \
| * | Migrated tenant_usages_client.py from tempestKen'ichi Ohmichi2015-09-281-0/+92
| |/ | | | | | | | | | | | | | | | | | | | | | | | | | | This migrates the above files from tempest. This includes tempest commits: * tenant_usages_client.py : I0e6287b1a720d5f3f129fcaa8c08cf6d40abf8e8 * tenant_usages.py : If07f0a929c7085090bcefd4d2d565b896bf438f3 * test_tenant_usages_client.py: I3ad6761651cec5e66012d08e6b63322f53286a5c to see the commit history for these files refer to the above Change-Ids in the tempest repository Partially implements blueprint migrate-service-clients-to-tempest-lib Change-Id: I94fc27bdb30e69ac22b5418d6dca0a06f51874c6
* | Merge "Migrated floating_ip_pools_client.py from tempest"Jenkins2015-09-291-0/+148
|\ \
| * | Migrated floating_ip_pools_client.py from tempestKen'ichi Ohmichi2015-09-281-0/+148
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This migrates the above files from tempest. This includes tempest commits: * floating_ip_pools_client.py : Icb38fd22c61545cfbe024108a06068ada01afc6b * test_floating_ip_pools_client.py: I3ad6761651cec5e66012d08e6b63322f53286a5c * floating_ips.py : I64883306235dc3b90a3a878674532f77d825d5c4 to see the commit history for these files refer to the above sha1s in the tempest repository Partially implements blueprint migrate-service-clients-to-tempest-lib Change-Id: Iab0f7faca8d23d18061c5b3d13bb8b5e0536025c
* | | Merge "Migrated certificates_client.py from tempest"Jenkins2015-09-291-0/+41
|\ \ \ | |/ / |/| |