mirror of
https://github.com/minio/minio.git
synced 2025-11-10 05:59:43 -05:00
Add bucket and object count along with total object size (#8639)
This commit is contained in:
committed by
Harshavardhana
parent
c364f0af6c
commit
abc266caa1
@@ -408,12 +408,12 @@ type Services struct {
|
||||
|
||||
// Buckets contains the number of buckets
|
||||
type Buckets struct {
|
||||
Count int `json:"count,omitempty"`
|
||||
Count uint64 `json:"count,omitempty"`
|
||||
}
|
||||
|
||||
// Objects contains the number of objects
|
||||
type Objects struct {
|
||||
Count int `json:"count,omitempty"`
|
||||
Count uint64 `json:"count,omitempty"`
|
||||
}
|
||||
|
||||
// Usage contains the tottal size used
|
||||
|
||||
Reference in New Issue
Block a user