tempest/tempest/lib/api_schema/response/compute/v2_57/quota_classes.py

38 lines
1.6 KiB
Python

# All rights reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License"); you may
# not use this file except in compliance with the License. You may obtain
# a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
# License for the specific language governing permissions and limitations
# under the License.
import copy
from tempest.lib.api_schema.response.compute.v2_50 import quota_classes \
as quota_classesv250
# Compute microversion 2.57:
# 1. injected_file_content_bytes, injected_file_path_bytes, injected_files
# are removed from:
# * GET /os-quota-class-sets/{id}
# * PUT /os-quota-class-sets/{id}
get_quota_class_set = copy.deepcopy(quota_classesv250.get_quota_class_set)
update_quota_class_set = copy.deepcopy(
quota_classesv250.update_quota_class_set)
for field in ['injected_file_content_bytes', 'injected_file_path_bytes',
'injected_files']:
get_quota_class_set['response_body']['properties']['quota_class_set'][
'properties'].pop(field, None)
get_quota_class_set['response_body']['properties']['quota_class_set'][
'required'].remove(field)
update_quota_class_set['response_body']['properties']['quota_class_set'][
'properties'].pop(field, None)
update_quota_class_set['response_body']['properties'][
'quota_class_set']['required'].remove(field)