From 063563557d0dc7cce3645cca0e9e59d36feb7c77 Mon Sep 17 00:00:00 2001 From: Jannis Hochmuth Date: Wed, 30 Oct 2024 10:54:16 +0100 Subject: [PATCH] feat: Add upload_id to FinishObjectStagingRequest --- aruna/api/storage/services/v2/object_service.proto | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/aruna/api/storage/services/v2/object_service.proto b/aruna/api/storage/services/v2/object_service.proto index a0a7c992..42b1602c 100644 --- a/aruna/api/storage/services/v2/object_service.proto +++ b/aruna/api/storage/services/v2/object_service.proto @@ -258,6 +258,11 @@ message FinishObjectStagingRequest { // Should be empty if the upload was not multipart. // (optional) repeated CompletedPart completed_parts = 4; + + // If the upload was multipart, this is the upload id which should be completed. + // Should be empty if the upload was not multipart. + // (optional) + string upload_id = 5; } message FinishObjectStagingResponse {