X-Git-Url: https://osm.etsi.org/gitweb/?a=blobdiff_plain;f=osmclient%2Fsol005%2Fclient.py;h=32e8fb9235018515f652c4a2752f260b67a9090a;hb=ab51ef7a920bfb6d036d18ae5f3063a0d780cab2;hp=479fc9adda321781e6f9dea7b35ec51ee9a08889;hpb=be96096ebd71c8d36c8375387f8e671f12eedfb0;p=osm%2Fosmclient.git diff --git a/osmclient/sol005/client.py b/osmclient/sol005/client.py index 479fc9a..32e8fb9 100644 --- a/osmclient/sol005/client.py +++ b/osmclient/sol005/client.py @@ -21,12 +21,18 @@ OSM SOL005 client API #from osmclient.v1 import vca from osmclient.sol005 import vnfd from osmclient.sol005 import nsd +from osmclient.sol005 import nst +from osmclient.sol005 import nsi from osmclient.sol005 import ns from osmclient.sol005 import vnf from osmclient.sol005 import vim +from osmclient.sol005 import wim from osmclient.sol005 import package from osmclient.sol005 import http from osmclient.sol005 import sdncontroller +from osmclient.sol005 import project as projectmodule +from osmclient.sol005 import user as usermodule +from osmclient.sol005 import pdud from osmclient.common.exceptions import ClientException import json @@ -36,15 +42,14 @@ class Client(object): self, host=None, so_port=9999, - so_project='admin', - ro_host=None, - ro_port=9090, + user='admin', + password='admin', + project='admin', **kwargs): - self._user = 'admin' - self._password = 'admin' - #self._project = so_project - self._project = 'admin' + self._user = user + self._password = password + self._project = project self._auth_endpoint = '/admin/v1/tokens' self._headers = {} @@ -56,13 +61,6 @@ class Client(object): self._host = host self._so_port = so_port - if ro_host is None: - ro_host = host - ro_http_client = http.Http('http://{}:{}/openmano'.format(ro_host, ro_port)) - ro_http_client.set_http_header( - ['Accept: application/json', - 'Content-Type: application/json']) - self._http_client = http.Http( 'https://{}:{}/osm'.format(self._host,self._so_port)) self._headers['Accept'] = 'application/json' @@ -81,11 +79,17 @@ class Client(object): self.vnfd = vnfd.Vnfd(self._http_client, client=self) self.nsd = nsd.Nsd(self._http_client, client=self) + self.nst = nst.Nst(self._http_client, client=self) self.package = package.Package(self._http_client, client=self) self.ns = ns.Ns(self._http_client, client=self) + self.nsi = nsi.Nsi(self._http_client, client=self) self.vim = vim.Vim(self._http_client, client=self) + self.wim = wim.Wim(self._http_client, client=self) self.sdnc = sdncontroller.SdnController(self._http_client, client=self) self.vnf = vnf.Vnf(self._http_client, client=self) + self.project = projectmodule.Project(self._http_client, client=self) + self.user = usermodule.User(self._http_client, client=self) + self.pdu = pdud.Pdu(self._http_client, client=self) ''' self.vca = vca.Vca(http_client, client=self, **kwargs) self.utils = utils.Utils(http_client, **kwargs) @@ -94,7 +98,7 @@ class Client(object): def get_token(self): postfields_dict = {'username': self._user, 'password': self._password, - 'project-id': self._project} + 'project_id': self._project} http_code, resp = self._http_client.post_cmd(endpoint=self._auth_endpoint, postfields_dict=postfields_dict) if http_code not in (200, 201, 202, 204):