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