summaryrefslogtreecommitdiff
path: root/heatclient/v1/client.py
diff options
context:
space:
mode:
authorRichard Lee <rblee88@gmail.com>2014-01-08 16:50:25 -0600
committerAnderson Mesquita <andersonvom@gmail.com>2014-01-24 14:07:30 -0500
commit9a43fe6e82bdd13435705dc98928488136723f27 (patch)
treec9d6dea4a00f4b0cecfb6a59fa1626f53a7227e0 /heatclient/v1/client.py
parentb76ed8d85736c77942a65d0c9c6fc84cdfec2941 (diff)
downloadpython-heatclient-9a43fe6e82bdd13435705dc98928488136723f27.tar.gz
Add support for build info API
Add new command to interact with the build info API and return build revision information. Closes-Bug: #1267586 Change-Id: Iea501cea4ddfd0a9f463299f71b72795a93e4def
Diffstat (limited to 'heatclient/v1/client.py')
-rw-r--r--heatclient/v1/client.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/heatclient/v1/client.py b/heatclient/v1/client.py
index 39fbe6e..827a4fc 100644
--- a/heatclient/v1/client.py
+++ b/heatclient/v1/client.py
@@ -15,6 +15,7 @@
from heatclient.common import http
from heatclient.v1 import actions
+from heatclient.v1 import build_info
from heatclient.v1 import events
from heatclient.v1 import resource_types
from heatclient.v1 import resources
@@ -40,3 +41,4 @@ class Client(object):
self.http_client)
self.events = events.EventManager(self.http_client)
self.actions = actions.ActionManager(self.http_client)
+ self.build_info = build_info.BuildInfoManager(self.http_client)