Skip to content

Commit 6bc366d

Browse files
committed
Adds continue token to ListInstanceIDs
Signed-off-by: joshvanl <[email protected]>
1 parent 79770d4 commit 6bc366d

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

protos/orchestrator_service.proto

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -829,17 +829,21 @@ message ListInstanceIDsRequest {
829829
// continuationToken is the continuation token to use for pagination. This
830830
// is the index which the next page should start from. If not given, the first
831831
// page will be returned.
832-
optional uint32 continuationToken = 1;
832+
optional uint64 continuationToken = 1;
833833

834834
// pageSize is the maximum number of instances to return for this page. If
835835
// not given, all instances will be attempted to be returned.
836-
optional uint32 pageSize = 2;
836+
optional uint64 pageSize = 2;
837837
}
838838

839839
// ListInstanceIDsResponse is the response to executing ListInstanceIDs.
840840
message ListInstanceIDsResponse {
841841
// instanceIds is the list of instance IDs returned.
842842
repeated string instanceIds = 1;
843+
844+
// continuationToken is the continuation token to use for pagination. If
845+
// there are no more pages, this will be null.
846+
optional uint64 continueationToken = 2;
843847
}
844848

845849
// GetInstanceHistoryRequest is used to get the full history of an

0 commit comments

Comments
 (0)