From 4b445f24d664d0ed720293aeeaa5a6a195e51d06 Mon Sep 17 00:00:00 2001
From: liguomin
Date: Thu, 30 Mar 2017 13:28:58 +0800
Subject: support all cluster update option
Change-Id: I0ff8951d9106535ed8ee0b1fbdba345c52a00dc8
Signed-off-by: liguomin
---
client/escalatorclient/v1/client.py | 2 ++
1 file changed, 2 insertions(+)
(limited to 'client/escalatorclient/v1/client.py')
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)
--
cgit 1.2.3-korg