2015-09-09 20:02:39 +00:00
|
|
|
package api
|
|
|
|
|
|
|
|
// Resources encapsulates the required resources of
|
|
|
|
// a given task or task group.
|
|
|
|
type Resources struct {
|
2015-09-23 18:14:32 +00:00
|
|
|
CPU int
|
2015-09-09 20:02:39 +00:00
|
|
|
MemoryMB int
|
|
|
|
DiskMB int
|
|
|
|
IOPS int
|
|
|
|
Networks []*NetworkResource
|
|
|
|
}
|
|
|
|
|
|
|
|
// NetworkResource is used to describe required network
|
|
|
|
// resources of a given task.
|
|
|
|
type NetworkResource struct {
|
|
|
|
Public bool
|
|
|
|
CIDR string
|
|
|
|
ReservedPorts []int
|
2015-09-24 01:01:49 +00:00
|
|
|
DynamicPorts []string
|
2015-09-09 20:02:39 +00:00
|
|
|
MBits int
|
|
|
|
}
|