本文整理汇总了C#中XenAPI.VDI.GetVMs方法的典型用法代码示例。如果您正苦于以下问题:C# VDI.GetVMs方法的具体用法?C# VDI.GetVMs怎么用?C# VDI.GetVMs使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类XenAPI.VDI
的用法示例。
在下文中一共展示了VDI.GetVMs方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: VDIIsSuitable
private bool VDIIsSuitable(VDI vdi)
{
if (vdi == null)
return false;
if (vdi.is_a_snapshot)
return false;
if (vdi.Locked)
return false;
if (vdi.IsHaType)
return false;
if(vdi.Connection.ResolveAll(vdi.VBDs).Count < 1)
return false;
if(vdi.GetVMs().Any(vm=>!vm.IsRunning) && !Helpers.DundeeOrGreater(vdi.Connection))
return false;
SR sr = GetSR(vdi);
if (sr == null || sr.HBALunPerVDI)
return false;
return true;
}
示例2: CanBeMigrated
private bool CanBeMigrated(VDI vdi)
{
if (vdi == null || vdi.is_a_snapshot || vdi.Locked || vdi.IsHaType)
return false;
if(vdi.Connection.ResolveAll(vdi.VBDs).Count == 0)
return false;
if(vdi.GetVMs().Any(vm=>!vm.IsRunning) && !Helpers.DundeeOrGreater(vdi.Connection))
return false;
SR sr = vdi.Connection.Resolve(vdi.SR);
if (sr == null || sr.HBALunPerVDI)
return false;
if (Helpers.DundeePlusOrGreater(vdi.Connection) && !sr.allowed_operations.Contains(storage_operations.vdi_mirror))
return false;
return true;
}
示例3: getDestroyVDIAction
private List<AsyncAction> getDestroyVDIAction(VDI vdi, List<VM> deletedVMSnapshots)
{
List<AsyncAction> actions = new List<AsyncAction>();
// Destroy the entire snapshot if it exists. Else destroy disk
if (vdi.is_a_snapshot && vdi.GetVMs().Count >= 1)
{
foreach (VM vm in vdi.GetVMs())
{
if (!vm.is_a_snapshot || deletedVMSnapshots.Contains(vm))
continue;
AsyncAction action = new VMSnapshotDeleteAction(vm);
actions.Add(action);
deletedVMSnapshots.Add(vm);
}
}
else
{
SR sr = vdi.Connection.Resolve(vdi.SR);
if (sr == null)
{
// Nothing we can do here, but this should have been caught in the getcantexecutereason method and prompted
return actions;
}
DestroyDiskAction a = new DestroyDiskAction(vdi);
a.AllowRunningVMDelete = AllowRunningVMDelete;
actions.Add(a);
}
return actions;
}
示例4: VDIIsSuitable
private bool VDIIsSuitable(VDI vdi)
{
if (vdi == null)
return false;
if (vdi.is_a_snapshot)
return false;
if (vdi.Locked)
return false;
if (vdi.IsHaType)
return false;
if(vdi.Connection.ResolveAll(vdi.VBDs).Count < 1)
return false;
if(vdi.GetVMs().Any(vm=>!vm.IsRunning))
return false;
if (vdi.Connection.Resolve(vdi.SR).HBALunPerVDI)
return false;
return true;
}