| 208 | } |
| 209 | |
| 210 | type Capacity struct { |
| 211 | MemoryInBytes uint64 `json:"memory_in_bytes,omitempty"` |
| 212 | // Total size of the image plugin store volume. |
| 213 | // NB: It is recommended to use `SchedulableDiskInBytes` for scheduling purposes |
| 214 | DiskInBytes uint64 `json:"disk_in_bytes,omitempty"` |
| 215 | // Total scratch space (in bytes) available to containers. This is the size the image plugin store get grow up to. |
| 216 | SchedulableDiskInBytes uint64 `json:"schedulable_disk_in_bytes,omitempty"` |
| 217 | MaxContainers uint64 `json:"max_containers,omitempty"` |
| 218 | } |
| 219 | |
| 220 | type Properties map[string]string |
| 221 |
nothing calls this directly
no outgoing calls
no test coverage detected