(self, actionexecution_id, expect_errors=False)
| 404 | return self.app.post_json("/v1/executions", liveaction, *args, **kwargs) |
| 405 | |
| 406 | def _do_delete(self, actionexecution_id, expect_errors=False): |
| 407 | return self.app.delete( |
| 408 | "/v1/executions/%s" % actionexecution_id, expect_errors=expect_errors |
| 409 | ) |
| 410 | |
| 411 | def _do_put(self, actionexecution_id, updates, *args, **kwargs): |
| 412 | return self.app.put_json( |