Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Hypervisor ¶
type Hypervisor interface { Start(vmName string) error Commit(vmName, imageName string) error Create(imageName, vmName string, cpus int, mem int) error List(all bool, excludeFunc func(vmName string) bool) ([]string, error) Stop(vmName string) error Remove(vmName string) error Modify(vmName string, cpus int, mem int) error ShowGUI(vmName string) error AddMount(vmName, ipAddr, hostPath, guestPath string) error RemoveMounts(vmName, ipAddr string) error ListMounts(vmName, ipAddr string) ([]MountPath, error) SetNetworkAdapterAsBridge(vmName string) error GetBoxInfo(vmName string) (*Box, error) GetSubnet() (*Subnet, error) }
Click to show internal directories.
Click to hide internal directories.