fix: add missing pagination to api client

fix: add missing docs
This commit is contained in:
Marcel S. Henselin 2025-12-30 11:50:36 +01:00
parent 7d66568003
commit 9a18db49ad
9 changed files with 752 additions and 52 deletions

View file

@ -2526,6 +2526,9 @@ func (a *APIClient) GetFlavorsRequest(ctx context.Context, projectId string, reg
ctx: ctx,
projectId: projectId,
region: region,
page: page,
size: size,
sort: sort,
}
}
@ -2535,6 +2538,9 @@ func (a *APIClient) GetFlavorsRequestExecute(ctx context.Context, projectId stri
ctx: ctx,
projectId: projectId,
region: region,
page: page,
size: size,
sort: sort,
}
return r.Execute()
}