X-Git-Url: https://osm.etsi.org/gitweb/?a=blobdiff_plain;f=osmclient%2Fsol005%2Fclient.py;h=c70be23519db856d79b8a5c3198369d948df6bdb;hb=2cc451122a28672aa0b928688fc76d633d5ece81;hp=7583165d795c77ef6f1d4d1a2a4e4145c5469e24;hpb=fcb33ebcc77ac7bb6ba0e0989c54bd6f8cefe766;p=osm%2Fosmclient.git diff --git a/osmclient/sol005/client.py b/osmclient/sol005/client.py index 7583165..c70be23 100644 --- a/osmclient/sol005/client.py +++ b/osmclient/sol005/client.py @@ -31,6 +31,7 @@ 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 @@ -86,6 +87,7 @@ class Client(object): 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)