list_groups
List NSX security groups in the default domain, returning each group's ID, name, and description. Use name filters or pagination to navigate large collections without missing data.
Instructions
[READ] List NSX security groups in the default domain.
Returns the list envelope: 'items' holds each group's id, display_name, description and expression count; 'returned'/'limit'/'total'/ 'truncated'/'hint' say whether the page is the whole answer — never read a full page as complete, narrow with name_filter or page with offset. Then get_group for one group's criteria and effective members.
Page with 'next_offset': pass the value back as 'offset' and stop when it is null. Do not loop on 'truncated' — that says this page is not the whole collection, which stays true on the last page of a walk.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Page size, 1..1000 (default 50). Not a way to ask for everything — 0 or negative is rejected. | |
| offset | No | Matched groups to skip, 0 or more. Pass the previous response's 'next_offset'. | |
| target | No | Optional NSX Manager target from config. | |
| name_filter | No | Substring/glob match on group display_name. |