Skip to content

Updated bindings for vSphere 6.6.1 release #34

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Aug 29, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ python:
- "3.6"
# command to install dependencies
install:
- pip install -r requirements.txt --upgrade --ignore-installed six
- pip install -r requirements.txt --extra-index-url file://$PWD/lib --upgrade --ignore-installed six
- pip install -r test-requirements.txt
- pip install pycodestyle
# command to run tests
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ Python may be outdated and/or not be intended for development and we recommended
The required packages are listed in the requirements.txt file and installed using "pip install"; For more details on how to install python packages using pip please refer to the [pip user guide](http://pip.readthedocs.io/en/latest/user_guide/).

```cmd
pip install -r requirements.txt
pip install -r requirements.txt --extra-index-url <file:///abs_path/to/sdk/lib/>
```

### Setting up a vSphere Test Environment
Expand Down
Binary file modified doc/client.zip
Binary file not shown.
5 changes: 2 additions & 3 deletions lib/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,5 @@ For python developers, client libraries are supplied for testing and development

Name | Description
------------------------------------| -------------
vapi_runtime-\<version>.zip | vAPI runtime responsible for serialization/de-serialization of objects and wire protocol
vapi_common_client-\<version>.zip | vAPI common client code
vapi_client_bindings-\<version>.zip | client stubs for vSphere Automation APIs
vapi_runtime | vAPI runtime responsible for serialization/de-serialization of objects and wire protocol
vapi_client_bindings | Client stubs for vSphere Automation APIs
4 changes: 4 additions & 0 deletions lib/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
<html><head><title>Simple Index</title><meta name='api-version' value='2' /></head><body>
<a href='vapi-client-bindings/'>vapi-client-bindings</a><br />
<a href='vapi-runtime/'>vapi-runtime</a><br />
</body></html>
1 change: 1 addition & 0 deletions lib/vapi-client-bindings/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
<a href='vapi_client_bindings-2.7.0-py2.py3-none-any.whl'>vapi_client_bindings-2.7.0-py2.py3-none-any.whl</a><br />
Binary file not shown.
1 change: 1 addition & 0 deletions lib/vapi-runtime/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
<a href='vapi_runtime-2.7.0-py2.py3-none-any.whl'>vapi_runtime-2.7.0-py2.py3-none-any.whl</a><br />
Binary file not shown.
6 changes: 1 addition & 5 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,8 +1,4 @@
pyOpenSSL >= 0.14
pyVmomi >= 6.5
lxml
suds ; python_version < '3'
suds-jurko ; python_version >= '3.0'
lib/vapi_runtime-2.5.0.zip
lib/vapi_common_client-2.5.0.zip
lib/vapi_client_bindings-2.5.0.zip
vapi-client-bindings
4 changes: 2 additions & 2 deletions samples/vsphere/vcenter/setup/testbed.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@
__copyright__ = 'Copyright 2016 VMware, Inc. All rights reserved.'

config = {}
config["SERVER"] = "10.192.248.66"
config["SERVER"] = ""
config["USERNAME"] = "[email protected]"
config["PASSWORD"] = "Admin!23"
config["PASSWORD"] = "VMware1!"

config["ESX_HOST1"] = ""
config["ESX_HOST2"] = ""
Expand Down
1 change: 0 additions & 1 deletion test-requirements.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1 @@
testtools>=0.9.34
vcrpy