unpause_dag
Resume scheduling for a paused Airflow DAG by specifying its ID, enabling new runs to execute efficiently without API complexity.
Instructions
[Tool Role]: Unpauses the specified Airflow DAG (allows scheduling new runs).
Args: dag_id: The DAG ID to unpause
Returns: Minimal info about the unpaused DAG: dag_id, is_paused
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"
}