patch_dags
Modify multiple DAGs in Apache Airflow by updating parameters like pause state, tags, or filtering by ID pattern efficiently.
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"
}
},
"title": "patch_dagsArguments",
"type": "object"
}