X-Git-Url: https://gerrit.opnfv.org/gerrit/gitweb?p=escalator.git;a=blobdiff_plain;f=client%2Fescalatorclient%2Fv1%2Fclient.py;h=974fc4e014586d9a15a28f16389e8c72b4e80d61;hp=d5bf6bcaa3c148cd7118b4d2eff450c762053090;hb=3e90898f667afa508137e7be885daa62fbdb86d9;hpb=a0625dbf2ffef08a492ffdaed641e62b90aa6ad6 diff --git a/client/escalatorclient/v1/client.py b/client/escalatorclient/v1/client.py index d5bf6bc..974fc4e 100644 --- a/client/escalatorclient/v1/client.py +++ b/client/escalatorclient/v1/client.py @@ -16,6 +16,7 @@ from escalatorclient.common import http from escalatorclient.common import utils from escalatorclient.v1.versions import VersionManager +from escalatorclient.v1.clusters import ClusterManager class Client(object): @@ -34,3 +35,4 @@ class Client(object): self.version = version or 1.0 self.http_client = http.HTTPClient(endpoint, *args, **kwargs) self.versions = VersionManager(self.http_client) + self.clusters = ClusterManager(self.http_client)