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
Prev Previous commit
Next Next commit
String fixes from code review
Co-authored-by: Xing Zhou <[email protected]>
  • Loading branch information
c-ryan-k and zhoxing-ms authored May 19, 2021
commit 5c394ee9a624df59d01b4e43496b9c2c4b91f4f9
2 changes: 1 addition & 1 deletion src/azure-cli/azure/cli/command_modules/iot/_help.py
Original file line number Diff line number Diff line change
Expand Up @@ -820,7 +820,7 @@
- name: Update the IoT Hub feedback queue settings
text: >
az iot hub update --name MyIoTHub --feedback-max-delivery-count 20 --feedback-lock-duration 100 --feedback-ttl 4
- name: Update the IoT Hub file upload settings, and assign a managed identity to user for file upload)
- name: Update the IoT Hub file upload settings, and assign a managed identity to user for file upload
text: >
az iot hub update -n MyIoTHub --fileupload-sas-ttl 5 --fileupload-storage-auth-type identityBased --fileupload-storage-identity [system]
- name: Update the IoT Hub file upload notification settings
Expand Down
2 changes: 1 addition & 1 deletion src/azure-cli/azure/cli/command_modules/iot/_params.py
Original file line number Diff line number Diff line change
Expand Up @@ -192,7 +192,7 @@ def load_arguments(self, _): # pylint: disable=too-many-statements
"Use '[system]' to refer to the system-assigned identity or a resource ID to refer to "
"a user-assigned identity.")
c.argument('identity_role', options_list=['--role'],
help="Role to assign to the hub's system-assigned managed identity")
help="Role to assign to the hub's system-assigned managed identity.")
c.argument('identity_scopes', options_list=['--scopes'], nargs='*',
help="Space separated list of scopes to assign the role (--role) "
"for the system-assigned managed identity.")
Expand Down