pause_dag
Pause an Airflow DAG to temporarily halt its scheduled runs and task execution, allowing for maintenance or troubleshooting without deleting the workflow.
Instructions
Pause 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"
}