
Resume
Resume a paused execution
Resume a paused execution
Resume a paused execution
This task uses the Kestra API to resume an execution that is in a PAUSED state.
type: "io.kestra.plugin.kestra.executions.Resume"Examples
Resume an execution
id: "resume"
type: "io.kestra.plugin.kestra.executions.Resume"
executionId: "{{ trigger.executionId }}"Resume an execution with inputs
id: "resume"
type: "io.kestra.plugin.kestra.executions.Resume"
executionId: "{{ trigger.executionId }}"
inputs:
comment: "Approved by automated process"
status: "OK"Properties
authNon-dynamic
Authentication information.
Authentication used to call the Kestra API. Uses the same credentials as Kestra login: either an API token or HTTP Basic (username/password).
io.kestra.plugin.kestra.AbstractKestraTask-Auth
API token
Password for HTTP basic authentication
Username for HTTP basic authentication
executionIdstring
The Execution ID to resume
If not provided, defaults to the current execution ID.
inputsobject
Map of inputs to send to the paused execution
kestraUrlstring
Kestra API URL. If null, uses 'kestra.url' from configuration. If that is also null, defaults to 'http://localhost: 8080'.
tenantIdstring
The tenant ID to use for the request, defaults to current tenant.