patch_dags
Update multiple DAGs in Apache Airflow by modifying pause status, tags, or filtering by DAG ID pattern to manage workflow configurations.
Instructions
Update multiple DAGs
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| dag_id_pattern | No | ||
| is_paused | No | ||
| tags | No |
Input Schema (JSON Schema)
{
"properties": {
"dag_id_pattern": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Dag Id Pattern"
},
"is_paused": {
"anyOf": [
{
"type": "boolean"
},
{
"type": "null"
}
],
"default": null,
"title": "Is Paused"
},
"tags": {
"anyOf": [
{
"items": {
"type": "string"
},
"type": "array"
},
{
"type": "null"
}
],
"default": null,
"title": "Tags"
}
},
"type": "object"
}