Skip to content

Commit

Permalink
az vmware private-cloud list-admin-credentials bugfix (#7034)
Browse files Browse the repository at this point in the history
* Fix az vmware private-cloud list-admin-credentials not returning nsxtPassword and vcenterPassword

* unit tests
  • Loading branch information
jonathanhe-msft authored Dec 4, 2023
1 parent da7804b commit 03f23d6
Show file tree
Hide file tree
Showing 5 changed files with 126 additions and 119 deletions.
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
Loading

0 comments on commit 03f23d6

Please sign in to comment.