databricks-sdk-go
databricks-sdk-go copied to clipboard
[ISSUE] Users.ListAll function handles `Count` parameter as total count, not as the page size.
Tested on current Terraform trunk.
The documentation for aim.ListUsersRequest says (Go SDK as well):
// Desired number of results per page.
Count int64 `json:"-" url:"count,omitempty"`
But it's treated as a total Count, not as page size, so if I specify it, it returns only N items, although I want to have just a bigger page size to avoid performance problems when listing users in the big workspace.