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:
parent
5afd727982
commit
a380e5dc11
@ -256,8 +256,9 @@ $ python samples/vsphere/vcenter/vm/list_vms.py -v
|
|||||||
### vSphere API Documentation
|
### vSphere API Documentation
|
||||||
|
|
||||||
* [VMware vSphere REST API Reference documentation](https://developer.vmware.com/docs/vsphere-automation/latest/)
|
* [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/)
|
* [vSphere 8.0.0.1 (latest)](https://vmware.github.io/vsphere-automation-sdk-python/vsphere/8.0.0.1/)
|
||||||
* Previous Releases: vSphere [7.0.3.2](https://vmware.github.io/vsphere-automation-sdk-python/vsphere/7.0.3.2/),
|
* 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 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).
|
[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).
|
||||||
|
|
||||||
|
BIN
lib/src/vapi-client-bindings/vapi_client_bindings-4.0.0.zip
Normal file
BIN
lib/src/vapi-client-bindings/vapi_client_bindings-4.0.0.zip
Normal file
Binary file not shown.
BIN
lib/src/vapi-common-client/vapi_common_client-2.37.0.zip
Normal file
BIN
lib/src/vapi-common-client/vapi_common_client-2.37.0.zip
Normal file
Binary file not shown.
BIN
lib/src/vapi-runtime/vapi_runtime-2.37.0.zip
Normal file
BIN
lib/src/vapi-runtime/vapi_runtime-2.37.0.zip
Normal file
Binary file not shown.
@ -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 />
|
Binary file not shown.
Binary file not shown.
@ -1,6 +1,20 @@
|
|||||||
|
###### Common Requirements ######
|
||||||
lxml >= 4.3.0
|
lxml >= 4.3.0
|
||||||
pyVmomi >= 6.7
|
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
|
vmc-client-bindings
|
||||||
nsx-python-sdk
|
nsx-python-sdk
|
||||||
nsx-policy-python-sdk
|
nsx-policy-python-sdk
|
||||||
|
@ -1,2 +1,16 @@
|
|||||||
|
###### This requirements file is used for local installation, Where access to GitHub is restricted ######
|
||||||
|
###### Common Requirements ######
|
||||||
lxml >= 4.3.0
|
lxml >= 4.3.0
|
||||||
pyVmomi >= 6.7
|
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"
|
||||||
|
4
setup.py
4
setup.py
@ -5,7 +5,7 @@ import os
|
|||||||
from setuptools import setup
|
from setuptools import setup
|
||||||
|
|
||||||
setup(name='vSphere Automation SDK',
|
setup(name='vSphere Automation SDK',
|
||||||
version='1.79.0',
|
version='1.80.0',
|
||||||
description='VMware vSphere Automation SDK for Python',
|
description='VMware vSphere Automation SDK for Python',
|
||||||
url='https://github.com/vmware/vsphere-automation-sdk-python',
|
url='https://github.com/vmware/vsphere-automation-sdk-python',
|
||||||
author='VMware, Inc.',
|
author='VMware, Inc.',
|
||||||
@ -15,7 +15,7 @@ setup(name='vSphere Automation SDK',
|
|||||||
'lxml >= 4.3.0',
|
'lxml >= 4.3.0',
|
||||||
'pyVmomi >= 6.7',
|
'pyVmomi >= 6.7',
|
||||||
'vapi-runtime @ file://localhost/{}/lib/vapi-runtime/vapi_runtime-2.37.0-py2.py3-none-any.whl'.format(os.getcwd()),
|
'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()),
|
'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()),
|
'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()),
|
'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()),
|
||||||
|
Loading…
Reference in New Issue
Block a user