Skip to content

Commit

Permalink
add remaining files and bytes in quota struct (#229)
Browse files Browse the repository at this point in the history
Co-authored-by: Gianmaria Del Monte <[email protected]>
  • Loading branch information
gmgigi96 and gmgigi96 authored Apr 25, 2024
1 parent 0f3d9ed commit c6fd8f2
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions cs3/storage/provider/v1beta1/resources.proto
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}

0 comments on commit c6fd8f2

Please sign in to comment.