Skip to content

Commit 286442f

Browse files
committed
Expand README.md
1 parent 6e637ef commit 286442f

1 file changed

Lines changed: 17 additions & 0 deletions

File tree

README.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,3 +3,20 @@
33
This repo contains various examples of Azure Functions, for example a v1 http trigger, a v2 http trigger, a v2 blob trigger, blob copying, using a function's managed identity, delta tables, asyncio etc.
44

55
The repo features functions of both programming model v1 and v2 – mainly v2 though. The repo also contains an Azure Devops pipeline (yaml) to deploy the underlying infrastructure (via Terraform) and the code to the function apps.
6+
7+
## Functions
8+
9+
```
10+
v1/
11+
└── http_trigger: an http-triggered function using the v1 programming model
12+
13+
v2/
14+
├── copy_blobs: a blob-triggered function that copies the blob to a new location
15+
├── http_trigger: an http-triggered function using the v2 programming model
16+
├── http_trigger_async: an http-triggered function that can be run/triggered asynchronously (with async)
17+
├── http_trigger_async_exec: an http-triggered function that executes its code asynchronously (with async)
18+
├── simple_blob_trigger: a blob-triggered function
19+
├── simple_blob_trigger_managed_identity: a blob-triggered function authenticating through the function's managed identity
20+
├── write_delta_table: a blob-triggered function writing a delta table with polars
21+
└── write_delta_table_managed_identity: a blob-triggered function writing a delta table with polars authenticating through the function's managed identity
22+
```

0 commit comments

Comments
 (0)