Azure Functions CLI Samples

Explore Azure Functions CLI Sample Projects

Discover practical examples of how to use the Azure Functions CLI to create, develop, and manage your serverless applications. These samples cover a wide range of scenarios and common patterns.

HTTP Trigger with Input Binding

A basic Azure Function triggered by an HTTP request, demonstrating how to receive and process data from a request body using an input binding for Azure Table Storage.

HTTP Trigger Azure Table Storage Input Binding Node.js
View Sample

Timer Trigger with Output Binding

This sample shows a function that runs on a schedule using a Timer Trigger and writes output to an Azure Queue using an output binding.

Timer Trigger Azure Queue Storage Output Binding Python
View Sample

Cosmos DB Change Feed Trigger

Learn how to process changes in an Azure Cosmos DB container using the Change Feed trigger. This function reacts to data modifications in real-time.

Cosmos DB Change Feed Event-Driven C#
View Sample

Blob Storage Trigger with Processing

A function that automatically runs when a new blob is uploaded to an Azure Blob Storage container, performing custom processing on the file.

Blob Storage File Processing Event-Driven Java
View Sample

Service Bus Topic Trigger

Process messages from an Azure Service Bus topic. This sample demonstrates asynchronous processing of messages published to a topic.

Service Bus Message Queuing Async PowerShell
View Sample

Durable Functions - State Management

An introduction to Azure Durable Functions, showcasing how to orchestrate complex workflows and manage state across multiple function executions.

Durable Functions Orchestration State Management TypeScript
View Sample