v1.5.0-gamma2

This commit is contained in:
2023-07-07 12:40:03 +03:00
parent 20fd7ab50c
commit 7c787f6fce
111 changed files with 2905 additions and 1505 deletions

View File

@@ -9,6 +9,26 @@ type Resources struct {
Reserved RecordResource `json:"Reserved"`
}
// Resource consumption information
type RecordResourcesConsumption struct {
// Current resources
Consumed RecordResource `json:"Consumed"`
// Reserved resources
Reserved RecordResource `json:"Reserved"`
// GID
GID uint64 `json:"gid"`
}
type ListResourceConsumption struct {
// Data
Data []RecordResourcesConsumption `json:"data"`
// Entry count
EntryCount uint64 `json:"entryCount"`
}
// Resource details
type RecordResource struct {
// Number of CPU
@@ -70,4 +90,19 @@ type RecordGrid struct {
}
// List Grids
type ListGrids []RecordGrid
type ListGrids struct {
//Data
Data []RecordGrid `json:"data"`
// Entry count
EntryCount uint64 `json:"entryCount"`
}
// List emails
type ListEmails struct {
//Data
Data []string `json:"data"`
// Entry count
EntryCount uint64 `json:"entryCount"`
}