Skip to content

Commit

Permalink
Change percentagused to percentageused (#903)
Browse files Browse the repository at this point in the history
  • Loading branch information
phil-davis authored Jul 8, 2020
1 parent f9570fb commit 07ab188
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 19 deletions.
12 changes: 6 additions & 6 deletions pkg/eosclientgrpc/eos_grpc/eos_grpc.pb.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

26 changes: 13 additions & 13 deletions pkg/eosclientgrpc/eos_grpc/eos_grpc.proto
Original file line number Diff line number Diff line change
Expand Up @@ -138,19 +138,19 @@ enum TYPE { FILE = 0; CONTAINER = 1; LISTING = 2; STAT = 3;}
enum QUOTATYPE { USER = 0; GROUP = 2; PROJECT = 3; ALL = 4;}

message QuotaProto {
bytes path = 1; // quota node path
string name = 2; // associated name for the given type
QUOTATYPE type = 3; // user,group,project or all quota
uint64 usedbytes = 4; // bytes used physical
uint64 usedlogicalbytes = 5; // bytes used logical
uint64 usedfiles = 6; // number of files used
uint64 maxbytes = 7; // maximum number of bytes (volume quota)
uint64 maxlogicalbytes = 8; // maximum number of logical bytes (logical volume quota)
uint64 maxfiles = 9; // maximum number of files (inode quota)
float percentagusedbytes = 10; // percentage of volume quota used from 0 to 100
float percentagusedfiles = 11; // percentage of inode quota used from 0 to 100
string statusbytes = 12; // status string for volume quota ok,warning,exceeded
string statusfiles = 13; // status string for inode quota ok,warning,exceeded
bytes path = 1; // quota node path
string name = 2; // associated name for the given type
QUOTATYPE type = 3; // user,group,project or all quota
uint64 usedbytes = 4; // bytes used physical
uint64 usedlogicalbytes = 5; // bytes used logical
uint64 usedfiles = 6; // number of files used
uint64 maxbytes = 7; // maximum number of bytes (volume quota)
uint64 maxlogicalbytes = 8; // maximum number of logical bytes (logical volume quota)
uint64 maxfiles = 9; // maximum number of files (inode quota)
float percentageusedbytes = 10; // percentage of volume quota used from 0 to 100
float percentageusedfiles = 11; // percentage of inode quota used from 0 to 100
string statusbytes = 12; // status string for volume quota ok,warning,exceeded
string statusfiles = 13; // status string for inode quota ok,warning,exceeded
}

message RoleId {
Expand Down

0 comments on commit 07ab188

Please sign in to comment.