Merge pull request #14823 from jjahns/devel
add find_vm_by_name function to vmware utils
This commit is contained in:
commit
66a9a1feff
1 changed files with 9 additions and 0 deletions
|
@ -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(
|
||||
|
|
Loading…
Reference in a new issue