create NS
[vfc/nfvo/lcm.git] / lcm / ns / views / sol / nslcm_op_views.py
1 import logging
2 from rest_framework.views import APIView
3
4 logger = logging.getLogger(__name__)
5
6
7 class InstantiateNsView(APIView):
8     def post(self, request, id):
9         # todo
10         return
11
12
13 class HealNsView(APIView):
14
15     def post(self, request, id):
16         # todo
17         return
18
19
20 class ScaleNsView(APIView):
21     def post(self, request, id):
22         # todo
23         return
24
25
26 class UpdateNsView(APIView):
27     def post(self, request, id):
28         # todo
29         return
30
31
32 class TerminateNsView(APIView):
33     def post(self, request, id):
34         # todo
35         return