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
1 change: 1 addition & 0 deletions src/vmware/HISTORY.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
- Add `az vmware private-cloud list-admin-credentials`
- Add `az vmware private-cloud add-identity-source`
- Add `az vmware private-cloud delete-identity-source`
- Add `az vmware private-cloud identity` command group
- Deprecate `az vmware private-cloud listadmincredentials`
- Deprecate `az vmware private-cloud addidentitysource`
- Deprecate `az vmware private-cloud deleteidentitysource`
Expand Down
2 changes: 1 addition & 1 deletion src/vmware/azext_vmware/custom.py
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,7 @@ def privatecloud_identity_assign(client: AVSClient, resource_group_name, private
def privatecloud_identity_remove(client: AVSClient, resource_group_name, private_cloud):
from azext_vmware.vendored_sdks.avs_client.models import PrivateCloudIdentity, PrivateCloudUpdate
pc = PrivateCloudUpdate()
pc.identity = PrivateCloudIdentity(type=None)
pc.identity = PrivateCloudIdentity(type="None")
return client.private_clouds.begin_update(resource_group_name=resource_group_name, private_cloud_name=private_cloud, private_cloud_update=pc)


Expand Down
142 changes: 123 additions & 19 deletions src/vmware/azext_vmware/tests/latest/recordings/test_vmware.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading