You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/containerapp/azext_containerapp/_params.py
+27Lines changed: 27 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -530,3 +530,30 @@ def load_arguments(self, _):
530
530
c.argument('termination_grace_period', options_list=['--termination-grace-period', '-t'], type=int, help="Time in seconds to drain requests during ingress shutdown. Default 500, minimum 0, maximum 3600.")
531
531
c.argument('request_idle_timeout', options_list=['--request-idle-timeout'], type=int, help="Timeout in minutes for idle requests. Default 4, minimum 4, maximum 30.")
532
532
c.argument('header_count_limit', options_list=['--header-count-limit'], type=int, help="Limit of http headers per request. Default 100, minimum 1.")
533
+
534
+
withself.argument_context('containerapp function list-keys') asc:
c.argument('name', options_list=['--name', '-n'], help="The name of the container app.")
556
+
c.argument('revision', options_list=['--revision'], help="The name of the container app revision.")
557
+
c.argument('key_name', options_list=['--key-name'], help="The name of the host key to update.")
558
+
c.argument('key_value', options_list=['--key-value'], help="The value of the host key to update.")
559
+
c.argument('key_type', options_list=['--key-type'], arg_type=get_enum_type(['functionKeys', 'masterKey', 'systemKeys']), help="The type of the host key.")
0 commit comments