Support PNF In NSLCM
[vfc/nfvo/lcm.git] / lcm / ns_pnfs / biz / active_pnf.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 from lcm.pub.msapi.emsdriver import send_active_pnf_request
15
16
17 class ActivePnf(object):
18     def __init__(self, ems_id, pnf_id, active_data):
19         self.ems_id = ems_id
20         self.pnf_id = pnf_id
21         self.data = active_data
22
23     def do_biz(self):
24         self.active_pnf()
25
26     def active_pnf(self):
27         return send_active_pnf_request(self.ems_id, self.pnf_id, self.data)