921e03f74121b952c4406b2b117a9341cb0fd03d
[vfc/nfvo/lcm.git] / lcm / pub / msapi / nslcm.py
1 # Copyright 2016 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 json
16 import logging
17
18 from lcm.pub.utils.restcall import req_by_msb
19
20 logger = logging.getLogger(__name__)
21
22
23 def call_from_ns_cancel_resource(res_type, instid):
24     method = "DELETE"
25     if res_type == 'vl':
26         uri = '/api/nslcm/v1/ns/vls/%s' % instid
27
28     elif res_type == 'sfc':
29         uri = '/api/nslcm/v1/ns/sfcs/%s' % instid
30     else:
31         # vnf
32         method = "POST"
33         uri = '/api/nslcm/v1/ns/terminatevnf/%s' % instid
34     req_param = {}
35     ret = req_by_msb(uri, method, json.dumps(req_param))
36     logger.info("[NS terminate] call vnfm [%s] result:%s" % (res_type, ret))
37     return ret