diff --git a/src/azure-cli/azure/cli/command_modules/appservice/commands.py b/src/azure-cli/azure/cli/command_modules/appservice/commands.py index d866b4b4f00..aa6ee41ab3a 100644 --- a/src/azure-cli/azure/cli/command_modules/appservice/commands.py +++ b/src/azure-cli/azure/cli/command_modules/appservice/commands.py @@ -121,10 +121,10 @@ def load_command_table(self, _): g.custom_command('delete', 'delete_connection_strings') with self.command_group('webapp config storage-account') as g: - g.custom_command('list', 'get_azure_storage_accounts', exception_handler=empty_on_404) - g.custom_command('add', 'add_azure_storage_account') - g.custom_command('update', 'update_azure_storage_account') - g.custom_command('delete', 'delete_azure_storage_accounts') + g.custom_command('list', 'get_azure_storage_accounts', exception_handler=empty_on_404, is_preview=True) + g.custom_command('add', 'add_azure_storage_account', is_preview=True) + g.custom_command('update', 'update_azure_storage_account', is_preview=True) + g.custom_command('delete', 'delete_azure_storage_accounts', is_preview=True) with self.command_group('webapp config hostname') as g: g.custom_command('add', 'add_hostname', exception_handler=ex_handler_factory())