├── .gitignore ├── Procfile ├── README.md ├── manifest.yml ├── methods.py ├── myapi.py ├── requirements.txt ├── sample-payload.json └── tools ├── README.md ├── __init__.py ├── __init__.pyc ├── alarm.py ├── cli.py ├── cli.pyc ├── cluster.py ├── datacenter.py ├── interactive_wrapper.py ├── pchelper.py ├── serviceutil.py ├── tasks.py ├── tasks.pyc └── vm.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EMC-Underground/vsphere-python-restapi/HEAD/.gitignore -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- 1 | web: python myapi.py 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EMC-Underground/vsphere-python-restapi/HEAD/README.md -------------------------------------------------------------------------------- /manifest.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EMC-Underground/vsphere-python-restapi/HEAD/manifest.yml -------------------------------------------------------------------------------- /methods.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EMC-Underground/vsphere-python-restapi/HEAD/methods.py -------------------------------------------------------------------------------- /myapi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EMC-Underground/vsphere-python-restapi/HEAD/myapi.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | Flask 2 | pyvmomi 3 | -------------------------------------------------------------------------------- /sample-payload.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EMC-Underground/vsphere-python-restapi/HEAD/sample-payload.json -------------------------------------------------------------------------------- /tools/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EMC-Underground/vsphere-python-restapi/HEAD/tools/README.md -------------------------------------------------------------------------------- /tools/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EMC-Underground/vsphere-python-restapi/HEAD/tools/__init__.py -------------------------------------------------------------------------------- /tools/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EMC-Underground/vsphere-python-restapi/HEAD/tools/__init__.pyc -------------------------------------------------------------------------------- /tools/alarm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EMC-Underground/vsphere-python-restapi/HEAD/tools/alarm.py -------------------------------------------------------------------------------- /tools/cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EMC-Underground/vsphere-python-restapi/HEAD/tools/cli.py -------------------------------------------------------------------------------- /tools/cli.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EMC-Underground/vsphere-python-restapi/HEAD/tools/cli.pyc -------------------------------------------------------------------------------- /tools/cluster.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EMC-Underground/vsphere-python-restapi/HEAD/tools/cluster.py -------------------------------------------------------------------------------- /tools/datacenter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EMC-Underground/vsphere-python-restapi/HEAD/tools/datacenter.py -------------------------------------------------------------------------------- /tools/interactive_wrapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EMC-Underground/vsphere-python-restapi/HEAD/tools/interactive_wrapper.py -------------------------------------------------------------------------------- /tools/pchelper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EMC-Underground/vsphere-python-restapi/HEAD/tools/pchelper.py -------------------------------------------------------------------------------- /tools/serviceutil.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EMC-Underground/vsphere-python-restapi/HEAD/tools/serviceutil.py -------------------------------------------------------------------------------- /tools/tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EMC-Underground/vsphere-python-restapi/HEAD/tools/tasks.py -------------------------------------------------------------------------------- /tools/tasks.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EMC-Underground/vsphere-python-restapi/HEAD/tools/tasks.pyc -------------------------------------------------------------------------------- /tools/vm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EMC-Underground/vsphere-python-restapi/HEAD/tools/vm.py --------------------------------------------------------------------------------