unpause_dag
Resume a paused Airflow DAG by providing its ID to restart scheduled task execution and workflow automation.
Instructions
Unpause a DAG by ID
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| dag_id | Yes |
Input Schema (JSON Schema)
{
"properties": {
"dag_id": {
"title": "Dag Id",
"type": "string"
}
},
"required": [
"dag_id"
],
"type": "object"
}