From b644dbb2b961d238f58299fb9c0ce325b66a03e9 Mon Sep 17 00:00:00 2001 From: Jannis Hochmuth Date: Tue, 29 Oct 2024 12:45:00 +0100 Subject: [PATCH] feat: Add upload_id to to upload url requests --- aruna/api/storage/services/v2/object_service.proto | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/aruna/api/storage/services/v2/object_service.proto b/aruna/api/storage/services/v2/object_service.proto index 9d5b82ec..a0a7c992 100644 --- a/aruna/api/storage/services/v2/object_service.proto +++ b/aruna/api/storage/services/v2/object_service.proto @@ -218,11 +218,15 @@ message GetUploadURLRequest { bool multipart = 2; // (optional) if multi was initialized int32 part_number = 3; + // (optional) if part_number > 1 and multipart = true + string upload_id = 4; } message GetUploadURLResponse { // URL string url = 1; + // Upload Id (can be ignored with single part uploads) + string upload_id = 2; } message GetDownloadURLRequest {