Skip to content

Commit 6284713

Browse files
committed
SFI-image clean-up and removal (blob)
1 parent d369c7e commit 6284713

15 files changed

+13
-42
lines changed

articles/azure-functions/functions-create-storage-blob-triggered-function.md

Lines changed: 13 additions & 40 deletions
Original file line numberDiff line numberDiff line change
@@ -20,76 +20,49 @@ Learn how to create a function triggered when files are uploaded to or updated i
2020

2121
[!INCLUDE [Create function app Azure portal](../../includes/functions-create-function-app-portal.md)]
2222

23-
You've successfully created your new function app.
24-
25-
:::image type="content" source="./media/functions-create-storage-blob-triggered-function/function-app-create-success.png" alt-text="Function app successfully created." border="true":::
26-
27-
Next, you create a function in the new function app.
23+
You've successfully created your new function app. Next, you create a function in the new function app.
2824

2925
<a name="create-function"></a>
3026

3127
## Create an Azure Blob storage triggered function
3228

3329
1. In your function app, select **Overview**, and then select **+ Create** under **Functions**.
3430

35-
1. Under **Select a template**, scroll down and choose the **Azure Blob Storage trigger** template.
31+
1. Under **Select a template**, choose the **Blob trigger** template and select **Next**.
3632

3733
1. In **Template details**, configure the new trigger with the settings as specified in this table, then select **Create**:
3834

3935
| Setting | Suggested value | Description |
4036
|---|---|---|
37+
| **Job type** | Append to app | You only see this setting for a Python v2 app. |
4138
| **New Function** | Unique in your function app | Name of this blob triggered function. |
4239
| **Path** | samples-workitems/{name} | Location in Blob storage being monitored. The file name of the blob is passed in the binding as the _name_ parameter. |
4340
| **Storage account connection** | AzureWebJobsStorage | You can use the storage account connection already being used by your function app, or create a new one. |
4441

45-
Azure creates the Blob Storage triggered function based on the provided values.
46-
47-
Next, create the **samples-workitems** container.
42+
Azure creates the Blob Storage triggered function based on the provided values. Next, create the **samples-workitems** container.
4843

4944
## Create the container
5045

51-
1. In your function, on the **Overview** page, select your resource group.
52-
53-
:::image type="content" source="./media/functions-create-storage-blob-triggered-function/functions-storage-resource-group.png" alt-text="Select your Azure portal resource group." border="true":::
54-
55-
1. Find and select your resource group's storage account.
56-
57-
:::image type="content" source="./media/functions-create-storage-blob-triggered-function/functions-storage-account-access.png" alt-text="Access the storage account." border="true":::
58-
59-
1. Choose **Containers**, and then choose **+ Container**.
46+
1. Return to the **Overview** page for your function app, select your **Resource group**, then find and select the storage account in your resource group.
6047

61-
:::image type="content" source="./media/functions-create-storage-blob-triggered-function/functions-storage-add-container.png" alt-text="Add container to your storage account in the Azure portal." border="true":::
48+
1. In the storage account page, select **Data storage** > **Containers** > **+ Container**.
6249

63-
1. In the **Name** field, type `samples-workitems`, and then select **Create**.
50+
1. In the **Name** field, type `samples-workitems`, and then select **Create** to create a container.
6451

65-
:::image type="content" source="./media/functions-create-storage-blob-triggered-function/functions-storage-name-blob-container.png" alt-text="Name the storage container." border="true":::
66-
67-
Now that you have a blob container, you can test the function by uploading a file to the container.
52+
1. Select the new `samples-workitems` container, which you can use to test the function by uploading a file to the container.
6853

6954
## Test the function
7055

71-
1. Back in the Azure portal, browse to your function expand the **Logs** at the bottom of the page and make sure that log streaming isn't paused.
72-
73-
:::image type="content" source="./media/functions-create-storage-blob-triggered-function/functions-storage-log-expander.png" alt-text="Expand the log in the Azure portal." border="true":::
74-
75-
1. In a separate browser window, go to your resource group in the Azure portal, and select the storage account.
76-
77-
1. Select **Containers**, and then select the **samples-workitems** container.
78-
79-
:::image type="content" source="./media/functions-create-storage-blob-triggered-function/functions-storage-container.png" alt-text="Go to your samples-workitems container in the Azure portal." border="true":::
80-
81-
1. Select **Upload**, and then select the folder icon to choose a file to upload.
82-
83-
:::image type="content" source="./media/functions-create-storage-blob-triggered-function/functions-storage-manager-upload-file-blob.png" alt-text="Upload a file to the blob container." border="true":::
56+
1. In a new browser window, return to your function app page and select **Log stream**, which displays real-time logging for your app.
8457

85-
1. Browse to a file on your local computer, such as an image file, choose the file. Select **Open** and then **Upload**.
58+
1. From the `samples-workitems` container page, select **Upload** > **Browse for files**, browse to a file on your local computer (such as an image file), and choose the file.
8659

87-
1. Go back to your function logs and verify that the blob has been read.
60+
1. Select **Open** and then **Upload**.
8861

89-
:::image type="content" source="./media/functions-create-storage-blob-triggered-function/function-app-in-portal-editor.png" alt-text="View message in the logs." border="true":::
62+
1. Go back to your function app logs and verify that the blob has been read.
9063

9164
>[!NOTE]
92-
> When your function app runs in the default Consumption plan, there may be a delay of up to several minutes between the blob being added or updated and the function being triggered. If you need low latency in your blob triggered functions, consider running your function app in an App Service plan.
65+
> When your function app runs in the default Consumption plan, there may be a delay of up to several minutes between the blob being added or updated and the function being triggered. If you need low latency in your blob triggered functions, consider one of these [other blob trigger options](./storage-considerations.md#trigger-on-a-blob-container).
9366
9467
## Clean up resources
9568

articles/azure-functions/functions-create-storage-queue-triggered-function.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,6 @@ Learn how to create a function that is triggered when messages are submitted to
2020

2121
[!INCLUDE [Create function app Azure portal](../../includes/functions-create-function-app-portal.md)]
2222

23-
:::image type="content" source="./media/functions-create-storage-queue-triggered-function/function-app-create-success.png" alt-text="Function app successfully created.." border="true":::
24-
2523
Next, you create a function in the new function app.
2624

2725
<a name="create-function"></a>
-3.04 KB
Loading

0 commit comments

Comments
 (0)