list_alert_definitions
List alert definition templates that trigger alerts, with optional name filtering and pagination, so you can locate and manage alert rules.
Instructions
[READ] List alert definitions (templates that generate alerts when triggered).
criticality is the max severity across the definition's states[] (the AlertDefinition model has no top-level criticality or enabled field). Pass a returned id to set_alert_definition_state to enable or disable it.
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 definition name (case-insensitive). |