readysite / pkg / platform / volume.go
222 B
volume.go
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)
}
← Back