update link to upper-constraints.txt
[vfc/nfvo/lcm.git] / lcm / pub / msapi / emsdriver.py
1 # Copyright 2018 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 import json
15 import logging
16
17 from lcm.pub.exceptions import NSLCMException
18 from lcm.pub.msapi.extsys import get_ems_by_id
19 from lcm.pub.utils.restcall import req_by_msb
20
21 logger = logging.getLogger(__name__)
22
23
24 def send_active_pnf_request(ems_inst_id, pnf_id, req_param):
25     ems = get_ems_by_id(ems_inst_id)
26     uri = '/api/%s/v1/%s/pnfs/%s/active' % (ems["type"], ems_inst_id, pnf_id)
27     ret = req_by_msb(uri, "POST", req_param)
28     if ret[0] != 0:
29         logger.error("Failed to send nf init req:%s,%s", ret[2], ret[1])
30         raise NSLCMException('Failed to send nf init request to VNFM(%s)' % ems_inst_id)
31     return json.JSONDecoder().decode(ret[1])