Skip to content

Commit

Permalink
updating BYOS commands to mark them as preview (#11755)
Browse files Browse the repository at this point in the history
This feature is in preview and this should be indicated
  • Loading branch information
btardif authored and Juliehzl committed Jan 6, 2020
1 parent 7391ca4 commit fd1c960
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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())
Expand Down

0 comments on commit fd1c960

Please sign in to comment.