pause_dag
Temporarily halt a specific directed acyclic graph (DAG) in Apache Airflow by specifying its ID, enabling control over workflow execution without deletion.
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"
],
"title": "pause_dagArguments",
"type": "object"
}