mirror of
https://github.com/FlipsideCrypto/convox.git
synced 2026-02-06 19:07:13 +00:00
13 lines
401 B
Go
13 lines
401 B
Go
package structs
|
|
|
|
type Capacity struct {
|
|
ClusterCPU int64 `json:"cluster-cpu"`
|
|
ClusterMemory int64 `json:"cluster-memory"`
|
|
InstanceCPU int64 `json:"instance-cpu"`
|
|
InstanceMemory int64 `json:"instance-memory"`
|
|
ProcessCount int64 `json:"process-count"`
|
|
ProcessCPU int64 `json:"process-cpu"`
|
|
ProcessMemory int64 `json:"process-memory"`
|
|
ProcessWidth int64 `json:"process-width"`
|
|
}
|