get_providers
Retrieve a list of loaded providers in Apache Airflow, with options to limit or offset results, for effective system management and integration.
Instructions
Get a list of loaded providers
Input Schema
Name | Required | Description | Default |
---|---|---|---|
limit | No | ||
offset | 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"
}
},
"title": "get_providersArguments",
"type": "object"
}