1
0
mirror of https://github.com/vmware/vsphere-automation-sdk-python.git synced 2024-11-26 11:19:59 -05:00

Modified according to review comments.

This commit is contained in:
pgbidkar 2017-02-20 00:28:13 -08:00
parent 2ecbca4718
commit 9a4e62b90a

View File

@ -13,6 +13,7 @@
"""
import atexit
import json
from samples.vsphere.common import vapiconnect
from samples.vsphere.common.sample_util import parse_cli_args
from samples.vsphere.common.sample_util import pp
@ -39,27 +40,22 @@ def setup(context=None):
def run():
"""
List VMs present in server
"""
vm_svc = VM(stub_config)
list_of_vms = vm_svc.list()
print "----------------------------"
print "List Of VMs"
print "----------------------------"
for vm in list_of_vms:
print ('{}'.format(vm))
print "----------------------------"
"""
List VMs present in server
"""
vm_svc = VM(stub_config)
list_of_vms = vm_svc.list()
print ("----------------------------")
print ("List Of VMs")
print ("----------------------------")
for vm in list_of_vms:
print ('{}'.format(vm))
print ("----------------------------")
def main():
try:
setup()
run()
finally:
if stub_config:
pass
setup()
run()
if __name__ == '__main__':
main()