Setting | Suggested value | Description |
---|---|---|
Subscription | Your subscription | The Azure subscription within which to create your new function app. |
Resource Group | Create new | After you click Create new, enter some name for the new resource group within which to create your new function app. You should create a new resource group because there are known limitations when creating new function apps in an existing resource group. Learn more. |
Function App name | Some globally unique name | Some name that identifies your new function app. Valid characters are a -z (case insensitive), 0 -9 , and - . |
Operating System | Windows | Choose the operating system for your function app. This example uses Windows. |
Runtime stack | Node.js | Choose a runtime that supports your favorite function programming language. This example uses JavaScript (Node.js). |
Version | 20 LTS | Choose the version of your selected runtime. This example uses Node.js 20 LTS. |
Region | Your preferred region | Select a region that’s near you or near other services that your function can access. |
Setting | Suggested value | Description |
---|---|---|
Function name | BlobTrigger1 | The name of the function to create. You can leave the default function name. |
Path | samples-workitems/{name} | The path to the Azure Blob Storage account that the function will monitor. You can leave the default path. |
Storage account connection | AzureWebJobsStorage | You can leave the default storage account connection name. |
index.js
file with the following code:
UNSTRUCTURED_API_URL
.
<unstructured-api-url>/workflows/<workflow-id>/run
, and replace the following placeholders:
<unstructured-api-url>
with your Unstructured Worfklow Endpoint value.<workflow-id>
with the ID of your Unstructured workflow. For now, because the workflow does not yet exist, enter some fictitious value, such as 1234567890
. You will
update this value later in Step 6 after you create the workflow.UNSTRUCTURED_API_KEY
.
samples-workitems
. This name must match the container name that you specified earlier in the Path field (not including /{name}
) in Step 2.UNSTRUCTURED_API_URL
.