RIC-1059: dms_cli to use flask-restx
[ric-plt/appmgr.git] / xapp_orchestrater / dev / xapp_onboarder / xapp_onboarder / api / models / request_models.py
1 ################################################################################
2 #   Copyright (c) 2020 AT&T Intellectual Property.                             #
3 #                                                                              #
4 #   Licensed under the Apache License, Version 2.0 (the "License");            #
5 #   you may not use this file except in compliance with the License.           #
6 #   You may obtain a copy of the License at                                    #
7 #                                                                              #
8 #       http://www.apache.org/licenses/LICENSE-2.0                             #
9 #                                                                              #
10 #   Unless required by applicable law or agreed to in writing, software        #
11 #   distributed under the License is distributed on an "AS IS" BASIS,          #
12 #   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.   #
13 #   See the License for the specific language governing permissions and        #
14 #   limitations under the License.                                             #
15 ################################################################################
16
17 from flask_restx import fields
18 from xapp_onboarder.api.api_reference import api
19
20 xapp_descriptor_post = api.model('descriptor', {
21     'config-file.json': fields.Nested(
22         api.model('config', {
23             'name': fields.String(description='Name of the xApp chart', required=True),
24             'version': fields.String(description='Version of the xApp chart', required=True,
25                                      pattern='^(0|[1-9]\d*)\.(0|[1-9]\d*)\.(0|[1-9]\d*)(?:-((?:0|[1-9]\d*|\d*[a-zA-Z-][0-9a-zA-Z-]*)(?:\.(?:0|[1-9]\d*|\d*[a-zA-Z-][0-9a-zA-Z-]*))*))?(?:\+([0-9a-zA-Z-]+(?:\.[0-9a-zA-Z-]+)*))?$'),
26         }), required=True),
27     'controls-schema.json': fields.Raw(description='Controls schema file body', required=False),
28 })
29
30
31 xapp_descriptor_download_post = api.model('descriptor_remote', {
32     'config-file.json_url': fields.Url(description='URL to download the config-file.json file',  absolute=True, required=True),
33     'controls-schema.json_url': fields.Url(description='URL to download the controls schema.json file',  absolute=True, required=False),
34 })
35