summaryrefslogtreecommitdiffstats
path: root/client/escalatorclient/v1/client.py
diff options
context:
space:
mode:
authorkong wei <kong.wei2@zte.com.cn>2017-08-09 07:16:08 +0000
committerGerrit Code Review <gerrit@opnfv.org>2017-08-09 07:16:08 +0000
commitd896ae4dc8b96acd1b720c29817b6b7faf7f086a (patch)
treeab5932ee37e2a1271eca88c7e8e5897fc8d48b98 /client/escalatorclient/v1/client.py
parent6a4f961b61dfdb41d77dcec262bcda64f44689dd (diff)
parent4b445f24d664d0ed720293aeeaa5a6a195e51d06 (diff)
Merge "support all cluster update option"
Diffstat (limited to 'client/escalatorclient/v1/client.py')
-rw-r--r--client/escalatorclient/v1/client.py2
1 files changed, 2 insertions, 0 deletions
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)