Skip to content

Commit

Permalink
remove confirmation=True
Browse files Browse the repository at this point in the history
  • Loading branch information
wangzelin007 committed Mar 25, 2022
1 parent ed7b74a commit 5de8273
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -46,15 +46,15 @@ def load_command_table(self, _):
g.custom_show_command('show', 'desktopvirtualization_applicationgroup_show')
g.custom_command('create', 'desktopvirtualization_applicationgroup_create')
g.custom_command('update', 'desktopvirtualization_applicationgroup_update')
g.custom_command('delete', 'desktopvirtualization_applicationgroup_delete', confirmation=True)
g.custom_command('delete', 'desktopvirtualization_applicationgroup_delete')

with self.command_group('desktopvirtualization hostpool', desktopvirtualization_host_pool,
client_factory=cf_host_pool) as g:
g.custom_command('list', 'desktopvirtualization_hostpool_list')
g.custom_show_command('show', 'desktopvirtualization_hostpool_show')
g.custom_command('create', 'desktopvirtualization_hostpool_create')
g.custom_command('update', 'desktopvirtualization_hostpool_update')
g.custom_command('delete', 'desktopvirtualization_hostpool_delete', confirmation=True)
g.custom_command('delete', 'desktopvirtualization_hostpool_delete')
g.custom_command('retrieve-registration-token', 'desktopvirtualization_hostpool_retrieve_registration_token')

with self.command_group('desktopvirtualization workspace', desktopvirtualization_workspace,
Expand All @@ -63,7 +63,7 @@ def load_command_table(self, _):
g.custom_show_command('show', 'desktopvirtualization_workspace_show')
g.custom_command('create', 'desktopvirtualization_workspace_create')
g.custom_command('update', 'desktopvirtualization_workspace_update')
g.custom_command('delete', 'desktopvirtualization_workspace_delete', confirmation=True)
g.custom_command('delete', 'desktopvirtualization_workspace_delete')

with self.command_group('desktopvirtualization'):
pass

0 comments on commit 5de8273

Please sign in to comment.