list_report_definitions
Browse available report definition templates in Aria Operations. Get a paginated list and pass a returned id to generate and run a report.
Instructions
[READ] List available report definition templates in Aria Operations. Pass a returned id to generate_report to run one.
Returns a paginated envelope: items, returned, limit, total (null when the API reports no size), truncated, hint, next_offset. Check truncated before calling this the complete set.
Page it: limit is the page size (1-500; 0, negatives and anything above 500 are rejected, not clamped), offset is how many rows to skip, and next_offset is the offset of the next page — pass it back as offset and stop when it is null. Do not loop on truncated: that says this page is not the whole collection, so it stays true on the last page of a walk.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Page size, 1–500 (default 100). Out-of-range is rejected. | |
| offset | No | Definitions to skip; pass the previous response's next_offset. | |
| target | No | Aria target name from config; default when omitted. | |
| name_filter | No | Substring filter on report name (case-insensitive). |