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
|**`--access-token`**| Lets you use a specific access token when performing authenticated `azure` actions. |
189
+
|**`--access-token-stdin `**| Reads a specific access token from a standard input. Use this when reading the token directly from a previous command such as [`az account get-access-token`](/cli/azure/account#az-account-get-access-token). |
190
+
|**`--management-url`**| Sets the management URL for your cloud. Use this when running in a sovereign cloud. |
191
+
|**`--slot`**| Optional name of a specific slot to which to publish. |
192
+
|**`--subscription`**| Sets the default subscription to use. |
193
+
184
194
For more information, see [Download application settings](functions-run-local.md#download-application-settings).
185
195
186
196
Settings are downloaded into the local.settings.json file for the project. On-screen values are masked for security. You can protect settings in the local.settings.json file by [enabling local encryption](functions-run-local.md#encrypt-the-local-settings-file).
@@ -192,6 +202,18 @@ Returns a list of the functions in the specified function app.
192
202
```command
193
203
func azure functionapp list-functions <APP_NAME>
194
204
```
205
+
206
+
`func azure functionapp list-functions` supports these optional arguments:
|**`--access-token`**| Lets you use a specific access token when performing authenticated `azure` actions. |
211
+
|**`--access-token-stdin `**| Reads a specific access token from a standard input. Use this when reading the token directly from a previous command such as [`az account get-access-token`](/cli/azure/account#az-account-get-access-token). |
212
+
|**`--management-url`**| Sets the management URL for your cloud. Use this when running in a sovereign cloud. |
213
+
|**`--show-keys`**| Shows HTTP function endpoint URLs that include their default access keys. These URLs can be used to access function endpoints with `function` level [HTTP authentication](functions-bindings-http-webhook-trigger.md#http-auth). |
214
+
|**`--slot`**| Optional name of a specific slot to which to publish. |
215
+
|**`--subscription`**| Sets the default subscription to use. |
216
+
195
217
## func azure functionapp logstream
196
218
197
219
Connects the local command prompt to streaming logs for the function app in Azure.
The default timeout for the connection is 2 hours. You can change the timeout by adding an app setting named [SCM_LOGSTREAM_TIMEOUT](functions-app-settings.md#scm_logstream_timeout), with a timeout value in seconds. Not yet supported for Linux apps in the Consumption plan. For these apps, use the `--browser` option to view logs in the portal.
204
226
205
-
The `deploy` action supports the following options:
227
+
The `func azure functionapp logstream` command supports these optional arguments:
|**`--access-token`**| Lets you use a specific access token when performing authenticated `azure` actions. |
232
+
|**`--access-token-stdin `**| Reads a specific access token from a standard input. Use this when reading the token directly from a previous command such as [`az account get-access-token`](/cli/azure/account#az-account-get-access-token). |
209
233
|**`--browser`**| Open Azure Application Insights Live Stream for the function app in the default browser. |
234
+
|**`--management-url`**| Sets the management URL for your cloud. Use this when running in a sovereign cloud. |
235
+
|**`--slot`**| Optional name of a specific slot to which to publish. |
236
+
|**`--subscription`**| Sets the default subscription to use. |
210
237
211
238
For more information, see [Enable streaming execution logs in Azure Functions](streaming-logs.md).
212
239
@@ -242,6 +269,7 @@ The following publish options apply, based on version:
242
269
|**`--overwrite-settings -y`**| Suppress the prompt to overwrite app settings when `--publish-local-settings -i` is used.|
243
270
|**`--publish-local-settings -i`**| Publish settings in local.settings.json to Azure, prompting to overwrite if the setting already exists. If you're using a [local storage emulator](functions-develop-local.md#local-storage-emulator), first change the app setting to an [actual storage connection](#func-azure-storage-fetch-connection-string). |
244
271
|**`--publish-settings-only`**, **`-o`**| Only publish settings and skip the content. Default is prompt. |
272
+
|**`--show-keys`**| Shows HTTP function endpoint URLs that include their default access keys. These URLs can be used to access function endpoints with `function` level [HTTP authentication](functions-bindings-http-webhook-trigger.md#http-auth). |
245
273
|**`--slot`**| Optional name of a specific slot to which to publish. |
246
274
|**`--subscription`**| Sets the default subscription to use. |
0 commit comments