Skip to content

Commit

Permalink
fix: Update documented maximum and default page_size for ListRequisit…
Browse files Browse the repository at this point in the history
…ions and ListEventGroups (#219)
  • Loading branch information
SanjayVas authored Nov 15, 2024
1 parent 88b620e commit 1988184
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -118,9 +118,11 @@ message ListEventGroupsRequest {
(google.api.field_behavior) = REQUIRED
];

// The maximum number of `EventGroup`s to return. The service may return fewer
// than this value. If unspecified, at most 50 `EventGroup`s will be returned.
// The maximum value is 1000; values above 1000 will be coerced to 1000.
// The maximum number of resources to return. The service may return
// fewer than this value.
//
// If unspecified, at most 10 resources will be returned. The maximum value is
// 500; values above this will be coerced to the maximum.
int32 page_size = 2;
// A token from a previous call, specified to retrieve the next page. See
// https://aip.dev/158.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -62,10 +62,11 @@ message ListRequisitionsRequest {
(google.api.field_behavior) = REQUIRED
];

// The maximum number of `Requisition`s to return. The service may return
// fewer than this value. If unspecified, at most 50 `Requisition`s will be
// returned. The maximum value is 1000; values above 1000 will be coerced to
// 1000.
// The maximum number of resources to return. The service may return
// fewer than this value.
//
// If unspecified, at most 10 resources will be returned. The maximum value is
// 500; values above this will be coerced to the maximum.
int32 page_size = 2;
// A token from a previous call, specified to retrieve the next page. See
// https://aip.dev/158.
Expand Down

0 comments on commit 1988184

Please sign in to comment.