|
|
@ -195,17 +195,20 @@ type Services struct { |
|
|
|
|
|
|
|
|
|
|
|
// Buckets contains the number of buckets
|
|
|
|
// Buckets contains the number of buckets
|
|
|
|
type Buckets struct { |
|
|
|
type Buckets struct { |
|
|
|
Count uint64 `json:"count,omitempty"` |
|
|
|
Count uint64 `json:"count"` |
|
|
|
|
|
|
|
Error string `json:"error,omitempty"` |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
// Objects contains the number of objects
|
|
|
|
// Objects contains the number of objects
|
|
|
|
type Objects struct { |
|
|
|
type Objects struct { |
|
|
|
Count uint64 `json:"count,omitempty"` |
|
|
|
Count uint64 `json:"count"` |
|
|
|
|
|
|
|
Error string `json:"error,omitempty"` |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
// Usage contains the tottal size used
|
|
|
|
// Usage contains the total size used
|
|
|
|
type Usage struct { |
|
|
|
type Usage struct { |
|
|
|
Size uint64 `json:"size,omitempty"` |
|
|
|
Size uint64 `json:"size"` |
|
|
|
|
|
|
|
Error string `json:"error,omitempty"` |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
// KMS contains KMS status information
|
|
|
|
// KMS contains KMS status information
|
|
|
|