Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
4 changes: 4 additions & 0 deletions src/vmware/HISTORY.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Release History

## 6.0.1 (2023-12)

- Fix `az vmware private-cloud list-admin-credentials` not returning `nsxtPassword` and `vcenterPassword`

## 6.0.0 (2023-09)

- Update to AVS 2023-03-01 API
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -155,15 +155,15 @@ def _build_schema_on_200(cls):
_schema_on_200 = cls._schema_on_200
_schema_on_200.nsxt_password = AAZStrType(
serialized_name="nsxtPassword",
flags={"secret": True, "read_only": True},
flags={"read_only": True},
)
_schema_on_200.nsxt_username = AAZStrType(
serialized_name="nsxtUsername",
flags={"read_only": True},
)
_schema_on_200.vcenter_password = AAZStrType(
serialized_name="vcenterPassword",
flags={"secret": True, "read_only": True},
flags={"read_only": True},
)
_schema_on_200.vcenter_username = AAZStrType(
serialized_name="vcenterUsername",
Expand Down
2 changes: 1 addition & 1 deletion src/vmware/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
from io import open
from setuptools import setup, find_packages

VERSION = "6.0.0"
VERSION = "6.0.1"

with open('README.md', encoding='utf-8') as f:
readme = f.read()
Expand Down