X-Git-Url: https://osm.etsi.org/gitweb/?a=blobdiff_plain;f=osmclient%2Fsol005%2Fvnf.py;h=6aa44d8a6346c00a18e6f00c62481205a8af6504;hb=7c12d41e92545ab962f31417a73524b007cf808f;hp=9875d39f71cc0a0432dc8c95495c5f46d0eb381f;hpb=e84376b0a90115f6c7ed342f92f1e6e414e9faee;p=osm%2Fosmclient.git diff --git a/osmclient/sol005/vnf.py b/osmclient/sol005/vnf.py index 9875d39..6aa44d8 100644 --- a/osmclient/sol005/vnf.py +++ b/osmclient/sol005/vnf.py @@ -20,6 +20,7 @@ OSM vnf API handling from osmclient.common import utils from osmclient.common.exceptions import NotFound +import logging class Vnf(object): @@ -27,6 +28,7 @@ class Vnf(object): def __init__(self, http=None, client=None): self._http = http self._client = client + self._logger = logging.getLogger('osmclient') self._apiName = '/nslcm' self._apiVersion = '/v1' self._apiResource = '/vnfrs' @@ -36,6 +38,8 @@ class Vnf(object): def list(self, ns=None, filter=None): """Returns a list of VNF instances """ + self._logger.debug("") + self._client.get_token() filter_string = '' if filter: filter_string = '?{}'.format(filter) @@ -46,7 +50,7 @@ class Vnf(object): else: filter_string = '?nsr-id-ref={}'.format(ns_instance['_id']) resp = self._http.get_cmd('{}{}'.format(self._apiBase,filter_string)) - #print 'RESP: {}'.format(resp) + #print('RESP: {}'.format(resp)) if resp: return resp return list() @@ -54,6 +58,8 @@ class Vnf(object): def get(self, name): """Returns a VNF instance based on name or id """ + self._logger.debug("") + self._client.get_token() if utils.validate_uuid4(name): for vnf in self.list(): if name == vnf['_id']: @@ -65,6 +71,8 @@ class Vnf(object): raise NotFound("vnf {} not found".format(name)) def get_individual(self, name): + self._logger.debug("") + self._client.get_token() vnf_id = name if not utils.validate_uuid4(name): for vnf in self.list(): @@ -72,7 +80,7 @@ class Vnf(object): vnf_id = vnf['_id'] break resp = self._http.get_cmd('{}/{}'.format(self._apiBase, vnf_id)) - #print 'RESP: {}'.format(resp) + #print('RESP: {}'.format(resp)) if resp: return resp raise NotFound("vnf {} not found".format(name))