Skip to content

Commit 1192c6d

Browse files
authored
Update _params.py
1 parent 276bda9 commit 1192c6d

File tree

1 file changed

+3
-1
lines changed
  • src/azure-cli/azure/cli/command_modules/appservice

1 file changed

+3
-1
lines changed

src/azure-cli/azure/cli/command_modules/appservice/_params.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -492,7 +492,7 @@ def load_arguments(self, _):
492492
c.argument('name', arg_type=webapp_name_arg_type, id_part=None)
493493

494494
with self.argument_context('webapp config storage-account list') as c:
495-
c.argument('name', arg_type=webapp_name_arg_type, id_part=None)
495+
c.argument('name', help="Name of the web app.", arg_type=webapp_name_arg_type, id_part=None)
496496

497497
with self.argument_context('webapp config hostname') as c:
498498
c.argument('webapp_name',
@@ -624,8 +624,10 @@ def load_arguments(self, _):
624624
c.argument('slot', options_list=['--slot', '-s'],
625625
help="the name of the slot. Default to the productions slot if not specified")
626626
with self.argument_context('webapp config storage-account add') as c:
627+
c.argument('name', help="Name of the web app.", id_part=None)
627628
c.argument('slot_setting', options_list=['--slot-setting'], help="With slot setting you can decide to make BYOS configuration sticky to a slot, meaning that when that slot is swapped, the storage account stays with that slot.")
628629
with self.argument_context('webapp config storage-account update') as c:
630+
c.argument('name', help="Name of the web app.", id_part=None)
629631
c.argument('slot_setting', options_list=['--slot-setting'], help="With slot setting you can decide to make BYOS configuration sticky to a slot, meaning that when that slot is swapped, the storage account stays with that slot.")
630632

631633
with self.argument_context('webapp config backup') as c:

0 commit comments

Comments
 (0)