get_datasets
Retrieve and filter datasets from Apache Airflow by specifying parameters like limit, offset, order, URI pattern, or DAG IDs for streamlined data management.
Instructions
List datasets
Input Schema
Name | Required | Description | Default |
---|---|---|---|
dag_ids | No | ||
limit | No | ||
offset | No | ||
order_by | No | ||
uri_pattern | No |
Input Schema (JSON Schema)
{
"properties": {
"dag_ids": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Dag Ids"
},
"limit": {
"anyOf": [
{
"type": "integer"
},
{
"type": "null"
}
],
"default": null,
"title": "Limit"
},
"offset": {
"anyOf": [
{
"type": "integer"
},
{
"type": "null"
}
],
"default": null,
"title": "Offset"
},
"order_by": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Order By"
},
"uri_pattern": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Uri Pattern"
}
},
"title": "get_datasetsArguments",
"type": "object"
}