Add api_versions support; update model of ocloud, resourcepool, and resource
[pti/o2.git] / o2ims / views / api_ns.py
1 # Copyright (C) 2021-2022 Wind River Systems, Inc.
2 #
3 #  Licensed under the Apache License, Version 2.0 (the "License");
4 #  you may not use this file except in compliance with the License.
5 #  You may obtain a copy of the License at
6 #
7 #      http://www.apache.org/licenses/LICENSE-2.0
8 #
9 #  Unless required by applicable law or agreed to in writing, software
10 #  distributed under the License is distributed on an "AS IS" BASIS,
11 #  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 #  See the License for the specific language governing permissions and
13 #  limitations under the License.
14
15 from flask import request
16 from flask_restx import Resource
17 from o2common.views.route import O2Namespace
18
19
20 api_ims_inventory = O2Namespace(
21     "O2IMS_Inventory",
22     description='IMS Inventory related operations.')
23
24 api_provision_v1 = O2Namespace(
25     "PROVISION",
26     description='Provision related operations.')
27
28 api_ims_monitoring = O2Namespace(
29     "O2IMS_InfrastructureMonitoring",
30     description='O2 IMS Monitoring related operations.')
31
32
33 @api_ims_inventory.route('/api_versions')
34 class InventoryVersion(Resource):
35     def get():
36         return {
37             'uriPrefix': request.base_url.rsplit('/', 1)[0],
38             'apiVersions': [{
39                 'version': '1',
40                 # 'isDeprecated': 'False',
41                 # 'retirementDate': ''
42             }]
43         }
44
45
46 @api_ims_monitoring.route('/api_versions')
47 class MonitoringVersion(Resource):
48     def get():
49         return {
50             'uriPrefix': request.base_url.rsplit('/', 1)[0],
51             'apiVersions': [{
52                 'version': '1',
53                 # 'isDeprecated': 'False',
54                 # 'retirementDate': ''
55             }]
56         }