ResumeResume
ResumeCertified

Resume a paused execution

Resume a paused execution

This task uses the Kestra API to resume an execution that is in a PAUSED state.

yaml
type: "io.kestra.plugin.kestra.executions.Resume"

Resume an execution

yaml
id: "resume"
type: "io.kestra.plugin.kestra.executions.Resume"
executionId: "{{ trigger.executionId }}"

Resume an execution with inputs

yaml
id: "resume"
type: "io.kestra.plugin.kestra.executions.Resume"
executionId: "{{ trigger.executionId }}"
inputs:
  comment: "Approved by automated process"
  status: "OK"
Properties

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).

Definitions
apiTokenstring

API token

passwordstring

Password for HTTP basic authentication

usernamestring

Username for HTTP basic authentication

The Execution ID to resume

If not provided, defaults to the current execution ID.

Map of inputs to send to the paused execution

Kestra API URL. If null, uses 'kestra.url' from configuration. If that is also null, defaults to 'http://localhost: 8080'.

The tenant ID to use for the request, defaults to current tenant.