list_variables
Retrieve and manage Airflow variables by listing them with optional filters like limit, offset, and order_by. Simplifies access to key-value pairs within your Airflow environment.
Instructions
List all variables
Input Schema
Name | Required | Description | Default |
---|---|---|---|
limit | No | ||
offset | No | ||
order_by | No |
Input Schema (JSON Schema)
{
"properties": {
"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"
}
},
"title": "list_variablesArguments",
"type": "object"
}