gyan/gyan/api/controllers/v1/schemas/ml_models.py

54 lines
1.4 KiB
Python

# 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 gyan.api.controllers.v1.schemas import parameter_types
_ml_model_properties = {}
ml_model_create = {
'type': 'object',
'properties': {
"name": parameter_types.ml_model_name,
"type": parameter_types.ml_model_type,
"flavor_id": parameter_types.ml_model_flavor_id
},
'required': ['name', 'type'],
'additionalProperties': False
}
query_param_create = {
'type': 'object',
'properties': {
'run': parameter_types.boolean_extended
},
'additionalProperties': False
}
ml_model_update = {
'type': 'object',
'properties': {},
'additionalProperties': False
}
query_param_delete = {
'type': 'object',
'properties': {
'force': parameter_types.boolean_extended,
'all_projects': parameter_types.boolean_extended,
'stop': parameter_types.boolean_extended
},
'additionalProperties': False
}