From c6fd8f2af646b95c72b335a03115dcb20f71dd85 Mon Sep 17 00:00:00 2001 From: Gianmaria Del Monte <39946305+gmgigi96@users.noreply.github.com> Date: Thu, 25 Apr 2024 13:39:37 +0200 Subject: [PATCH] add remaining files and bytes in quota struct (#229) Co-authored-by: Gianmaria Del Monte --- cs3/storage/provider/v1beta1/resources.proto | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/cs3/storage/provider/v1beta1/resources.proto b/cs3/storage/provider/v1beta1/resources.proto index a11e999..cc07cc9 100644 --- a/cs3/storage/provider/v1beta1/resources.proto +++ b/cs3/storage/provider/v1beta1/resources.proto @@ -488,9 +488,15 @@ message Quota { // Opaque information. cs3.types.v1beta1.Opaque opaque = 1; // OPTIONAL. - // The bytes quota for the user. + // The bytes quota for the space. uint64 quota_max_bytes = 2; // OPTIONAL. - // The files quota for the user. + // The files quota for the space. uint64 quota_max_files = 3; + // OPTIONAL. + // The remaining bytes for the space. + uint64 remaining_bytes = 4; + // OPTIONAL. + // The remaining files for the space. + uint64 remaining_files = 5; }