list_pools
Retrieve and view all pools in an Apache Airflow instance, including their configurations and usage details, with options for pagination and limit control.
Instructions
[Tool Role]: List all pools in the Airflow instance.
Args: limit: Maximum number of pools to return (default: 20) offset: Number of pools to skip for pagination (default: 0)
Returns: List of pools with their configuration and usage information
Input Schema
Name | Required | Description | Default |
---|---|---|---|
limit | No | ||
offset | No |
Input Schema (JSON Schema)
{
"properties": {
"limit": {
"default": 20,
"title": "Limit",
"type": "integer"
},
"offset": {
"default": 0,
"title": "Offset",
"type": "integer"
}
},
"type": "object"
}