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

@@ -98,7 +98,7 @@ type ACL struct {
// Resource limits
type ResourceLimits struct {
// CuC
// CuC
CuC float64 `json:"CU_C"`
// CuD
@@ -210,18 +210,23 @@ type ItemAccount struct {
InfoAccount
}
// List of accounts
type ListDeleted []ItemAccount
// List of accounts
type ListAccounts struct {
// Data
Data []ItemAccount `json:"data"`
// Entry count
EntryCount uint64 `json:"entryCount"`
}
// List of computes
type ListComputes []ItemCompute
type ListComputes struct {
// Data
Data []ItemCompute `json:"data"`
// Entry count
EntryCount uint64 `json:"entryCount"`
}
// Main information about compute
type ItemCompute struct {
@@ -287,7 +292,13 @@ type ItemCompute struct {
}
// List of disks
type ListDisks []ItemDisk
type ListDisks struct {
// Data
Data []ItemDisk `json:"data"`
// Entry count
EntryCount uint64 `json:"entryCount"`
}
// Main information about disks
type ItemDisk struct {
@@ -314,7 +325,13 @@ type ItemDisk struct {
}
// List of FLIPGroups
type ListFLIPGroups []ItemFLIPGroup
type ListFLIPGroups struct {
// Data
Data []ItemFLIPGroup `json:"data"`
// Entry count
EntryCount uint64 `json:"entryCount"`
}
// Main information about FLIPGroup
type ItemFLIPGroup struct {
@@ -500,7 +517,13 @@ type ItemRG struct {
}
// List of resource groups
type ListRG []ItemRG
type ListRG struct {
// Data
Data []ItemRG `json:"data"`
// Entry count
EntryCount uint64 `json:"entryCount"`
}
// Main information about VINS
type ItemVINS struct {
@@ -557,4 +580,10 @@ type ItemVINS struct {
}
// List of VINSes
type ListVINS []ItemVINS
type ListVINS struct {
//Data
Data []ItemVINS `json:"data"`
// Entry count
EntryCount uint64 `json:"entryCount"`
}