support all cluster update option
[escalator.git] / client / escalatorclient / v1 / client.py
index d5bf6bc..bda8bf9 100644 (file)
@@ -16,6 +16,8 @@
 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):
@@ -34,3 +36,5 @@ 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)
+        self.update = UpdateManager(self.http_client)