You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
package sizes
|
|
|
|
type Size struct {
|
|
Description string `json:"desc"`
|
|
Disks []uint64 `json:"disks"`
|
|
ID uint64 `json:"id"`
|
|
Memory uint64 `json:"memory"`
|
|
Name string `json:"name"`
|
|
VCPUs uint64 `json:"vcpus"`
|
|
}
|
|
|
|
type SizesList []Size
|