Skip to content
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
8 changes: 5 additions & 3 deletions NOTICE
Original file line number Diff line number Diff line change
@@ -1,13 +1,14 @@
https://www.github.com/nutanixdev/code-samples: Depencencies and licenses
-------------------------------------------------------------------------

jq: MIT license
jq: MIT license, https://github.com/jqlang/jq?tab=License-1-ov-file#
curl: Custom MIT license, https://curl.se/docs/copyright.html
requests: Apache 2.0 license
urllib3: MIT license
requests: Apache 2.0 license, https://github.com/psf/requests/blob/main/LICENSE
urllib3: MIT license, https://github.com/urllib3/urllib3/blob/main/LICENSE.txt
argparse: Python Foundation Software License, https://docs.python.org/3/license.html#:~:text=Python%20software%20and%20documentation%20are,Python%20is%20under%20different%20licenses
xlsxwriter: BSD license, https://xlsxwriter.readthedocs.io/license.html
boto3: Apache 2.0 license, https://github.com/boto/boto3/blob/develop/LICENSE
ruff: MIT license, https://github.com/astral-sh/ruff/blob/main/LICENSE
ntnx_clustermgmt_py_client: Nutanix Proprietary License, https://developers.nutanix.com/license
ntnx_prism_py_client: Nutanix Proprietary License, https://developers.nutanix.com/license
ntnx_networking_py_client: Nutanix Proprietary License, https://developers.nutanix.com/license
Expand All @@ -21,6 +22,7 @@ ntnx_aiops_py_client: Nutanix Proprietary License, https://developers.nutanix.co
golang: BSD-3 license, https://github.com/golang/go/blob/master/LICENSE
golang gjson: MIT license, https://github.com/tidwall/gjson/blob/master/LICENSE
NewtonSoft.Json: MIT license, https://github.com/JamesNK/Newtonsoft.Json/blob/master/LICENSE.md
ESLint: MIT license, https://github.com/eslint/eslint/blob/main/LICENSE

MIT License
-----------
Expand Down
2 changes: 1 addition & 1 deletion python/v4api_sdk/create_vm_sdk.py
Original file line number Diff line number Diff line change
Expand Up @@ -239,7 +239,7 @@ def main():
# NIC backing info
backing_info=AhvVmConfig.EmulatedNic.EmulatedNic(
# NIC model
model=AhvVmConfig.EmulatedNicModel.EmulatedNicModel.E1000,
model=AhvVmConfig.EmulatedNicModel.EmulatedNicModel.VIRTIO,
is_connected=True,
),
# NIC network info including NIC type and subnet details
Expand Down