get_plugins
Retrieve a list of loaded plugins from Apache Airflow to monitor and manage plugin configurations efficiently, with options to limit or offset results for better control.
Instructions
Get a list of loaded plugins
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_pluginsArguments",
"type": "object"
}