add interface of opt vim resources
[vfc/gvnfm/vnflcm.git] / lcm / lcm / samples / views.py
1 # Copyright 2017 ZTE Corporation.
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 logging
16
17 from rest_framework import status
18 from rest_framework.views import APIView
19 from rest_framework.response import Response
20 from .resources import ResCreateThread, ResDeleteThread
21
22 logger = logging.getLogger(__name__)
23
24
25 class SampleList(APIView):
26     """
27     List all samples.
28     """
29     def get(self, request, format=None):
30         logger.debug("get")
31         return Response({"status": "active"})
32
33 class ResourceList(APIView):
34     """
35     Add resource.
36     """
37     def post(self, request):
38         logger.debug("ResourceList post: %s" % request.data)
39         ResCreateThread(request.data).start()
40         return Response(data=None, status=status.HTTP_204_NO_CONTENT)
41         
42     """
43     Delete resource.
44     """
45     def delete(self, request):
46         logger.debug("ResourceList delete: %s" % request.data)
47         ResDeleteThread(request.data).start()
48         return Response(data=None, status=status.HTTP_204_NO_CONTENT)
49