This commit is contained in:
2026-08-21 18:12:55 +04:00
parent f34fa6055c
commit 3c5157281e
1285 changed files with 4016 additions and 3302 deletions

View File

@@ -456,11 +456,56 @@ type ItemFLIPGroup struct {
// Computes info
type Computes struct {
// Starting
Starting uint64 `json:"STARTING"`
// Started
Started uint64 `json:"Started"`
Started uint64 `json:"STARTED"`
// Stopping
Stopping uint64 `json:"STOPPING"`
// Stopped
Stopped uint64 `json:"Stopped"`
Stopped uint64 `json:"STOPPED"`
// Paused
Paused uint64 `json:"PAUSED"`
// Pausing
Pausing uint64 `json:"PAUSING"`
// Merge
Merge uint64 `json:"MERGE"`
// Migrating
Migrating uint64 `json:"MIGRATING"`
// Migrating in
MigratingIn uint64 `json:"MIGRATING_IN"`
// Migrating out
MigratingOut uint64 `json:"MIGRATING_OUT"`
// Down
Down uint64 `json:"DOWN"`
// Scheduled
Scheduled uint64 `json:"SCHEDULED"`
// Backup stopped
BackupStopped uint64 `json:"BACKUP_STOPPED"`
// Backup running
BackupRunning uint64 `json:"BACKUP_RUNNING"`
// Snapcreate
Snapcreate uint64 `json:"SNAPCREATE"`
// Cloning
Cloning uint64 `json:"CLONING"`
// Rollback
Rollback uint64 `json:"ROLLBACK"`
}
// Limits
@@ -579,6 +624,9 @@ type ItemVINS struct {
// Deleted time
DeletedTime uint64 `json:"deletedTime"`
// Enable Default Gateway
EnableDefaultGateway bool `json:"enable_default_gateway"`
// External IP
ExternalIP string `json:"externalIP"`