summaryrefslogtreecommitdiff
path: root/tempest/api_schema
diff options
context:
space:
mode:
authorRohan Kanade <rkanade@redhat.com>2015-03-23 17:18:58 +0530
committerRohan Kanade <rkanade@redhat.com>2015-03-24 14:31:46 +0530
commit0fe20f72107e789c6c64aee91839638c47eecc1d (patch)
treebca5fe8676c2ea998e2bae55cd143682eeb75182 /tempest/api_schema
parentd1a391a55482d64b9014e7b41219af195722d990 (diff)
downloadtempest-0fe20f72107e789c6c64aee91839638c47eecc1d.tar.gz
Refactor fixed_ips API response schema
- Rename fixed_ips -> get_fixed_ip - Rename fixed_ip_action -> reserve_fixed_ip Partially implements blueprint rearrange-nova-response-schemas Change-Id: If95988306ad0efdf4dd22e47a6623623f34503d9
Diffstat (limited to 'tempest/api_schema')
-rw-r--r--tempest/api_schema/response/compute/v2_1/fixed_ips.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tempest/api_schema/response/compute/v2_1/fixed_ips.py b/tempest/api_schema/response/compute/v2_1/fixed_ips.py
index 446633fbc..13e70bfb9 100644
--- a/tempest/api_schema/response/compute/v2_1/fixed_ips.py
+++ b/tempest/api_schema/response/compute/v2_1/fixed_ips.py
@@ -12,7 +12,7 @@
# License for the specific language governing permissions and limitations
# under the License.
-fixed_ips = {
+get_fixed_ip = {
'status_code': [200],
'response_body': {
'type': 'object',
@@ -35,7 +35,7 @@ fixed_ips = {
}
}
-fixed_ip_action = {
+reserve_fixed_ip = {
'status_code': [202],
'response_body': {'type': 'string'}
}