pause_dag
Pause an Airflow DAG to prevent scheduling new runs, ensuring workflow control. Specify the DAG ID to halt execution and receive confirmation of the paused state.
Instructions
[Tool Role]: Pauses the specified Airflow DAG (prevents scheduling new runs).
Args: dag_id: The DAG ID to pause
Returns: Minimal info about the paused 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"
}