使用PowerCLI命令行代码,我可以删除为ESXi6.0主机上的VMotion网络创建的“虚拟端口组”。
Add-PSSnapin VMware.VimAutomation.Core;
Connect-VIServer -Server xxx.xxx.xxx.xxy -User administrator@vsphere.local -Password SomePswd;
$PGName='VMotion';
Remove-VMHostNetworkAdapter -Nic (Get-VMHostNetworkAdapter -VMHost (Get-VMHost -Name "xxx.xxx.xxx.xxx") | where{$_.PortGroupName -eq $PGName}) -Confirm:$false;
$PGvar = 'VMotion';
$dfltvpg = Get-VirtualPortGroup -Name $PGvar;
Remove-VirtualPortGroup -VirtualPortGroup $dfltvpg -Confirm:$false"
如何在VMware vCenter Server 6.0(或6.5)上使用pyVmomi API进行相同的操作。 我在VC MOB中找不到适合它的API调用。 请帮我举个例子。