Skip to content

Commit bad2e6c

Browse files
authored
Merge pull request #115078 from ggailey777/portal
Event Grid portal updates
2 parents 014f2bb + 077864d commit bad2e6c

File tree

7 files changed

+11
-11
lines changed

7 files changed

+11
-11
lines changed

articles/azure-functions/functions-bindings-event-grid-trigger.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -397,13 +397,13 @@ To start receiving Event Grid HTTP requests, create an Event Grid subscription t
397397

398398
### Azure portal
399399

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**.
401401

402-
![Create subscription in portal](media/functions-bindings-event-grid/portal-sub-create.png)
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.":::
403403

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.
405405

406-
![Endpoint URL prefilled](media/functions-bindings-event-grid/endpoint-url.png)
406+
:::image type="content" source="media/functions-bindings-event-grid/endpoint-url.png" alt-text="Create event subscription with function endpoint already defined" :::
407407

408408
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.
409409

75.7 KB
Loading
59.4 KB
Loading
45.9 KB
Loading
44.8 KB
Loading

articles/event-grid/resize-images-on-storage-blob-upload-event.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -187,15 +187,15 @@ The function project code is deployed directly from the public sample repository
187187

188188
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:
189189

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.
191191

192-
![Navigate to Function Apps in the Azure portal](./media/resize-images-on-storage-blob-upload-event/portal-find-functions.png)
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":::
193193

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**.
195195

196-
![Navigate to Add Event Grid subscription in the Azure portal](./media/resize-images-on-storage-blob-upload-event/add-event-subscription.png)
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" :::
197197

198-
3. Use the event subscription settings as specified in the table.
198+
1. Use the event subscription settings as specified in the table.
199199

200200
![Create event subscription from the function in the Azure portal](./media/resize-images-on-storage-blob-upload-event/event-subscription-create.png)
201201

@@ -210,13 +210,13 @@ An event subscription indicates which provider-generated events you want sent to
210210
| **Endpoint type** | autogenerated | Pre-defined as **Azure Function**. |
211211
| **Endpoint** | autogenerated | Name of the function. In this case, it's **Thumbnail**. |
212212

213-
4. Switch to the **Filters** tab, and do the following actions:
213+
1. Switch to the **Filters** tab, and do the following actions:
214214
1. Select **Enable subject filtering** option.
215215
2. For **Subject begins with**, enter the following value : **/blobServices/default/containers/images/blobs/**.
216216

217217
![Specify filter for the event subscription](./media/resize-images-on-storage-blob-upload-event/event-subscription-filter.png)
218218

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.
220220

221221
Now that the backend services are configured, you test the image resize functionality in the sample web app.
222222

0 commit comments

Comments
 (0)