Azure Functions
Function App
Pattern: [env]-[app/service name]-fa
| Example | Notes |
|---|---|
prd-docprocessing-fa | Production document processing |
dev-apigateway-fa | Development API gateway helpers |
Function Names
Pattern: [verb]-[noun]-[qualifier]
| Example | Notes |
|---|---|
get-customer-byid | Retrieves a customer record by ID |
process-document-async | Processes a document asynchronously |
send-email-weekly | Sends weekly scheduled emails |
update-inventory-batch | Updates inventory in batch mode |