Skip to content

Commit

Permalink
fix: Added comments
Browse files Browse the repository at this point in the history
  • Loading branch information
lfbrehm committed Jun 26, 2023
1 parent 8b3815d commit 90d3a25
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion aruna/api/storage/services/v1/object_service.proto
Original file line number Diff line number Diff line change
Expand Up @@ -358,7 +358,7 @@ service ObjectService {
//
// Status: ALPHA
//
// Gets a list of objects represented similar to a S3 ListObjectsV2 request
// Gets a list of ObjectWithURLs represented similar to a S3 ListObjectsV2 request
// !! Paths are collection specific !!
rpc GetObjectsAsListV2(GetObjectsAsListV2Request) returns (GetObjectsAsListV2Response) {
option (google.api.http) = {
Expand Down Expand Up @@ -828,6 +828,7 @@ message GetObjectsAsListV2Response {
bool is_truncated = 2;
uint32 max_keys = 4;
uint32 key_count = 5;
// Does not contain URLs, only paths
repeated ObjectWithURL contents = 6;
repeated CommonPrefix prefixes = 7;
optional string next_continuation_token = 8;
Expand Down

0 comments on commit 90d3a25

Please sign in to comment.