unpause_dag
Resumes a paused Apache Airflow DAG by specifying its ID, enabling task scheduling and execution within the workflow.
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"
],
"title": "unpause_dagArguments",
"type": "object"
}