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
4 changes: 4 additions & 0 deletions src/storage-preview/HISTORY.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

Release History
===============
0.8.3(2022-05-24)
++++++++++++++++++
* `az storage account create/update`: Rename `--key-vault-federated-identity-client-id` to `--key-vault-federated-client-id`

0.8.2(2022-04-12)
++++++++++++++++++
* `az storage account create`: Add `--dns-endpoint-type` to support creating accounts in an Azure DNS Zone
Expand Down
2 changes: 1 addition & 1 deletion src/storage-preview/azext_storage_preview/_params.py
Original file line number Diff line number Diff line change
Expand Up @@ -391,7 +391,7 @@ def load_arguments(self, _): # pylint: disable=too-many-locals, too-many-statem
min_api='2021-01-01',
help='Resource identifier of the UserAssigned identity to be associated with server-side '
'encryption on the storage account.')
c.argument('federated_identity_client_id', options_list=['--key-vault-federated-identity-client-id', '-f'],
c.argument('federated_identity_client_id', options_list=['--key-vault-federated-client-id', '-f'],
min_api='2021-08-01',
help='ClientId of the multi-tenant application to be used '
'in conjunction with the user-assigned identity for '
Expand Down
Loading