summaryrefslogtreecommitdiffstats
path: root/api/escalator/api/v1/controller.py
diff options
context:
space:
mode:
authorJing Sun <sun.jing22@zte.com.cn>2017-03-06 17:11:21 +0800
committerJing Sun <sun.jing22@zte.com.cn>2017-03-11 06:52:33 +0000
commit3e90898f667afa508137e7be885daa62fbdb86d9 (patch)
tree189c76039b5463880055c59f866eec3a071017ac /api/escalator/api/v1/controller.py
parenta0625dbf2ffef08a492ffdaed641e62b90aa6ad6 (diff)
Jira ESCALATOR-41:get cluster list from installer
Change-Id: Ie3cd22b2f8398ec893686445ac85da7e69ffffb7 Signed-off-by: Jing Sun <sun.jing22@zte.com.cn>
Diffstat (limited to 'api/escalator/api/v1/controller.py')
-rw-r--r--api/escalator/api/v1/controller.py13
1 files changed, 13 insertions, 0 deletions
diff --git a/api/escalator/api/v1/controller.py b/api/escalator/api/v1/controller.py
new file mode 100644
index 0000000..ad0b9d7
--- /dev/null
+++ b/api/escalator/api/v1/controller.py
@@ -0,0 +1,13 @@
+class BaseController(object):
+
+ def get_cluster_meta_or_404(self, request, cluster_id):
+ """
+ Grabs the cluster metadata for an cluster with a supplied
+ identifier or raises an HTTPNotFound (404) response
+
+ :param request: The WSGI/Webob Request object
+ :param cluster_id: The opaque cluster identifier
+
+ :raises HTTPNotFound if cluster does not exist
+ """
+ pass