package host type MachineID string type MachinePhase string type VolumeID string type VolumeKind string const ( MachinePhaseRunning MachinePhase = "running" MachinePhaseStopped MachinePhase = "stopped" MachinePhaseFailed MachinePhase = "failed" ) const ( VolumeKindSystem VolumeKind = "system" VolumeKindUser VolumeKind = "user" )