Documentation ¶
Index ¶
- Constants
- func Attributes(ctx context.Context, session *session.Session, ...) ([]mo.VirtualMachine, error)
- func IsConfigureSnapshot(node *types.VirtualMachineSnapshotTree, prefix string) bool
- type InvalidState
- type VirtualMachine
- func (vm *VirtualMachine) DatastoreFolderName(ctx context.Context) (string, error)
- func (vm *VirtualMachine) DatastoreReference(ctx context.Context) ([]types.ManagedObjectReference, error)
- func (vm *VirtualMachine) DeleteExceptDisks(ctx context.Context) (*types.TaskInfo, error)
- func (vm *VirtualMachine) DisableDestroy(ctx context.Context) error
- func (vm *VirtualMachine) EnableDestroy(ctx context.Context) error
- func (vm *VirtualMachine) EnterFixingState()
- func (vm *VirtualMachine) FetchExtraConfig(ctx context.Context) (map[string]string, error)
- func (vm *VirtualMachine) FetchExtraConfigBaseOptions(ctx context.Context) ([]types.BaseOptionValue, error)
- func (vm *VirtualMachine) Folder(op trace.Operation) (*object.Folder, error)
- func (vm *VirtualMachine) GetCurrentSnapshotTree(ctx context.Context) (*types.VirtualMachineSnapshotTree, error)
- func (vm *VirtualMachine) GetSnapshotTreeByName(ctx context.Context, name string) (*types.VirtualMachineSnapshotTree, error)
- func (vm *VirtualMachine) InCluster(op trace.Operation) bool
- func (vm *VirtualMachine) IsFixing() bool
- func (vm *VirtualMachine) IsInvalidPowerStateError(err error) bool
- func (vm *VirtualMachine) IsInvalidState(ctx context.Context) bool
- func (vm *VirtualMachine) LeaveFixingState()
- func (vm *VirtualMachine) Parent(ctx context.Context) (*types.ManagedObjectReference, error)
- func (vm *VirtualMachine) PowerOn(op trace.Operation) error
- func (vm *VirtualMachine) Properties(ctx context.Context, r types.ManagedObjectReference, ps []string, ...) error
- func (vm *VirtualMachine) RemoveSnapshot(op trace.Operation, snapshot *types.ManagedObjectReference, ...) (*object.Task, error)
- func (vm *VirtualMachine) SetVCHUpdateStatus(ctx context.Context, status bool) error
- func (vm *VirtualMachine) UUID(ctx context.Context) (string, error)
- func (vm *VirtualMachine) VCHUpdateStatus(ctx context.Context) (bool, error)
- func (vm *VirtualMachine) VMPathName(ctx context.Context) (string, error)
- func (vm *VirtualMachine) VMPathNameAsURL(ctx context.Context) (url.URL, error)
- func (vm *VirtualMachine) WaitForExtraConfig(ctx context.Context, waitFunc func(pc []types.PropertyChange) bool) error
- func (vm *VirtualMachine) WaitForKeyInExtraConfig(ctx context.Context, key string) (string, error)
- func (vm *VirtualMachine) WaitForResult(ctx context.Context, f func(context.Context) (tasks.Task, error)) (*types.TaskInfo, error)
Constants ¶
const ( DestroyTask = "Destroy_Task" UpdateStatus = "UpdateInProgress" )
Variables ¶
This section is empty.
Functions ¶
func Attributes ¶
func Attributes(ctx context.Context, session *session.Session, refs []types.ManagedObjectReference, attribs ...string) ([]mo.VirtualMachine, error)
Attributes will retrieve the properties for the provided references. A variadic arg of attribs is provided to allow overriding the default properties retrieved
func IsConfigureSnapshot ¶
func IsConfigureSnapshot(node *types.VirtualMachineSnapshotTree, prefix string) bool
IsConfigureSnapshot is the helper func that returns true if node is a snapshot with specified name prefix
Types ¶
type InvalidState ¶
type InvalidState struct {
// contains filtered or unexported fields
}
func (*InvalidState) Error ¶
func (i *InvalidState) Error() string
type VirtualMachine ¶
type VirtualMachine struct { *object.VirtualMachine *session.Session // contains filtered or unexported fields }
VirtualMachine struct defines the VirtualMachine which provides additional VIC specific methods over object.VirtualMachine as well as keeps some state
func NewVirtualMachine ¶
func NewVirtualMachine(ctx context.Context, session *session.Session, moref types.ManagedObjectReference) *VirtualMachine
NewVirtualMachine returns a NewVirtualMachine object
func NewVirtualMachineFromVM ¶
func NewVirtualMachineFromVM(ctx context.Context, session *session.Session, vm *object.VirtualMachine) *VirtualMachine
NewVirtualMachineFromVM returns a NewVirtualMachine object
func (*VirtualMachine) DatastoreFolderName ¶
func (vm *VirtualMachine) DatastoreFolderName(ctx context.Context) (string, error)
DatastoreFolderName returns the name of the namespace(vsan) or directory(vmfs) that holds the VM this equates to the normal directory that contains the vmx file, stripped of any parent path
func (*VirtualMachine) DatastoreReference ¶
func (vm *VirtualMachine) DatastoreReference(ctx context.Context) ([]types.ManagedObjectReference, error)
func (*VirtualMachine) DeleteExceptDisks ¶
DeleteExceptDisks destroys the VM after detaching all virtual disks
func (*VirtualMachine) DisableDestroy ¶
func (vm *VirtualMachine) DisableDestroy(ctx context.Context) error
DisableDestroy attempts to disable the VirtualMachine.Destroy_Task method on the VM After destroy is disabled for the VM, any session other than the session that disables the destroy can't evoke the method The "VM delete" option will be grayed out on VC UI Requires the "Global.Disable" VC privilege
func (*VirtualMachine) EnableDestroy ¶
func (vm *VirtualMachine) EnableDestroy(ctx context.Context) error
EnableDestroy attempts to enable the VirtualMachine.Destroy_Task method for all sessions
func (*VirtualMachine) EnterFixingState ¶
func (vm *VirtualMachine) EnterFixingState()
func (*VirtualMachine) FetchExtraConfig ¶
func (*VirtualMachine) FetchExtraConfigBaseOptions ¶
func (vm *VirtualMachine) FetchExtraConfigBaseOptions(ctx context.Context) ([]types.BaseOptionValue, error)
func (*VirtualMachine) GetCurrentSnapshotTree ¶
func (vm *VirtualMachine) GetCurrentSnapshotTree(ctx context.Context) (*types.VirtualMachineSnapshotTree, error)
GetCurrentSnapshotTree returns current snapshot, with tree information
func (*VirtualMachine) GetSnapshotTreeByName ¶
func (vm *VirtualMachine) GetSnapshotTreeByName(ctx context.Context, name string) (*types.VirtualMachineSnapshotTree, error)
GetCurrentSnapshotTreeByName returns current snapshot, with tree information
func (*VirtualMachine) InCluster ¶
func (vm *VirtualMachine) InCluster(op trace.Operation) bool
InCluster returns true if the VM belongs to a cluster
func (*VirtualMachine) IsFixing ¶
func (vm *VirtualMachine) IsFixing() bool
func (*VirtualMachine) IsInvalidPowerStateError ¶
func (vm *VirtualMachine) IsInvalidPowerStateError(err error) bool
IsInvalidPowerStateError is an error certifier function for errors coming back from vsphere. It checks for an InvalidPowerStateFault
func (*VirtualMachine) IsInvalidState ¶
func (vm *VirtualMachine) IsInvalidState(ctx context.Context) bool
func (*VirtualMachine) LeaveFixingState ¶
func (vm *VirtualMachine) LeaveFixingState()
func (*VirtualMachine) Parent ¶
func (vm *VirtualMachine) Parent(ctx context.Context) (*types.ManagedObjectReference, error)
func (*VirtualMachine) PowerOn ¶
func (vm *VirtualMachine) PowerOn(op trace.Operation) error
PowerOn powers on a VM. If the environment is VC without DRS enabled, it will attempt to relocate the VM to the most suitable host in the cluster. If relocation or subsequent power-on fail, it will attempt the next best host, and repeat this process until a successful power-on is achieved or there are no more hosts to try.
func (*VirtualMachine) Properties ¶
func (vm *VirtualMachine) Properties(ctx context.Context, r types.ManagedObjectReference, ps []string, o *mo.VirtualMachine) error
func (*VirtualMachine) RemoveSnapshot ¶
func (vm *VirtualMachine) RemoveSnapshot(op trace.Operation, snapshot *types.ManagedObjectReference, removeChildren bool, consolidate *bool) (*object.Task, error)
RemoveSnapshot removes the provided snapshot
func (*VirtualMachine) SetVCHUpdateStatus ¶
func (vm *VirtualMachine) SetVCHUpdateStatus(ctx context.Context, status bool) error
SetVCHUpdateStatus sets the VCH update status in ExtraConfig
func (*VirtualMachine) VCHUpdateStatus ¶
func (vm *VirtualMachine) VCHUpdateStatus(ctx context.Context) (bool, error)
VCHUpdateStatus tells if an upgrade/configure has already been started based on the UpdateInProgress flag in ExtraConfig It returns the error if the vm operation does not succeed
func (*VirtualMachine) VMPathName ¶
func (vm *VirtualMachine) VMPathName(ctx context.Context) (string, error)
func (*VirtualMachine) VMPathNameAsURL ¶
VMPathNameAsURL returns the full datastore path of the VM as a url. The datastore name is in the host portion, the path is in the Path field, the scheme is set to "ds"
func (*VirtualMachine) WaitForExtraConfig ¶
func (vm *VirtualMachine) WaitForExtraConfig(ctx context.Context, waitFunc func(pc []types.PropertyChange) bool) error
WaitForExtraConfig waits until key shows up with the expected value inside the ExtraConfig
func (*VirtualMachine) WaitForKeyInExtraConfig ¶
func (*VirtualMachine) WaitForResult ¶
func (vm *VirtualMachine) WaitForResult(ctx context.Context, f func(context.Context) (tasks.Task, error)) (*types.TaskInfo, error)
WaitForResult is designed to handle VM invalid state error for any VM operations. It will call tasks.WaitForResult to retry if there is task in progress error.