Skip to content

Commit c30a34c

Browse files
authored
Merge pull request #180 from kunal-pmj/master
Bindings and Readme update for M8 release
2 parents 1be9161 + 08202ee commit c30a34c

File tree

10 files changed

+16
-8
lines changed

10 files changed

+16
-8
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,3 +2,4 @@
22
__pycache__/
33
.DS_Store
44
.idea/*
5+
.gradle/*

README.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -217,9 +217,10 @@ $ python samples/vsphere/vcenter/vm/list_vms.py -v
217217
* [vSphere 6.7.1 (latest)](https://vmware.github.io/vsphere-automation-sdk-python/vsphere/6.7.1/)
218218
* Previous releases: [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) [6.0](https://vmware.github.io/vsphere-automation-sdk-python/vsphere/6.0)
219219

220-
### VMware Cloud on AWS Console API Documentation
220+
### VMware Cloud on AWS API Documentation
221221

222222
* [VMware Cloud on AWS Console API](https://vmware.github.io/vsphere-automation-sdk-python/vmc/index.html)
223+
* [VMware Cloud on AWS Disaster Recovery as a Service (DRaaS) API](https://vmware.github.io/vsphere-automation-sdk-python/vmc-draas/index.html)
223224

224225
### NSX API Documentation
225226

@@ -240,7 +241,7 @@ Board members are volunteers from the SDK community and VMware staff members, bo
240241

241242
Members:
242243
* Tianhao He (VMware)
243-
* Steve Trefethen (VMware)
244+
* Pavan Bidkar (VMware)
244245

245246
## VMware Resources
246247

lib/README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@ Name | Description
77
vapi_runtime | vAPI runtime responsible for serialization/de-serialization of objects and wire protocol
88
vapi_client_bindings | Client stubs for vSphere Automation APIs
99
vmc_client_bindings | Client stubs for VMware Cloud on AWS Console APIs
10+
vmc_draas_client_bindings | Client stubs for VMware Cloud (VMC) Disaster Recovery as a Service (DRaaS) APIs
11+
1012
nsx-python-sdk | Client stubs for VMware NSX-T APIs
1113
nsx-policy-python-sdk | Client stubs for VMware NSX-T Policy APIs
1214
vmc-app-python-sdk | Client stubs for VMware NSX-T VMC app APIs (for AWS underlay management)

lib/index.html

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
<body>
66
<a href='vapi-client-bindings/'>vapi-client-bindings</a><br/>
77
<a href='vmc-client-bindings/'>vmc-client-bindings</a><br/>
8+
<a href='vmc-draas-client-bindings/'>vmc-draas-client-bindings</a><br/>
89
<a href='vapi-runtime/'>vapi-runtime</a><br/>
910
<a href='nsx-python-sdk/'>nsx-python-sdk</a><br/>
1011
<a href='nsx-policy-python-sdk/'>nsx-policy-python-sdk</a><br/>

lib/vapi-client-bindings/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
<a href='vapi_client_bindings-3.0.0-py2.py3-none-any.whl'>vapi_client_bindings-3.0.0-py2.py3-none-any.whl</a><br />
1+
<a href='vapi_client_bindings-3.1.0-py2.py3-none-any.whl'>vapi_client_bindings-3.1.0-py2.py3-none-any.whl</a><br />
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
<a href='vmc_draas_client_bindings-1.0.0-py2.py3-none-any.whl'>vmc_draas_client_bindings-1.0.0-py3.py3-none-any.whl</a><br />

requirements.txt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,10 @@ lxml >= 4.3.0
22
pyVmomi >= 6.7
33
suds ; python_version < '3'
44
suds-jurko ; python_version >= '3.0'
5-
vapi-client-bindings == 3.0.0
5+
vapi-client-bindings == 3.1.0
66
vmc-client-bindings
77
nsx-python-sdk
88
nsx-policy-python-sdk
99
nsx-vmc-policy-python-sdk
1010
nsx-vmc-aws-integration-python-sdk
11+
vmc-draas-client-bindings

setup.py

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,13 +15,14 @@
1515
'suds ; python_version < "3"',
1616
'suds-jurko ; python_version >= "3.0"',
1717
'pyVmomi >= 6.7',
18-
'vapi-runtime @ file://localhost/{}/lib/vapi-runtime/vapi_runtime-2.12.0-py2.py3-none-any.whl'.format(os.getcwd()),
19-
'vapi-client-bindings @ file://localhost/{}/lib/vapi-client-bindings/vapi_client_bindings-3.0.0-py2.py3-none-any.whl'.format(os.getcwd()),
20-
'vapi-common-client @ file://localhost/{}/lib/vapi-common-client/vapi_common_client-2.12.0-py2.py3-none-any.whl'.format(os.getcwd()),
21-
'vmc-client-bindings @ file://localhost/{}/lib/vmc-client-bindings/vmc_client_bindings-1.10.0-py2.py3-none-any.whl'.format(os.getcwd()),
18+
'vapi-runtime @ file://localhost/{}/lib/vapi-runtime/vapi_runtime-2.12.0-py2.py3-none-any.whl'.format(os.getcwd()),
19+
'vapi-client-bindings @ file://localhost/{}/lib/vapi-client-bindings/vapi_client_bindings-3.1.0-py2.py3-none-any.whl'.format(os.getcwd()),
20+
'vapi-common-client @ file://localhost/{}/lib/vapi-common-client/vapi_common_client-2.12.0-py2.py3-none-any.whl'.format(os.getcwd()),
21+
'vmc-client-bindings @ file://localhost/{}/lib/vmc-client-bindings/vmc_client_bindings-1.10.0-py2.py3-none-any.whl'.format(os.getcwd()),
2222
'nsx-python-sdk @ file://localhost/{}/lib/nsx-python-sdk/nsx_python_sdk-2.3.0.0.3.13851140-py2.py3-none-any.whl'.format(os.getcwd()),
2323
'nsx-policy-python-sdk @ file://localhost/{}/lib/nsx-policy-python-sdk/nsx_policy_python_sdk-2.3.0.0.3.13851140-py2.py3-none-any.whl'.format(os.getcwd()),
2424
'nsx-vmc-policy-python-sdk @ file://localhost/{}/lib/nsx-vmc-policy-python-sdk/nsx_vmc_policy_python_sdk-2.3.0.0.3.13851140-py2.py3-none-any.whl'.format(os.getcwd()),
2525
'nsx-vmc-aws-integration-python-sdk @ file://localhost/{}/lib/nsx-vmc-aws-integration-python-sdk/nsx_vmc_aws_integration_python_sdk-2.3.0.0.3.13851140-py2.py3-none-any.whl'.format(os.getcwd()),
26+
'vmc-draas-client-bindings @ file://localhost/{}/lib/vmc-draas-client-bindings/vmc_draas_client_bindings-1.0.0-py2.py3-none-any.whl'.format(os.getcwd()),
2627
]
2728
)

0 commit comments

Comments
 (0)