From 580e37c3822f33483e115cbd4616f93cddfc188b Mon Sep 17 00:00:00 2001 From: Leonard Lyubich Date: Mon, 4 Oct 2021 15:27:28 +0300 Subject: [PATCH] [#150] object: Define enum of status codes of Object.Put failures Signed-off-by: Leonard Lyubich --- object/status.proto | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/object/status.proto b/object/status.proto index 9430cbd..45929b1 100644 --- a/object/status.proto +++ b/object/status.proto @@ -10,3 +10,11 @@ import "status/types.proto"; enum StatusCommon { ACCESS_DENIED = 0; } + +enum StatusPut { + STATUS_PUT_INCOMPLETE = 0; +} + +message PutIncompleteDetail { + repeated neo.fs.v2.status.Status statuses = 1; +}