fix creat pnf error
[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     elif res_type == 'sfc':
28         uri = '/api/nslcm/v1/ns/sfcs/%s' % instid
29     elif res_type == 'pnf':
30         uri = '/api/nslcm/v1/pnfs/%s' % instid
31     else:
32         # vnf
33         method = "POST"
34         uri = '/api/nslcm/v1/ns/terminatevnf/%s' % instid
35     req_param = {}
36     ret = req_by_msb(uri, method, json.dumps(req_param))
37     logger.info("[NS terminate] call res_type [%s] result:%s" % (res_type, ret))
38     return ret