summaryrefslogtreecommitdiff
path: root/heatclient/v1/actions.py
diff options
context:
space:
mode:
Diffstat (limited to 'heatclient/v1/actions.py')
-rw-r--r--heatclient/v1/actions.py7
1 files changed, 7 insertions, 0 deletions
diff --git a/heatclient/v1/actions.py b/heatclient/v1/actions.py
index 9c7028f..4ecd2b6 100644
--- a/heatclient/v1/actions.py
+++ b/heatclient/v1/actions.py
@@ -53,3 +53,10 @@ class ActionManager(stacks.StackChildManager):
resp, body = self.client.json_request('POST',
'/stacks/%s/actions' % stack_id,
data=body)
+
+ def check(self, stack_id):
+ """Check a stack."""
+ body = {'check': None}
+ resp, body = self.client.json_request('POST',
+ '/stacks/%s/actions' % stack_id,
+ data=body)