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

Updated vSphere bindings for 8.0 GA.

Signed-off-by: Ankit Agrawal <aagrawal3@vmware.com>
This commit is contained in:
aagrawal3 2022-10-12 15:18:16 +05:30
parent 5afd727982
commit a380e5dc11
No known key found for this signature in database
GPG Key ID: D6EA3E657D229A55
10 changed files with 35 additions and 6 deletions

View File

@ -256,8 +256,9 @@ $ python samples/vsphere/vcenter/vm/list_vms.py -v
### vSphere API Documentation
* [VMware vSphere REST API Reference documentation](https://developer.vmware.com/docs/vsphere-automation/latest/)
* [vSphere 8.0.0.0 (latest)](https://vmware.github.io/vsphere-automation-sdk-python/vsphere/8.0.0.0/)
* Previous Releases: vSphere [7.0.3.2](https://vmware.github.io/vsphere-automation-sdk-python/vsphere/7.0.3.2/),
* [vSphere 8.0.0.1 (latest)](https://vmware.github.io/vsphere-automation-sdk-python/vsphere/8.0.0.1/)
* Previous Releases: vSphere [8.0.0.0](https://vmware.github.io/vsphere-automation-sdk-python/vsphere/8.0.0.0/),
vSphere [7.0.3.2](https://vmware.github.io/vsphere-automation-sdk-python/vsphere/7.0.3.2/),
[7.0 U3](https://vmware.github.io/vsphere-automation-sdk-python/vsphere/7.0.3.0/)
[7.0 U2](https://vmware.github.io/vsphere-automation-sdk-python/vsphere/7.0.2.0/), [7.0 U1](https://vmware.github.io/vsphere-automation-sdk-python/vsphere/7.0.1.0/), [7.0](https://vmware.github.io/vsphere-automation-sdk-python/vsphere/7.0.0.1/), [6.7.0](https://vmware.github.io/vsphere-automation-sdk-python/vsphere/6.7.0), [6.6.1](https://vmware.github.io/vsphere-automation-sdk-python/vsphere/6.6.1), [6.5](https://vmware.github.io/vsphere-automation-sdk-python/vsphere/6.5).

Binary file not shown.

View File

@ -1 +1 @@
<a href='vapi_client_bindings-3.9.0-py2.py3-none-any.whl'>vapi_client_bindings-3.9.0-py2.py3-none-any.whl</a><br />
<a href='vapi_client_bindings-4.0.0-py2.py3-none-any.whl'>vapi_client_bindings-4.0.0-py2.py3-none-any.whl</a><br />

View File

@ -1,6 +1,20 @@
###### Common Requirements ######
lxml >= 4.3.0
pyVmomi >= 6.7
vapi-client-bindings == 3.9.0
six (>=1.12)
###### Different dependency requirements for different python version ######
pyOpenSSL (==19.1.0); python_version <= "3.6"
cryptography (<3.0,>=2.8); python_version <= "3.6"
setuptools (==36.2.0); python_version <= "3.6"
requests (==2.21.0); python_version <= "3.6"
idna (>=2.5,<2.9); python_version <= "3.6"
requests (==2.27.1); python_version > "3.6"
pyOpenSSL (==22.0.0); python_version > "3.6"
cryptography (==36.0.0); python_version > "3.6"
setuptools (==62.0.0); python_version > "3.6"
###### SDK requirements ######
vapi-client-bindings == 4.0.0
vmc-client-bindings
nsx-python-sdk
nsx-policy-python-sdk

View File

@ -1,2 +1,16 @@
###### This requirements file is used for local installation, Where access to GitHub is restricted ######
###### Common Requirements ######
lxml >= 4.3.0
pyVmomi >= 6.7
six (>=1.12)
###### Different dependency requirements for different python version ######
pyOpenSSL (==19.1.0); python_version <= "3.6"
cryptography (<3.0,>=2.8); python_version <= "3.6"
setuptools (==36.2.0); python_version <= "3.6"
requests (==2.21.0); python_version <= "3.6"
idna (>=2.5,<2.9); python_version <= "3.6"
requests (==2.27.1); python_version > "3.6"
pyOpenSSL (==22.0.0); python_version > "3.6"
cryptography (==36.0.0); python_version > "3.6"
setuptools (==62.0.0); python_version > "3.6"

View File

@ -5,7 +5,7 @@ import os
from setuptools import setup
setup(name='vSphere Automation SDK',
version='1.79.0',
version='1.80.0',
description='VMware vSphere Automation SDK for Python',
url='https://github.com/vmware/vsphere-automation-sdk-python',
author='VMware, Inc.',
@ -15,7 +15,7 @@ setup(name='vSphere Automation SDK',
'lxml >= 4.3.0',
'pyVmomi >= 6.7',
'vapi-runtime @ file://localhost/{}/lib/vapi-runtime/vapi_runtime-2.37.0-py2.py3-none-any.whl'.format(os.getcwd()),
'vapi-client-bindings @ file://localhost/{}/lib/vapi-client-bindings/vapi_client_bindings-3.9.0-py2.py3-none-any.whl'.format(os.getcwd()),
'vapi-client-bindings @ file://localhost/{}/lib/vapi-client-bindings/vapi_client_bindings-4.0.0-py2.py3-none-any.whl'.format(os.getcwd()),
'vapi-common-client @ file://localhost/{}/lib/vapi-common-client/vapi_common_client-2.37.0-py2.py3-none-any.whl'.format(os.getcwd()),
'vmc-client-bindings @ file://localhost/{}/lib/vmc-client-bindings/vmc_client_bindings-1.61.0-py2.py3-none-any.whl'.format(os.getcwd()),
'nsx-python-sdk @ file://localhost/{}/lib/nsx-python-sdk/nsx_python_sdk-4.0.1.0.0-py2.py3-none-any.whl'.format(os.getcwd()),