list_symptom_definitions
List symptom definitions to retrieve their IDs for creating alert definitions. Filter by name or resource kind and paginate through results to find the exact symptoms.
Instructions
[READ] List symptom definitions — use the returned IDs when calling create_alert_definition.
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 symptom name (case-insensitive). | |
| resource_kind | No | Optional resource kind filter, e.g. VirtualMachine, HostSystem. |