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
|**connection**<sup>*</sup>|ThevalueofthecommonprefixforthesettingthatcontainsthetopicendpointURI. Whensettingthe `connection` property, the `topicEndpointUri` and `topicKeySetting` propertiesshouldnotbeset. Formoreinformationaboutthenamingformatofthisapplicationsetting, see [Identity-basedauthentication](#identity-based-authentication). |
579
580
580
581
# [Model v3](#tab/nodejs-v3)
581
582
@@ -588,7 +589,7 @@ The following table explains the binding configuration properties that you set i
|**connection**<sup>*</sup>|ThevalueofthecommonprefixforthesettingthatcontainsthetopicendpointURI. Formoreinformationaboutthenamingformatofthisapplicationsetting, see [Identity-basedauthentication](#identity-based-authentication). |
592
+
|**connection**<sup>*</sup>|ThevalueofthecommonprefixforthesettingthatcontainsthetopicendpointURI. Whensettingthe `connection` property, the `topicEndpointUri` and `topicKeySetting` propertiesshouldnotbeset. Formoreinformationaboutthenamingformatofthisapplicationsetting, see [Identity-basedauthentication](#identity-based-authentication). |
592
593
593
594
---
594
595
@@ -722,7 +723,7 @@ Use the following steps to configure a topic key:
The following example shows a warmup trigger [JavaScript function](functions-reference-node.md) that runs on each new instance when it's added to your app.
88
+
89
+
```javascript
90
+
import { app } from"@azure/functions";
91
+
92
+
app.warmup('warmupTrigger1', {
93
+
handler: (warmupContext, context) => {
94
+
context.log('Function App instance is warm.');
95
+
},
96
+
});
97
+
```
98
+
99
+
# [Model v3](#tab/nodejs-v3)
84
100
85
101
The following example shows a warmup trigger in a *function.json* file and a [JavaScript function](functions-reference-node.md) that runs on each new instance when it's added to your app.
86
102
@@ -102,13 +118,34 @@ The [configuration](#configuration) section explains these properties.
The following example shows a warmup trigger [JavaScript function](functions-reference-node.md) that runs on each new instance when it's added to your app.
0 commit comments