Jira ESCALATOR-41:get cluster list from installer
[escalator.git] / api / escalator / api / v1 / controller.py
1 class BaseController(object):
2
3     def get_cluster_meta_or_404(self, request, cluster_id):
4         """
5         Grabs the cluster metadata for an cluster with a supplied
6         identifier or raises an HTTPNotFound (404) response
7
8         :param request: The WSGI/Webob Request object
9         :param cluster_id: The opaque cluster identifier
10
11         :raises HTTPNotFound if cluster does not exist
12         """
13         pass