X-Git-Url: https://osm.etsi.org/gitweb/?a=blobdiff_plain;f=osmclient%2Fv1%2Fvnf.py;fp=osmclient%2Fv1%2Fvnf.py;h=856d58bb25d8ea55c16c40c31b21dd8a997dded5;hb=4c7e237e45bc6fe209006b4837a8e6b031e78e1c;hp=a981bb3a8435f0a555407bbef704531cee92fcfe;hpb=e84eb31aded0cb62a5523422ddc4524f6e615209;p=osm%2Fosmclient.git diff --git a/osmclient/v1/vnf.py b/osmclient/v1/vnf.py index a981bb3..856d58b 100644 --- a/osmclient/v1/vnf.py +++ b/osmclient/v1/vnf.py @@ -18,21 +18,21 @@ OSM vnf API handling """ -from osmclient.common.exceptions import NotFound +from osmclient.common.exceptions import NotFound class Vnf(object): - def __init__(self,http=None): - self._http=http + def __init__(self, http=None): + self._http = http def list(self): resp = self._http.get_cmd('v1/api/operational/vnfr-catalog/vnfr') if resp and 'vnfr:vnfr' in resp: return resp['vnfr:vnfr'] - return list() + return list() - def get(self,vnf_name): - vnfs=self.list() + def get(self, vnf_name): + vnfs = self.list() for vnf in vnfs: if vnf_name == vnf['name']: return vnf @@ -40,8 +40,8 @@ class Vnf(object): return vnf raise NotFound("vnf {} not found".format(vnf_name)) - def get_monitoring(self,vnf_name): - vnf=self.get(vnf_name) + def get_monitoring(self, vnf_name): + vnf = self.get(vnf_name) if vnf and 'monitoring-param' in vnf: return vnf['monitoring-param'] return None