Merge pull request #14823 from jjahns/devel

add find_vm_by_name function to vmware utils
This commit is contained in:
Brian Coca 2016-03-05 23:17:35 -05:00
commit 66a9a1feff

View file

@ -99,6 +99,15 @@ def find_hostsystem_by_name(content, hostname):
return None
def find_vm_by_name(content, vm_name):
vms = get_all_objs(content, [vim.VirtualMachine])
for vm in vms:
if vm.name == vm_name:
return vm
return None
def vmware_argument_spec():
return dict(