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
10 changes: 6 additions & 4 deletions azext_iot/commands.py
Original file line number Diff line number Diff line change
Expand Up @@ -118,13 +118,15 @@ def load_command_table(self, _):
cmd_group.command('show', 'iot_dps_registration_get')
cmd_group.command('delete', 'iot_dps_registration_delete')

with self.command_group('iotcentral', command_type=iotcentral_ops,
deprecate_info=self.deprecate(redirect='iot central app')) as cmd_group:
pass

with self.command_group('iotcentral app', command_type=iotcentral_ops) as cmd_group:
cmd_group.command('monitor-events', 'iot_central_monitor_events',
deprecate_info='az iot central app monitor-events')
cmd_group.command('monitor-events', 'iot_central_monitor_events')

with self.command_group('iotcentral device-twin', command_type=iotcentral_ops) as cmd_group:
cmd_group.command('show', 'iot_central_device_show',
deprecate_info='az iot central device-twin')
cmd_group.command('show', 'iot_central_device_show')

with self.command_group('iot central app', command_type=iotcentral_ops) as cmd_group:
cmd_group.command('monitor-events', 'iot_central_monitor_events')
Expand Down
2 changes: 1 addition & 1 deletion azext_iot/constants.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

import os

VERSION = "0.9.1"
VERSION = "0.9.2"
EXTENSION_NAME = "azure-iot"
EXTENSION_ROOT = os.path.dirname(os.path.abspath(__file__))
EXTENSION_CONFIG_ROOT_KEY = "iotext"
Expand Down