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: articles/azure-functions/functions-bindings-event-grid-trigger.md
+4-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -397,13 +397,13 @@ To start receiving Event Grid HTTP requests, create an Event Grid subscription t
397
397
398
398
### Azure portal
399
399
400
-
For functions that you develop in the Azure portal with the Event Grid trigger, select **Add Event Grid subscription**.
400
+
For functions that you develop in the Azure portal with the Event Grid trigger, select **Integration** then choose the **Event Grid Trigger** and select **Create Event Grid subscription**.
401
401
402
-

402
+
:::image type="content" source="media/functions-bindings-event-grid/portal-sub-create.png" alt-text="Connect a new event subscription to trigger in the portal.":::
403
403
404
-
When you select this link, the portal opens the **Create Event Subscription** page with the endpoint URL prefilled.
404
+
When you select this link, the portal opens the **Create Event Subscription** page with the current trigger endpoint already defined.
:::image type="content" source="media/functions-bindings-event-grid/endpoint-url.png" alt-text="Create event subscription with function endpoint already defined" :::
407
407
408
408
For more information about how to create subscriptions by using the Azure portal, see [Create custom event - Azure portal](../event-grid/custom-event-quickstart-portal.md) in the Event Grid documentation.
Copy file name to clipboardExpand all lines: articles/event-grid/resize-images-on-storage-blob-upload-event.md
+7-7Lines changed: 7 additions & 7 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -187,15 +187,15 @@ The function project code is deployed directly from the public sample repository
187
187
188
188
An event subscription indicates which provider-generated events you want sent to a specific endpoint. In this case, the endpoint is exposed by your function. Use the following steps to create an event subscription that sends notifications to your function in the Azure portal:
189
189
190
-
1. In the [Azure portal](https://portal.azure.com), select **All Services** on the left menu, and then select **Function Apps**.
190
+
1. In the [Azure portal](https://portal.azure.com), at the top of the page search for and select `Function App` and choose the function app that you just created. Select **Functions** and choose the **Thumbnail** function.
191
191
192
-

192
+
:::image type="content" source="media/resize-images-on-storage-blob-upload-event/choose-thumbnail-function.png" alt-text="Choose the Thumbnail function in the portal":::
193
193
194
-
2. Expand your function app, choose the **Thumbnail**function, and then select **Add Event Grid subscription**.
194
+
1. Select select **Integration** then choose the **Event Grid Trigger** and select **Create Event Grid subscription**.
195
195
196
-

196
+
:::image type="content" source="./media/resize-images-on-storage-blob-upload-event/add-event-subscription.png" alt-text="Navigate to Add Event Grid subscription in the Azure portal" :::
197
197
198
-
3. Use the event subscription settings as specified in the table.
198
+
1. Use the event subscription settings as specified in the table.
199
199
200
200

201
201
@@ -210,13 +210,13 @@ An event subscription indicates which provider-generated events you want sent to
210
210
|**Endpoint type**| autogenerated | Pre-defined as **Azure Function**. |
211
211
|**Endpoint**| autogenerated | Name of the function. In this case, it's **Thumbnail**. |
212
212
213
-
4. Switch to the **Filters** tab, and do the following actions:
213
+
1. Switch to the **Filters** tab, and do the following actions:
214
214
1. Select **Enable subject filtering** option.
215
215
2. For **Subject begins with**, enter the following value : **/blobServices/default/containers/images/blobs/**.
216
216
217
217

218
218
219
-
5. Select **Create** to add the event subscription. This creates an event subscription that triggers the `Thumbnail` function when a blob is added to the `images` container. The function resizes the images and adds them to the `thumbnails` container.
219
+
1. Select **Create** to add the event subscription. This creates an event subscription that triggers the `Thumbnail` function when a blob is added to the `images` container. The function resizes the images and adds them to the `thumbnails` container.
220
220
221
221
Now that the backend services are configured, you test the image resize functionality in the sample web app.
0 commit comments