Added V0 Registry API
[multicloud/azure.git] / azure / multicloud_azure / api_v2 / api_router / v0_controller.py
1 #    Copyright (c) 2018 Amdocs
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 import pecan
16 from pecan import rest
17
18 from multicloud_azure.api_v2.api_router import swagger_json
19
20
21 class V0_Controller(rest.RestController):
22
23     def get(self, vim_id, tenant_id):
24         """ Placeholder for sub controllers. """
25         pecan.abort(405)
26
27     def put(self, vim_id, tenant_id):
28         """ Placeholder for sub controllers. """
29         pecan.abort(405)
30
31     def post(self, vim_id, tenant_id):
32         """ Placeholder for sub controllers. """
33         pecan.abort(405)
34
35     def delete(self, vim_id, tenant_id):
36         """ Placeholder for sub controllers. """
37         pecan.abort(405)
38
39     def get_all(self, vim_id, tenant_id):
40         """ Placeholder for sub controllers. """
41         pecan.abort(405)
42
43
44 pecan.route(V0_Controller, "swagger.json", swagger_json.SwaggerJson())
45
46
47 # Insert API stem from yaml files.
48 # controller_builder.insert_dynamic_controller(V0_Controller)