Skip to content
Merged
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
22 changes: 22 additions & 0 deletions src/azure-cli/azure/cli/command_modules/iot/_help.py
Original file line number Diff line number Diff line change
Expand Up @@ -764,6 +764,28 @@
text: |
az iot hub update --name MyIotHub --set properties.allocationPolicy="GeoLatency"
crafted: true
- name: Update units of an IoT Hub to 2
text: >
az iot hub update -n MyIotHub --unit 2
- name: Update pricing tier for an IoT Hub as S2
text: >
az iot hub update -n MyIotHub --sku S2
- name: Update the retention days of IoT Hub device-to-cloud events as 3 days
text: >
az iot hub update -n MyIotHub --retention-day 3
- name: Update the IoT Hub cloud-to-device messaging settings
text: >
az iot hub update --name MyIotHub --c2d-max-delivery-count 30 --c2d-ttl 5
- 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
text: >
az iot hub update -n MyIoTHub --fileupload-sas-ttl 5 --fileupload-storage-auth-type identityBased
- name: Update the IoT Hub file upload notification settings
text: >
az iot hub update -n MyIoTHub --fileupload-notification-max-delivery-count 50
--fileupload-notification-ttl 48 --fileupload-notifications
"""

helps['iot central'] = """
Expand Down