TUN-5262: Allow to configure max fetch size for listing queries

This can be useful/important for accounts with many tunnels that exceed
the 1000 default page size.

There are various tunnel subcommands that use listing underneath, so we make
that flag a tunnel one, rather than adding it to each subcommand.
This commit is contained in:
Nuno Diegues
2021-10-18 10:32:33 +01:00
parent 3f4407ce27
commit eb51ff0a6d
4 changed files with 22 additions and 0 deletions

View File

@@ -2,6 +2,7 @@ package tunnelstore
import (
"net/url"
"strconv"
"time"
"github.com/google/uuid"
@@ -45,6 +46,10 @@ func (f *Filter) ByTunnelID(tunnelID uuid.UUID) {
f.queryParams.Set("uuid", tunnelID.String())
}
func (f *Filter) MaxFetchSize(max uint) {
f.queryParams.Set("per_page", strconv.Itoa(int(max)))
}
func (f Filter) encode() string {
return f.queryParams.Encode()
}