X-Git-Url: https://gerrit.opnfv.org/gerrit/gitweb?p=escalator.git;a=blobdiff_plain;f=client%2Fescalatorclient%2Fv1%2Fclient.py;fp=client%2Fescalatorclient%2Fv1%2Fclient.py;h=bda8bf946c61135fb7ef1c737671a07162739d38;hp=974fc4e014586d9a15a28f16389e8c72b4e80d61;hb=d896ae4dc8b96acd1b720c29817b6b7faf7f086a;hpb=6a4f961b61dfdb41d77dcec262bcda64f44689dd diff --git a/client/escalatorclient/v1/client.py b/client/escalatorclient/v1/client.py index 974fc4e..bda8bf9 100644 --- a/client/escalatorclient/v1/client.py +++ b/client/escalatorclient/v1/client.py @@ -17,6 +17,7 @@ from escalatorclient.common import http from escalatorclient.common import utils from escalatorclient.v1.versions import VersionManager from escalatorclient.v1.clusters import ClusterManager +from escalatorclient.v1.update import UpdateManager class Client(object): @@ -36,3 +37,4 @@ class Client(object): self.http_client = http.HTTPClient(endpoint, *args, **kwargs) self.versions = VersionManager(self.http_client) self.clusters = ClusterManager(self.http_client) + self.update = UpdateManager(self.http_client)