volume.go

10 lines
1 2 3 4 5 6 7 8 9 10
package platform

// Volume represents attached block storage
type Volume struct {
	ID       string
	Name     string
	Size     int // Gigabytes
	Region   string
	ServerID string // Attached server (empty if detached)
}