v16.0.0
This commit is contained in:
@@ -203,11 +203,56 @@ type ListResourceConsumption struct {
|
||||
|
||||
// Information about computes
|
||||
type Computes struct {
|
||||
// Number of starting computes
|
||||
Starting uint64 `json:"STARTING"`
|
||||
|
||||
// Number of started computes
|
||||
Started uint64 `json:"started"`
|
||||
Started uint64 `json:"STARTED"`
|
||||
|
||||
// Number of stopping computes
|
||||
Stopping uint64 `json:"STOPPING"`
|
||||
|
||||
// Number of stopped computes
|
||||
Stopped uint64 `json:"stopped"`
|
||||
Stopped uint64 `json:"STOPPED"`
|
||||
|
||||
// Number of paused computes
|
||||
Paused uint64 `json:"PAUSED"`
|
||||
|
||||
// Number of pausing computes
|
||||
Pausing uint64 `json:"PAUSING"`
|
||||
|
||||
// Number of merging computes
|
||||
Merge uint64 `json:"MERGE"`
|
||||
|
||||
// Number of migrating computes
|
||||
Migrating uint64 `json:"MIGRATING"`
|
||||
|
||||
// Number of computes migrating in
|
||||
MigratingIn uint64 `json:"MIGRATING_IN"`
|
||||
|
||||
// Number of computes migrating out
|
||||
MigratingOut uint64 `json:"MIGRATING_OUT"`
|
||||
|
||||
// Number of computes in down status
|
||||
Down uint64 `json:"DOWN"`
|
||||
|
||||
// Number of scheduled computes
|
||||
Scheduled uint64 `json:"SCHEDULED"`
|
||||
|
||||
// Number of computes with stopped backup
|
||||
BackupStopped uint64 `json:"BACKUP_STOPPED"`
|
||||
|
||||
// Number of computes with running backup
|
||||
BackupRunning uint64 `json:"BACKUP_RUNNING"`
|
||||
|
||||
// Number of computes creating a snapshot
|
||||
Snapcreate uint64 `json:"SNAPCREATE"`
|
||||
|
||||
// Number of cloning computes
|
||||
Cloning uint64 `json:"CLONING"`
|
||||
|
||||
// Number of computes being rolled back
|
||||
Rollback uint64 `json:"ROLLBACK"`
|
||||
}
|
||||
|
||||
// Information about machines
|
||||
@@ -455,6 +500,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"`
|
||||
|
||||
@@ -524,11 +572,56 @@ type ListAudits []ItemAudit
|
||||
|
||||
// Information compute in resource group
|
||||
type RGComputes struct {
|
||||
// Number of starting computes
|
||||
Starting uint64 `json:"STARTING"`
|
||||
|
||||
// Number of started computes
|
||||
Started uint64 `json:"Started"`
|
||||
Started uint64 `json:"STARTED"`
|
||||
|
||||
// Number of stopping computes
|
||||
Stopping uint64 `json:"STOPPING"`
|
||||
|
||||
// Number of stopped computes
|
||||
Stopped uint64 `json:"Stopped"`
|
||||
Stopped uint64 `json:"STOPPED"`
|
||||
|
||||
// Number of paused computes
|
||||
Paused uint64 `json:"PAUSED"`
|
||||
|
||||
// Number of pausing computes
|
||||
Pausing uint64 `json:"PAUSING"`
|
||||
|
||||
// Number of merging computes
|
||||
Merge uint64 `json:"MERGE"`
|
||||
|
||||
// Number of migrating computes
|
||||
Migrating uint64 `json:"MIGRATING"`
|
||||
|
||||
// Number of computes migrating in
|
||||
MigratingIn uint64 `json:"MIGRATING_IN"`
|
||||
|
||||
// Number of computes migrating out
|
||||
MigratingOut uint64 `json:"MIGRATING_OUT"`
|
||||
|
||||
// Number of computes in down status
|
||||
Down uint64 `json:"DOWN"`
|
||||
|
||||
// Number of scheduled computes
|
||||
Scheduled uint64 `json:"SCHEDULED"`
|
||||
|
||||
// Number of computes with stopped backup
|
||||
BackupStopped uint64 `json:"BACKUP_STOPPED"`
|
||||
|
||||
// Number of computes with running backup
|
||||
BackupRunning uint64 `json:"BACKUP_RUNNING"`
|
||||
|
||||
// Number of computes creating a snapshot
|
||||
Snapcreate uint64 `json:"SNAPCREATE"`
|
||||
|
||||
// Number of cloning computes
|
||||
Cloning uint64 `json:"CLONING"`
|
||||
|
||||
// Number of computes being rolled back
|
||||
Rollback uint64 `json:"ROLLBACK"`
|
||||
}
|
||||
|
||||
// Resources of Resource group
|
||||
|
||||
Reference in New Issue
Block a user