File tree Expand file tree Collapse file tree 1 file changed +6
-2
lines changed Expand file tree Collapse file tree 1 file changed +6
-2
lines changed Original file line number Diff line number Diff 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.
840840message 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
You can’t perform that action at this time.
0 commit comments