fetch_dags
Retrieve and filter DAGs from Apache Airflow using customizable parameters like tags, status, and naming patterns for efficient workflow management.
Instructions
Fetch all DAGs
Input Schema
Name | Required | Description | Default |
---|---|---|---|
dag_id_pattern | No | ||
limit | No | ||
offset | No | ||
only_active | No | ||
order_by | No | ||
paused | No | ||
tags | No |
Input Schema (JSON Schema)
{
"properties": {
"dag_id_pattern": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Dag Id Pattern"
},
"limit": {
"anyOf": [
{
"type": "integer"
},
{
"type": "null"
}
],
"default": null,
"title": "Limit"
},
"offset": {
"anyOf": [
{
"type": "integer"
},
{
"type": "null"
}
],
"default": null,
"title": "Offset"
},
"only_active": {
"anyOf": [
{
"type": "boolean"
},
{
"type": "null"
}
],
"default": null,
"title": "Only Active"
},
"order_by": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Order By"
},
"paused": {
"anyOf": [
{
"type": "boolean"
},
{
"type": "null"
}
],
"default": null,
"title": "Paused"
},
"tags": {
"anyOf": [
{
"items": {
"type": "string"
},
"type": "array"
},
{
"type": "null"
}
],
"default": null,
"title": "Tags"
}
},
"title": "get_dagsArguments",
"type": "object"
}