| Name | Type | Description |
|---|---|---|
name_contains | Optional[str] | Default: NoneOptional case-insensitive substring filter applied to snapshot names server-side. |
limit | Optional[int] | Default: NoneOptional maximum number of snapshots to return for a single request. Must be between 1 and 500 (inclusive); the server rejects values outside that range. Defaults to 50 server-side when omitted. |
offset | Optional[int] | Default: None |
List snapshots.
The backend always paginates this endpoint. When limit is omitted
the server applies a default page size (currently 50), so a single
call is not guaranteed to return every snapshot. To iterate through
all results, repeat the call with increasing offset values (or an
explicit limit) until fewer than limit snapshots come back.
Optional number of snapshots to skip before returning
results. Must be >= 0. Useful for paginating through
large result sets in combination with limit.