From 31b7b073c21e0170c9adafb8b3de0cfa21c5e536 Mon Sep 17 00:00:00 2001
From: Evgenii Stratonikov <evgeniy@nspcc.ru>
Date: Wed, 9 Feb 2022 13:36:32 +0300
Subject: [PATCH] [#190] status: add Container section and CONTAINER_NOT_FOUND
 code

Signed-off-by: Evgenii Stratonikov <evgeniy@nspcc.ru>
---
 status/types.proto | 8 ++++++++
 1 file changed, 8 insertions(+)

diff --git a/status/types.proto b/status/types.proto
index 80aaf0f..c243d43 100644
--- a/status/types.proto
+++ b/status/types.proto
@@ -67,6 +67,9 @@ enum Section {
 
     // Object service-specific errors.
     SECTION_OBJECT = 2;
+
+    // Container service-specific errors.
+    SECTION_CONTAINER = 3;
 }
 
 // Section of NeoFS successful return codes.
@@ -100,4 +103,9 @@ enum Object {
     // [**2049**] Object not found.
     OBJECT_NOT_FOUND = 1;
 }
+
+// Section of statuses for container-related operations.
+enum Container {
+    // [**3072**] Container not found.
+    CONTAINER_NOT_FOUND = 0;
 }
\ No newline at end of file