{"id":"d410f9e9-66fa-4f0c-a3fd-ac6b3a9a18cb","shortId":"bmpDGS","kind":"skill","title":"azure-functions","tagline":"Expert knowledge for Azure Functions development including troubleshooting, best practices, decision making, architecture & design patterns, limits & quotas, security, configuration, integrations & coding patterns, and deployment. Use when building HTTP/event-driven Functions, Du","description":"# Azure Functions Skill\n\nThis skill provides expert guidance for Azure Functions. Covers troubleshooting, best practices, decision making, architecture & design patterns, limits & quotas, security, configuration, integrations & coding patterns, and deployment. It combines local quick-reference content with remote documentation fetching capabilities.\n\n## How to Use This Skill\n\n> **IMPORTANT for Agent**: Use the **Category Index** below to locate relevant sections. For categories with line ranges (e.g., `L35-L120`), use `read_file` with the specified lines. For categories with file links (e.g., `[security.md](security.md)`), use `read_file` on the linked reference file\n\n> **IMPORTANT for Agent**: If `metadata.generated_at` is more than 3 months old, suggest the user pull the latest version from the repository. If `mcp_microsoftdocs` tools are not available, suggest the user install it: [Installation Guide](https://github.com/MicrosoftDocs/mcp/blob/main/README.md)\n\nThis skill requires **network access** to fetch documentation content:\n- **Preferred**: Use `mcp_microsoftdocs:microsoft_docs_fetch` with query string `from=learn-agent-skill`. Returns Markdown.\n- **Fallback**: Use `fetch_webpage` with query string `from=learn-agent-skill&accept=text/markdown`. Returns Markdown.\n\n## Category Index\n\n| Category | Lines | Description |\n|----------|-------|-------------|\n| Troubleshooting | L37-L59 | Diagnosing and fixing Durable Functions/Task SDK issues, AZFD/AZFW error codes, storage and config problems, and runtime/deployment errors for Node.js, Python, and VM start/stop functions. |\n| Best Practices | L60-L78 | Patterns and guidance for robust, performant Azure Functions and Durable Functions: orchestration/entity design, versioning, error handling, DI, HTTP/connection usage, scaling, and language-specific best practices. |\n| Decision Making | L79-L100 | Guidance on choosing Functions hosting/runtime models, comparing costs and plans, and planning migrations (between runtimes, models, plans, and from AWS Lambda or Express APIs). |\n| Architecture & Design Patterns | L101-L106 | Running Functions in Linux containers, Durable Functions design with Azure Storage, and hosting Functions on Azure Container Apps for scalable, container-based architectures. |\n| Limits & Quotas | L107-L115 | Details on Functions hosting limits: legacy and Flex Consumption plans, scaling behavior, concurrency and target-based scaling settings, and supported languages/versions. |\n| Security | L116-L132 | Securing Functions apps: encryption at rest, storage hardening, keys and secrets, managed identity, SQL access, private endpoints, VNet/network access controls, and App Service security features. |\n| Configuration | L133-L168 | Configuring Azure Functions apps: bindings, triggers, host/app settings, monitoring/telemetry, runtime versions, networking/IP, local tools, and legacy C# models. |\n| Integrations & Coding Patterns | L169-L273 | Patterns and how-tos for wiring Functions to external systems (HTTP, data stores, messaging, AI/OpenAI, Dapr, MCP) using triggers/bindings, including language- and tool-specific setup. |\n| Deployment | L274-L303 | Deploying and hosting Azure Functions: provisioning plans (Consumption/Flex/Kubernetes), CI/CD (GitHub Actions, Azure Pipelines), containers, templates (Bicep/ARM/Terraform), and migration tasks. |\n\n### Troubleshooting\n| Topic | URL |\n|-------|-----|\n| Resolve AZFD0001 missing AzureWebJobsStorage setting | https://learn.microsoft.com/en-us/azure/azure-functions/errors-diagnostics/diagnostic-events/azfd0001 |\n| Fix AZFD0002 invalid AzureWebJobsStorage value | https://learn.microsoft.com/en-us/azure/azure-functions/errors-diagnostics/diagnostic-events/azfd0002 |\n| Troubleshoot AZFD0003 StorageException fetching diagnostics | https://learn.microsoft.com/en-us/azure/azure-functions/errors-diagnostics/diagnostic-events/azfd0003 |\n| Resolve AZFD0004 Azure Functions host ID collision | https://learn.microsoft.com/en-us/azure/azure-functions/errors-diagnostics/diagnostic-events/azfd0004 |\n| Fix AZFD0005 external startup exception in Functions | https://learn.microsoft.com/en-us/azure/azure-functions/errors-diagnostics/diagnostic-events/azfd0005 |\n| Handle AZFD0006 expiring SAS token warnings | https://learn.microsoft.com/en-us/azure/azure-functions/errors-diagnostics/diagnostic-events/azfd0006 |\n| Resolve AZFD0007 too many secrets backups | https://learn.microsoft.com/en-us/azure/azure-functions/errors-diagnostics/diagnostic-events/azfd0007 |\n| Fix AZFD0008 archive-tier Blob secrets repository | https://learn.microsoft.com/en-us/azure/azure-functions/errors-diagnostics/diagnostic-events/azfd0008 |\n| Resolve AZFD0009 unable to parse host.json | https://learn.microsoft.com/en-us/azure/azure-functions/errors-diagnostics/diagnostic-events/azfd0009 |\n| Fix AZFD0010 TZ/WEBSITE_TIME_ZONE on Linux Consumption | https://learn.microsoft.com/en-us/azure/azure-functions/errors-diagnostics/diagnostic-events/azfd0010 |\n| Resolve AZFD0011 missing FUNCTIONS_WORKER_RUNTIME | https://learn.microsoft.com/en-us/azure/azure-functions/errors-diagnostics/diagnostic-events/azfd0011 |\n| Fix AZFD0013 mismatched FUNCTIONS_WORKER_RUNTIME and payload | https://learn.microsoft.com/en-us/azure/azure-functions/errors-diagnostics/diagnostic-events/azfd0013 |\n| Resolve AZFD0015 non-CRON timer trigger schedule | https://learn.microsoft.com/en-us/azure/azure-functions/errors-diagnostics/diagnostic-events/azfd0015 |\n| Fix AZFW0001 invalid binding attributes in Functions | https://learn.microsoft.com/en-us/azure/azure-functions/errors-diagnostics/net-worker-rules/azfw0001 |\n| Handle errors and configure retries in Azure Functions | https://learn.microsoft.com/en-us/azure/azure-functions/functions-bindings-error-pages |\n| Troubleshoot Node.js Azure Functions deployment and runtime issues | https://learn.microsoft.com/en-us/azure/azure-functions/functions-node-troubleshoot |\n| Fix 'Azure Functions Runtime is unreachable' storage errors | https://learn.microsoft.com/en-us/azure/azure-functions/functions-recover-storage-account |\n| Troubleshoot common issues in Python Azure Functions | https://learn.microsoft.com/en-us/azure/azure-functions/recover-python-functions |\n| Diagnose and fix Start/Stop VMs for Azure Functions | https://learn.microsoft.com/en-us/azure/azure-functions/start-stop-v2/troubleshoot |\n\n### Best Practices\n| Topic | URL |\n|-------|-----|\n| Avoid async void in Azure Functions (AZF0001) | https://learn.microsoft.com/en-us/azure/azure-functions/errors-diagnostics/sdk-rules/azf0001 |\n| Optimize HttpClient usage in Functions (AZF0002) | https://learn.microsoft.com/en-us/azure/azure-functions/errors-diagnostics/sdk-rules/azf0002 |\n| Apply Azure Functions design and coding best practices | https://learn.microsoft.com/en-us/azure/azure-functions/functions-best-practices |\n| Handle errors and configure retries in Azure Functions | https://learn.microsoft.com/en-us/azure/azure-functions/functions-bindings-error-pages |\n| Implement dependency injection in .NET Azure Functions | https://learn.microsoft.com/en-us/azure/azure-functions/functions-dotnet-dependency-injection |\n| Design idempotent Azure Functions for duplicate events | https://learn.microsoft.com/en-us/azure/azure-functions/functions-idempotent |\n| Apply core development guidance across Azure Functions languages | https://learn.microsoft.com/en-us/azure/azure-functions/functions-reference |\n| Develop Java-based Azure Functions with triggers and bindings | https://learn.microsoft.com/en-us/azure/azure-functions/functions-reference-java |\n| Develop Node.js Azure Functions with triggers, bindings, and patterns | https://learn.microsoft.com/en-us/azure/azure-functions/functions-reference-node |\n| Develop PowerShell Azure Functions with function.json bindings | https://learn.microsoft.com/en-us/azure/azure-functions/functions-reference-powershell |\n| Implement reliable event processing with Event Hubs and Functions | https://learn.microsoft.com/en-us/azure/azure-functions/functions-reliable-event-processing |\n| Manage connection usage efficiently in Azure Functions | https://learn.microsoft.com/en-us/azure/azure-functions/manage-connections |\n| Optimize Azure Functions performance and reliability | https://learn.microsoft.com/en-us/azure/azure-functions/performance-reliability |\n| Profile and reduce memory usage in Python Azure Functions | https://learn.microsoft.com/en-us/azure/azure-functions/python-memory-profiler-reference |\n| Optimize throughput and scaling for Python Azure Functions | https://learn.microsoft.com/en-us/azure/azure-functions/python-scale-performance-reference |\n\n### Decision Making\n| Topic | URL |\n|-------|-----|\n| Choose Azure Functions file access strategy | https://learn.microsoft.com/en-us/azure/azure-functions/concept-file-access-options |\n| Plan migration from legacy Azure Functions Consumption plan | https://learn.microsoft.com/en-us/azure/azure-functions/consumption-plan |\n| Choose and use Azure Functions Dedicated hosting | https://learn.microsoft.com/en-us/azure/azure-functions/dedicated-plan |\n| Compare in-process vs isolated .NET Azure Functions models | https://learn.microsoft.com/en-us/azure/azure-functions/dotnet-isolated-in-process-differences |\n| Choose between Azure Functions, Logic Apps, WebJobs, and Power Automate | https://learn.microsoft.com/en-us/azure/azure-functions/functions-compare-logic-apps-ms-flow-webjobs |\n| Estimate and compare Azure Functions consumption plan costs | https://learn.microsoft.com/en-us/azure/azure-functions/functions-consumption-costs |\n| Evaluate Azure Functions Premium plan capabilities | https://learn.microsoft.com/en-us/azure/azure-functions/functions-premium-plan |\n| Select Azure Functions hosting and scaling options | https://learn.microsoft.com/en-us/azure/azure-functions/functions-scale |\n| Choose Azure Functions hosting and scaling options | https://learn.microsoft.com/en-us/azure/azure-functions/functions-scale |\n| Choose the right Azure Functions runtime version | https://learn.microsoft.com/en-us/azure/azure-functions/functions-versions |\n| Understand Azure Functions language support lifecycle | https://learn.microsoft.com/en-us/azure/azure-functions/language-support-policy |\n| Migrate Azure Functions from in-process to isolated | https://learn.microsoft.com/en-us/azure/azure-functions/migrate-dotnet-to-isolated-model |\n| Migrate Azure Functions Service Bus extension v4 to v5 | https://learn.microsoft.com/en-us/azure/azure-functions/migrate-service-bus-version-4-version-5 |\n| Migrate Azure Functions apps from runtime v1 to v4 | https://learn.microsoft.com/en-us/azure/azure-functions/migrate-version-1-version-4 |\n| Migrate Azure Functions apps from runtime v3 to v4 | https://learn.microsoft.com/en-us/azure/azure-functions/migrate-version-3-version-4 |\n| Plan migration of AWS Lambda workloads to Azure Functions | https://learn.microsoft.com/en-us/azure/azure-functions/migration/migrate-aws-lambda-to-azure-functions |\n| Migrate Linux Consumption Functions to Flex Consumption | https://learn.microsoft.com/en-us/azure/azure-functions/migration/scenario-migrate-linux-consumption-to-flex |\n| Refactor Express.js APIs to Azure Functions endpoints | https://learn.microsoft.com/en-us/azure/azure-functions/shift-expressjs |\n\n### Architecture & Design Patterns\n| Topic | URL |\n|-------|-----|\n| Run Azure Functions in Linux containers | https://learn.microsoft.com/en-us/azure/azure-functions/container-concepts |\n| Host Azure Functions on Azure Container Apps | https://learn.microsoft.com/en-us/azure/azure-functions/functions-container-apps-hosting |\n\n### Limits & Quotas\n| Topic | URL |\n|-------|-----|\n| Understand event-driven scaling limits in Azure Functions | https://learn.microsoft.com/en-us/azure/azure-functions/event-driven-scaling |\n| Understand Azure Functions Flex Consumption hosting | https://learn.microsoft.com/en-us/azure/azure-functions/flex-consumption-plan |\n| Configure concurrency behavior in Azure Functions | https://learn.microsoft.com/en-us/azure/azure-functions/functions-concurrency |\n| Use target-based scaling for Azure Functions triggers | https://learn.microsoft.com/en-us/azure/azure-functions/functions-target-based-scaling |\n| Review supported languages and versions for Azure Functions | https://learn.microsoft.com/en-us/azure/azure-functions/supported-languages |\n\n### Security\n| Topic | URL |\n|-------|-----|\n| Encrypt Azure Functions application source at rest | https://learn.microsoft.com/en-us/azure/azure-functions/configure-encrypt-at-rest-using-cmk |\n| Use secured storage accounts with Azure Functions | https://learn.microsoft.com/en-us/azure/azure-functions/configure-networking-how-to |\n| Handle AZFD0012 non-highly identifiable secret warnings | https://learn.microsoft.com/en-us/azure/azure-functions/errors-diagnostics/diagnostic-events/azfd0012 |\n| Manage and use access keys for Azure Functions endpoints | https://learn.microsoft.com/en-us/azure/azure-functions/function-keys-how-to |\n| Restrict Azure Functions access using private site access | https://learn.microsoft.com/en-us/azure/azure-functions/functions-create-private-site-access |\n| Secure Azure Functions with VNet private endpoints | https://learn.microsoft.com/en-us/azure/azure-functions/functions-create-vnet |\n| Secure Azure Functions SQL access with managed identity | https://learn.microsoft.com/en-us/azure/azure-functions/functions-identity-access-azure-sql-with-managed-identity |\n| Configure identity-based connections for Azure Functions | https://learn.microsoft.com/en-us/azure/azure-functions/functions-identity-based-connections-tutorial |\n| Use managed identity with Functions triggers and bindings | https://learn.microsoft.com/en-us/azure/azure-functions/functions-identity-based-connections-tutorial-2 |\n| Securely host MCP servers on Azure Functions | https://learn.microsoft.com/en-us/azure/azure-functions/functions-mcp-tutorial |\n| Configure Azure Functions networking and access controls | https://learn.microsoft.com/en-us/azure/azure-functions/functions-networking-options |\n| Secure Azure Functions with App Service features | https://learn.microsoft.com/en-us/azure/azure-functions/security-concepts |\n| Configure Azure Functions storage and encryption securely | https://learn.microsoft.com/en-us/azure/azure-functions/storage-considerations |\n\n### Configuration\n| Topic | URL |\n|-------|-----|\n| Add input and output bindings to existing Azure Functions | https://learn.microsoft.com/en-us/azure/azure-functions/add-bindings-existing-function |\n| Configure Application Insights monitoring for Azure Functions | https://learn.microsoft.com/en-us/azure/azure-functions/configure-monitoring |\n| Disable and enable individual Azure Functions via settings | https://learn.microsoft.com/en-us/azure/azure-functions/disable-function |\n| Configure Azure Functions extension bundles for non-.NET apps | https://learn.microsoft.com/en-us/azure/azure-functions/extension-bundles |\n| Create and manage Flex Consumption plan function apps | https://learn.microsoft.com/en-us/azure/azure-functions/flex-consumption-how-to |\n| Configure Azure Functions app settings and environment variables | https://learn.microsoft.com/en-us/azure/azure-functions/functions-app-settings |\n| Configure Azure SQL trigger for Azure Functions | https://learn.microsoft.com/en-us/azure/azure-functions/functions-bindings-azure-sql-trigger |\n| Configure Azure Cosmos DB output binding for Functions | https://learn.microsoft.com/en-us/azure/azure-functions/functions-bindings-cosmosdb-v2-output |\n| Configure Azure Cosmos DB trigger binding for Functions | https://learn.microsoft.com/en-us/azure/azure-functions/functions-bindings-cosmosdb-v2-trigger |\n| Configure Azure Event Hubs output bindings in Functions | https://learn.microsoft.com/en-us/azure/azure-functions/functions-bindings-event-hubs-output |\n| Configure Azure Event Hubs trigger bindings in Functions | https://learn.microsoft.com/en-us/azure/azure-functions/functions-bindings-event-hubs-trigger |\n| Use Azure Functions binding expressions and patterns | https://learn.microsoft.com/en-us/azure/azure-functions/functions-bindings-expressions-patterns |\n| Register and configure Azure Functions binding extensions | https://learn.microsoft.com/en-us/azure/azure-functions/functions-bindings-register |\n| Configure Azure Service Bus output bindings in Functions | https://learn.microsoft.com/en-us/azure/azure-functions/functions-bindings-service-bus-output |\n| Configure Azure Functions timer trigger schedules | https://learn.microsoft.com/en-us/azure/azure-functions/functions-bindings-timer |\n| Configure Azure Functions warmup trigger behavior | https://learn.microsoft.com/en-us/azure/azure-functions/functions-bindings-warmup |\n| Use Azure Functions Core Tools command reference | https://learn.microsoft.com/en-us/azure/azure-functions/functions-core-tools-reference |\n| Configure Azure Functions custom handlers for any runtime | https://learn.microsoft.com/en-us/azure/azure-functions/functions-custom-handlers |\n| Configure and run Azure Functions locally with Core Tools | https://learn.microsoft.com/en-us/azure/azure-functions/functions-develop-local |\n| Develop legacy in-process C# class library Azure Functions | https://learn.microsoft.com/en-us/azure/azure-functions/functions-dotnet-class-library |\n| Configure host.json settings for Azure Functions v2+ | https://learn.microsoft.com/en-us/azure/azure-functions/functions-host-json |\n| Configure host.json settings for Azure Functions v1 | https://learn.microsoft.com/en-us/azure/azure-functions/functions-host-json-v1 |\n| Configure function app settings for Azure Functions | https://learn.microsoft.com/en-us/azure/azure-functions/functions-how-to-use-azure-function-app-settings |\n| Configure NAT gateway for Azure Functions outbound IP | https://learn.microsoft.com/en-us/azure/azure-functions/functions-how-to-use-nat-gateway |\n| Develop Azure Functions using legacy C# script (.csx) | https://learn.microsoft.com/en-us/azure/azure-functions/functions-reference-csharp |\n| Manage inbound and outbound IPs for Azure Functions | https://learn.microsoft.com/en-us/azure/azure-functions/ip-addresses |\n| Configure OpenTelemetry distributed tracing for Azure Functions | https://learn.microsoft.com/en-us/azure/azure-functions/monitor-functions-opentelemetry-distributed-tracing |\n| Reference for Azure Functions monitoring data schema | https://learn.microsoft.com/en-us/azure/azure-functions/monitor-functions-reference |\n| Configure OpenTelemetry export for Azure Functions logs | https://learn.microsoft.com/en-us/azure/azure-functions/opentelemetry-howto |\n| Target specific Azure Functions runtime versions | https://learn.microsoft.com/en-us/azure/azure-functions/set-runtime-version |\n| Manage and monitor VMs with Start/Stop VMs v2 | https://learn.microsoft.com/en-us/azure/azure-functions/start-stop-v2/manage |\n| Update language runtime versions for Azure Functions apps | https://learn.microsoft.com/en-us/azure/azure-functions/update-language-versions |\n\n### Integrations & Coding Patterns\n| Topic | URL |\n|-------|-----|\n| Create Python worker extensions for Azure Functions | https://learn.microsoft.com/en-us/azure/azure-functions/develop-python-worker-extensions |\n| Integrate Azure Functions with .NET Aspire applications | https://learn.microsoft.com/en-us/azure/azure-functions/dotnet-aspire-integration |\n| Configure Event Grid triggers and bindings in Azure Functions | https://learn.microsoft.com/en-us/azure/azure-functions/event-grid-how-tos |\n| Integrate Azure Functions with Azure OpenAI completions | https://learn.microsoft.com/en-us/azure/azure-functions/functions-add-openai-text-completion |\n| Use Azure SQL output bindings in Azure Functions (VS Code) | https://learn.microsoft.com/en-us/azure/azure-functions/functions-add-output-binding-azure-sql-vs-code |\n| Use Cosmos DB output bindings in Azure Functions (VS Code) | https://learn.microsoft.com/en-us/azure/azure-functions/functions-add-output-binding-cosmos-db-vs-code |\n| Connect HTTP-triggered function to Storage queue via CLI | https://learn.microsoft.com/en-us/azure/azure-functions/functions-add-output-binding-storage-queue-cli |\n| Add Azure Storage queue output binding in Visual Studio | https://learn.microsoft.com/en-us/azure/azure-functions/functions-add-output-binding-storage-queue-vs |\n| Configure Storage queue output binding in VS Code | https://learn.microsoft.com/en-us/azure/azure-functions/functions-add-output-binding-storage-queue-vs-code |\n| Use Azure Data Explorer bindings with Azure Functions | https://learn.microsoft.com/en-us/azure/azure-functions/functions-bindings-azure-data-explorer |\n| Configure Azure Data Explorer input binding for Azure Functions | https://learn.microsoft.com/en-us/azure/azure-functions/functions-bindings-azure-data-explorer-input |\n| Configure Azure Data Explorer output binding for Azure Functions | https://learn.microsoft.com/en-us/azure/azure-functions/functions-bindings-azure-data-explorer-output |\n| Use Azure Database for MySQL bindings in Azure Functions | https://learn.microsoft.com/en-us/azure/azure-functions/functions-bindings-azure-mysql |\n| Configure Azure Database for MySQL input binding in Functions | https://learn.microsoft.com/en-us/azure/azure-functions/functions-bindings-azure-mysql-input |\n| Configure Azure Database for MySQL output binding in Functions | https://learn.microsoft.com/en-us/azure/azure-functions/functions-bindings-azure-mysql-output |\n| Use Azure Database for MySQL trigger binding in Functions | https://learn.microsoft.com/en-us/azure/azure-functions/functions-bindings-azure-mysql-trigger |\n| Use Azure SQL bindings with Azure Functions | https://learn.microsoft.com/en-us/azure/azure-functions/functions-bindings-azure-sql |\n| Configure Azure SQL input binding for Azure Functions | https://learn.microsoft.com/en-us/azure/azure-functions/functions-bindings-azure-sql-input |\n| Use Azure SQL output binding in Azure Functions | https://learn.microsoft.com/en-us/azure/azure-functions/functions-bindings-azure-sql-output |\n| Integrate Azure Functions with Azure Cache for Redis | https://learn.microsoft.com/en-us/azure/azure-functions/functions-bindings-cache |\n| Configure Azure Cache for Redis input binding in Functions | https://learn.microsoft.com/en-us/azure/azure-functions/functions-bindings-cache-input |\n| Configure Azure Cache for Redis output binding in Functions | https://learn.microsoft.com/en-us/azure/azure-functions/functions-bindings-cache-output |\n| Use RedisListTrigger binding in Azure Functions | https://learn.microsoft.com/en-us/azure/azure-functions/functions-bindings-cache-trigger-redislist |\n| Use RedisPubSubTrigger binding in Azure Functions | https://learn.microsoft.com/en-us/azure/azure-functions/functions-bindings-cache-trigger-redispubsub |\n| Use RedisStreamTrigger binding in Azure Functions | https://learn.microsoft.com/en-us/azure/azure-functions/functions-bindings-cache-trigger-redisstream |\n| Use Azure Cosmos DB bindings with Azure Functions 1.x | https://learn.microsoft.com/en-us/azure/azure-functions/functions-bindings-cosmosdb |\n| Use Azure Cosmos DB bindings with Azure Functions v4 | https://learn.microsoft.com/en-us/azure/azure-functions/functions-bindings-cosmosdb-v2 |\n| Configure Azure Cosmos DB input binding for Azure Functions | https://learn.microsoft.com/en-us/azure/azure-functions/functions-bindings-cosmosdb-v2-input |\n| Integrate Azure Functions with Dapr extension bindings | https://learn.microsoft.com/en-us/azure/azure-functions/functions-bindings-dapr |\n| Access secrets with Dapr input binding in Azure Functions | https://learn.microsoft.com/en-us/azure/azure-functions/functions-bindings-dapr-input-secret |\n| Use Dapr state input binding in Azure Functions | https://learn.microsoft.com/en-us/azure/azure-functions/functions-bindings-dapr-input-state |\n| Send data via Dapr binding output in Azure Functions | https://learn.microsoft.com/en-us/azure/azure-functions/functions-bindings-dapr-output |\n| Invoke Dapr applications with Azure Functions output binding | https://learn.microsoft.com/en-us/azure/azure-functions/functions-bindings-dapr-output-invoke |\n| Publish Dapr topic messages from Azure Functions | https://learn.microsoft.com/en-us/azure/azure-functions/functions-bindings-dapr-output-publish |\n| Write Dapr state with output binding in Azure Functions | https://learn.microsoft.com/en-us/azure/azure-functions/functions-bindings-dapr-output-state |\n| Configure Dapr input binding triggers for Azure Functions | https://learn.microsoft.com/en-us/azure/azure-functions/functions-bindings-dapr-trigger |\n| Use Dapr service invocation trigger in Azure Functions | https://learn.microsoft.com/en-us/azure/azure-functions/functions-bindings-dapr-trigger-svc-invoke |\n| Configure Dapr topic triggers for Azure Functions | https://learn.microsoft.com/en-us/azure/azure-functions/functions-bindings-dapr-trigger-topic |\n| Use Azure DocumentDB bindings in Azure Functions | https://learn.microsoft.com/en-us/azure/azure-functions/functions-bindings-documentdb |\n| Configure Azure DocumentDB input binding for Azure Functions | https://learn.microsoft.com/en-us/azure/azure-functions/functions-bindings-documentdb-input |\n| Configure Azure DocumentDB output binding for Azure Functions | https://learn.microsoft.com/en-us/azure/azure-functions/functions-bindings-documentdb-output |\n| Configure Azure DocumentDB trigger for Azure Functions | https://learn.microsoft.com/en-us/azure/azure-functions/functions-bindings-documentdb-trigger |\n| Use Azure Event Grid triggers and bindings in Functions | https://learn.microsoft.com/en-us/azure/azure-functions/functions-bindings-event-grid |\n| Send events with Event Grid output binding in Functions | https://learn.microsoft.com/en-us/azure/azure-functions/functions-bindings-event-grid-output |\n| Configure Azure Event Grid trigger for Azure Functions | https://learn.microsoft.com/en-us/azure/azure-functions/functions-bindings-event-grid-trigger |\n| Integrate Azure Functions with Event Hubs bindings | https://learn.microsoft.com/en-us/azure/azure-functions/functions-bindings-event-hubs |\n| Integrate Azure Functions with IoT Hub bindings | https://learn.microsoft.com/en-us/azure/azure-functions/functions-bindings-event-iot |\n| Configure Azure IoT Hub trigger for Azure Functions | https://learn.microsoft.com/en-us/azure/azure-functions/functions-bindings-event-iot-trigger |\n| Use HTTP triggers and bindings in Azure Functions | https://learn.microsoft.com/en-us/azure/azure-functions/functions-bindings-http-webhook |\n| Customize HTTP responses with Azure Functions output binding | https://learn.microsoft.com/en-us/azure/azure-functions/functions-bindings-http-webhook-output |\n| Configure HTTP trigger for Azure Functions APIs | https://learn.microsoft.com/en-us/azure/azure-functions/functions-bindings-http-webhook-trigger |\n| Integrate Azure Functions with Apache Kafka bindings | https://learn.microsoft.com/en-us/azure/azure-functions/functions-bindings-kafka |\n| Send messages with Kafka output binding in Functions | https://learn.microsoft.com/en-us/azure/azure-functions/functions-bindings-kafka-output |\n| Configure Apache Kafka trigger for Azure Functions | https://learn.microsoft.com/en-us/azure/azure-functions/functions-bindings-kafka-trigger |\n| Expose Azure Functions as MCP tools via bindings | https://learn.microsoft.com/en-us/azure/azure-functions/functions-bindings-mcp |\n| Implement MCP resource triggers in Azure Functions | https://learn.microsoft.com/en-us/azure/azure-functions/functions-bindings-mcp-resource-trigger |\n| Configure MCP tool trigger endpoints in Azure Functions | https://learn.microsoft.com/en-us/azure/azure-functions/functions-bindings-mcp-tool-trigger |\n| Use Azure Mobile Apps bindings in Azure Functions 1.x | https://learn.microsoft.com/en-us/azure/azure-functions/functions-bindings-mobile-apps |\n| Send push notifications with Notification Hubs output binding | https://learn.microsoft.com/en-us/azure/azure-functions/functions-bindings-notification-hubs |\n| Configure Azure OpenAI extension for Azure Functions | https://learn.microsoft.com/en-us/azure/azure-functions/functions-bindings-openai |\n| Use Azure OpenAI assistant trigger in Azure Functions | https://learn.microsoft.com/en-us/azure/azure-functions/functions-bindings-openai-assistant-trigger |\n| Use Azure OpenAI assistant create output binding in Functions | https://learn.microsoft.com/en-us/azure/azure-functions/functions-bindings-openai-assistantcreate-output |\n| Use Azure OpenAI assistant post input binding in Functions | https://learn.microsoft.com/en-us/azure/azure-functions/functions-bindings-openai-assistantpost-input |\n| Use Azure OpenAI assistant query input binding in Functions | https://learn.microsoft.com/en-us/azure/azure-functions/functions-bindings-openai-assistantquery-input |\n| Use Azure OpenAI embeddings input binding in Functions | https://learn.microsoft.com/en-us/azure/azure-functions/functions-bindings-openai-embeddings-input |\n| Use Azure OpenAI embeddings store output binding in Functions | https://learn.microsoft.com/en-us/azure/azure-functions/functions-bindings-openai-embeddingsstore-output |\n| Use Azure OpenAI semantic search input binding in Functions | https://learn.microsoft.com/en-us/azure/azure-functions/functions-bindings-openai-semanticsearch-input |\n| Use Azure OpenAI text completion input binding in Functions | https://learn.microsoft.com/en-us/azure/azure-functions/functions-bindings-openai-textcompletion-input |\n| Integrate Azure Functions with RabbitMQ bindings | https://learn.microsoft.com/en-us/azure/azure-functions/functions-bindings-rabbitmq |\n| Send messages with RabbitMQ output binding in Functions | https://learn.microsoft.com/en-us/azure/azure-functions/functions-bindings-rabbitmq-output |\n| Configure RabbitMQ trigger for Azure Functions | https://learn.microsoft.com/en-us/azure/azure-functions/functions-bindings-rabbitmq-trigger |\n| Use Azure Functions SendGrid output binding | https://learn.microsoft.com/en-us/azure/azure-functions/functions-bindings-sendgrid |\n| Configure Azure Service Bus bindings for Functions | https://learn.microsoft.com/en-us/azure/azure-functions/functions-bindings-service-bus |\n| Configure Azure Service Bus trigger for Functions | https://learn.microsoft.com/en-us/azure/azure-functions/functions-bindings-service-bus-trigger |\n| Configure Azure Functions SignalR Service bindings | https://learn.microsoft.com/en-us/azure/azure-functions/functions-bindings-signalr-service |\n| Use SignalR input binding to issue access tokens | https://learn.microsoft.com/en-us/azure/azure-functions/functions-bindings-signalr-service-input |\n| Send messages with SignalR output binding in Functions | https://learn.microsoft.com/en-us/azure/azure-functions/functions-bindings-signalr-service-output |\n| Handle SignalR Service messages with Functions trigger | https://learn.microsoft.com/en-us/azure/azure-functions/functions-bindings-signalr-service-trigger |\n| Integrate Azure Functions with Blob storage triggers | https://learn.microsoft.com/en-us/azure/azure-functions/functions-bindings-storage-blob |\n| Use Blob storage input binding in Azure Functions | https://learn.microsoft.com/en-us/azure/azure-functions/functions-bindings-storage-blob-input |\n| Use Azure Blob storage output binding in Functions | https://learn.microsoft.com/en-us/azure/azure-functions/functions-bindings-storage-blob-output |\n| Configure Azure Blob storage trigger for Functions | https://learn.microsoft.com/en-us/azure/azure-functions/functions-bindings-storage-blob-trigger |\n| Integrate Azure Functions with Queue storage bindings | https://learn.microsoft.com/en-us/azure/azure-functions/functions-bindings-storage-queue |\n| Create messages with Queue storage output binding in Functions | https://learn.microsoft.com/en-us/azure/azure-functions/functions-bindings-storage-queue-output |\n| Configure Azure Queue storage trigger for Functions | https://learn.microsoft.com/en-us/azure/azure-functions/functions-bindings-storage-queue-trigger |\n| Use Azure Tables bindings with Azure Functions | https://learn.microsoft.com/en-us/azure/azure-functions/functions-bindings-storage-table |\n| Configure Azure Tables input binding for Functions | https://learn.microsoft.com/en-us/azure/azure-functions/functions-bindings-storage-table-input |\n| Write entities with Azure Tables output binding | https://learn.microsoft.com/en-us/azure/azure-functions/functions-bindings-storage-table-output |\n| Send SMS with Azure Functions Twilio binding | https://learn.microsoft.com/en-us/azure/azure-functions/functions-bindings-twilio |\n| Use Azure Web PubSub bindings in Azure Functions | https://learn.microsoft.com/en-us/azure/azure-functions/functions-bindings-web-pubsub |\n| Use Web PubSub input bindings in Azure Functions | https://learn.microsoft.com/en-us/azure/azure-functions/functions-bindings-web-pubsub-input |\n| Send messages with Web PubSub output binding | https://learn.microsoft.com/en-us/azure/azure-functions/functions-bindings-web-pubsub-output |\n| Handle Azure Web PubSub triggers in Functions | https://learn.microsoft.com/en-us/azure/azure-functions/functions-bindings-web-pubsub-trigger |\n| Connect PowerShell Azure Functions to on-premises via Hybrid Connections | https://learn.microsoft.com/en-us/azure/azure-functions/functions-hybrid-powershell |\n| Integrate Azure Functions with Azure Cosmos DB for unstructured data | https://learn.microsoft.com/en-us/azure/azure-functions/functions-integrate-store-unstructured-data-cosmosdb |\n| Connect MCP servers on Azure Functions to Foundry Agent Service | https://learn.microsoft.com/en-us/azure/azure-functions/functions-mcp-foundry-tools |\n| Expose Azure Functions as APIs via API Management | https://learn.microsoft.com/en-us/azure/azure-functions/functions-openapi-definition |\n| Develop and configure Python Azure Functions | https://learn.microsoft.com/en-us/azure/azure-functions/functions-reference-python |\n| Integrate Azure Functions with Logic Apps and AI | https://learn.microsoft.com/en-us/azure/azure-functions/functions-twitter-email |\n| Register Azure Functions–hosted MCP servers in Azure API Center | https://learn.microsoft.com/en-us/azure/azure-functions/register-mcp-server-api-center |\n| Add Logic Apps preactions to Start/Stop VMs v2 schedules | https://learn.microsoft.com/en-us/azure/azure-functions/start-stop-v2/actions |\n\n### Deployment\n| Topic | URL |\n|-------|-----|\n| Provision Azure Functions hosting resources with PowerShell | https://learn.microsoft.com/en-us/azure/azure-functions/create-resources-azure-powershell |\n| Use zip push deployment for Azure Functions apps | https://learn.microsoft.com/en-us/azure/azure-functions/deployment-zip-push |\n| Configure zero-downtime site updates in Flex Consumption | https://learn.microsoft.com/en-us/azure/azure-functions/flex-consumption-site-updates |\n| Configure continuous deployment for Azure Functions | https://learn.microsoft.com/en-us/azure/azure-functions/functions-continuous-deployment |\n| Provision Azure Functions resources using Bicep | https://learn.microsoft.com/en-us/azure/azure-functions/functions-create-first-function-bicep |\n| Deploy Azure Functions with ARM templates | https://learn.microsoft.com/en-us/azure/azure-functions/functions-create-first-function-resource-manager |\n| Provision Azure Functions Flex plan using Terraform | https://learn.microsoft.com/en-us/azure/azure-functions/functions-create-first-function-terraform |\n| Create an Azure Functions app in the portal with correct hosting plan | https://learn.microsoft.com/en-us/azure/azure-functions/functions-create-function-app-portal |\n| Deploy containerized Azure Functions on Linux in Azure | https://learn.microsoft.com/en-us/azure/azure-functions/functions-deploy-container |\n| Deploy containerized Azure Functions to Container Apps | https://learn.microsoft.com/en-us/azure/azure-functions/functions-deploy-container-apps |\n| Use deployment slots with Azure Functions apps | https://learn.microsoft.com/en-us/azure/azure-functions/functions-deployment-slots |\n| Select deployment technologies for Azure Functions apps | https://learn.microsoft.com/en-us/azure/azure-functions/functions-deployment-technologies |\n| Develop and publish C# Azure Functions with Visual Studio | https://learn.microsoft.com/en-us/azure/azure-functions/functions-develop-vs |\n| Develop and deploy Azure Functions using Visual Studio Code | https://learn.microsoft.com/en-us/azure/azure-functions/functions-develop-vs-code |\n| Set up Azure Pipelines CI/CD for Azure Functions | https://learn.microsoft.com/en-us/azure/azure-functions/functions-how-to-azure-devops |\n| Run Azure Functions in custom Linux containers on Container Apps | https://learn.microsoft.com/en-us/azure/azure-functions/functions-how-to-custom-container |\n| Configure GitHub Actions CI/CD for Azure Functions | https://learn.microsoft.com/en-us/azure/azure-functions/functions-how-to-github-actions |\n| Deploy Azure Functions with Bicep or ARM templates | https://learn.microsoft.com/en-us/azure/azure-functions/functions-infrastructure-as-code |\n| Host Azure Functions on Kubernetes with KEDA | https://learn.microsoft.com/en-us/azure/azure-functions/functions-kubernetes-keda |\n| Configure zone-redundant Azure Functions apps | https://learn.microsoft.com/en-us/azure/azure-functions/functions-zone-redundancy |\n| Migrate Azure Cosmos DB Functions extension from v3 to v4 | https://learn.microsoft.com/en-us/azure/azure-functions/migrate-cosmos-db-version-3-version-4 |\n| Migrate Azure Functions from Consumption to Flex plan | https://learn.microsoft.com/en-us/azure/azure-functions/migration/migrate-plan-consumption-to-flex |\n| Build and deploy Python Azure Functions using supported methods | https://learn.microsoft.com/en-us/azure/azure-functions/python-build-options |\n| Run Azure Functions directly from package files | https://learn.microsoft.com/en-us/azure/azure-functions/run-functions-from-deployment-package |\n| Host self‑contained MCP servers on Azure Functions | https://learn.microsoft.com/en-us/azure/azure-functions/self-hosted-mcp-servers |\n| Deploy Start/Stop VMs v2 to your Azure subscription | https://learn.microsoft.com/en-us/azure/azure-functions/start-stop-v2/deploy |\n| Remove the Start/Stop VMs v2 solution from Azure | https://learn.microsoft.com/en-us/azure/azure-functions/start-stop-v2/remove |","tags":["azure","functions","agent","skills","microsoftdocs","agent-skills","agentic-skills","agentskill","ai-agents","ai-coding","azure-functions","azure-kubernetes-service"],"capabilities":["skill","source-microsoftdocs","skill-azure-functions","topic-agent","topic-agent-skills","topic-agentic-skills","topic-agentskill","topic-ai-agents","topic-ai-coding","topic-azure","topic-azure-functions","topic-azure-kubernetes-service","topic-azure-openai","topic-azure-sql-database","topic-azure-storage"],"categories":["Agent-Skills"],"synonyms":[],"warnings":[],"endpointUrl":"https://skills.sh/MicrosoftDocs/Agent-Skills/azure-functions","protocol":"skill","transport":"skills-sh","auth":{"type":"none","details":{"cli":"npx skills add MicrosoftDocs/Agent-Skills","source_repo":"https://github.com/MicrosoftDocs/Agent-Skills","install_from":"skills.sh"}},"qualityScore":"0.700","qualityRationale":"deterministic score 0.70 from registry signals: · indexed on github topic:agent-skills · 549 github stars · SKILL.md body (38,603 chars)","verified":false,"liveness":"unknown","lastLivenessCheck":null,"agentReviews":{"count":0,"score_avg":null,"cost_usd_avg":null,"success_rate":null,"latency_p50_ms":null,"narrative_summary":null,"summary_updated_at":null},"enrichmentModel":"deterministic:skill-github:v1","enrichmentVersion":1,"enrichedAt":"2026-05-18T18:53:53.802Z","embedding":null,"createdAt":"2026-04-18T21:59:08.356Z","updatedAt":"2026-05-18T18:53:53.802Z","lastSeenAt":"2026-05-18T18:53:53.802Z","tsv":"'/en-us/azure/azure-functions/add-bindings-existing-function':1250 '/en-us/azure/azure-functions/concept-file-access-options':828 '/en-us/azure/azure-functions/configure-encrypt-at-rest-using-cmk':1108 '/en-us/azure/azure-functions/configure-monitoring':1260 '/en-us/azure/azure-functions/configure-networking-how-to':1118 '/en-us/azure/azure-functions/consumption-plan':839 '/en-us/azure/azure-functions/container-concepts':1028 '/en-us/azure/azure-functions/create-resources-azure-powershell':2706 '/en-us/azure/azure-functions/dedicated-plan':849 '/en-us/azure/azure-functions/deployment-zip-push':2717 '/en-us/azure/azure-functions/develop-python-worker-extensions':1593 '/en-us/azure/azure-functions/disable-function':1271 '/en-us/azure/azure-functions/dotnet-aspire-integration':1603 '/en-us/azure/azure-functions/dotnet-isolated-in-process-differences':862 '/en-us/azure/azure-functions/errors-diagnostics/diagnostic-events/azfd0001':472 '/en-us/azure/azure-functions/errors-diagnostics/diagnostic-events/azfd0002':480 '/en-us/azure/azure-functions/errors-diagnostics/diagnostic-events/azfd0003':488 '/en-us/azure/azure-functions/errors-diagnostics/diagnostic-events/azfd0004':498 '/en-us/azure/azure-functions/errors-diagnostics/diagnostic-events/azfd0005':508 '/en-us/azure/azure-functions/errors-diagnostics/diagnostic-events/azfd0006':517 '/en-us/azure/azure-functions/errors-diagnostics/diagnostic-events/azfd0007':526 '/en-us/azure/azure-functions/errors-diagnostics/diagnostic-events/azfd0008':537 '/en-us/azure/azure-functions/errors-diagnostics/diagnostic-events/azfd0009':546 '/en-us/azure/azure-functions/errors-diagnostics/diagnostic-events/azfd0010':555 '/en-us/azure/azure-functions/errors-diagnostics/diagnostic-events/azfd0011':564 '/en-us/azure/azure-functions/errors-diagnostics/diagnostic-events/azfd0012':1129 '/en-us/azure/azure-functions/errors-diagnostics/diagnostic-events/azfd0013':575 '/en-us/azure/azure-functions/errors-diagnostics/diagnostic-events/azfd0015':586 '/en-us/azure/azure-functions/errors-diagnostics/net-worker-rules/azfw0001':596 '/en-us/azure/azure-functions/errors-diagnostics/sdk-rules/azf0001':664 '/en-us/azure/azure-functions/errors-diagnostics/sdk-rules/azf0002':673 '/en-us/azure/azure-functions/event-driven-scaling':1054 '/en-us/azure/azure-functions/event-grid-how-tos':1615 '/en-us/azure/azure-functions/extension-bundles':1283 '/en-us/azure/azure-functions/flex-consumption-how-to':1294 '/en-us/azure/azure-functions/flex-consumption-plan':1063 '/en-us/azure/azure-functions/flex-consumption-site-updates':2729 '/en-us/azure/azure-functions/function-keys-how-to':1141 '/en-us/azure/azure-functions/functions-add-openai-text-completion':1625 '/en-us/azure/azure-functions/functions-add-output-binding-azure-sql-vs-code':1638 '/en-us/azure/azure-functions/functions-add-output-binding-cosmos-db-vs-code':1651 '/en-us/azure/azure-functions/functions-add-output-binding-storage-queue-cli':1664 '/en-us/azure/azure-functions/functions-add-output-binding-storage-queue-vs':1676 '/en-us/azure/azure-functions/functions-add-output-binding-storage-queue-vs-code':1687 '/en-us/azure/azure-functions/functions-app-settings':1305 '/en-us/azure/azure-functions/functions-best-practices':684 '/en-us/azure/azure-functions/functions-bindings-azure-data-explorer':1698 '/en-us/azure/azure-functions/functions-bindings-azure-data-explorer-input':1710 '/en-us/azure/azure-functions/functions-bindings-azure-data-explorer-output':1722 '/en-us/azure/azure-functions/functions-bindings-azure-mysql':1734 '/en-us/azure/azure-functions/functions-bindings-azure-mysql-input':1746 '/en-us/azure/azure-functions/functions-bindings-azure-mysql-output':1758 '/en-us/azure/azure-functions/functions-bindings-azure-mysql-trigger':1770 '/en-us/azure/azure-functions/functions-bindings-azure-sql':1780 '/en-us/azure/azure-functions/functions-bindings-azure-sql-input':1791 '/en-us/azure/azure-functions/functions-bindings-azure-sql-output':1802 '/en-us/azure/azure-functions/functions-bindings-azure-sql-trigger':1315 '/en-us/azure/azure-functions/functions-bindings-cache':1813 '/en-us/azure/azure-functions/functions-bindings-cache-input':1825 '/en-us/azure/azure-functions/functions-bindings-cache-output':1837 '/en-us/azure/azure-functions/functions-bindings-cache-trigger-redislist':1846 '/en-us/azure/azure-functions/functions-bindings-cache-trigger-redispubsub':1855 '/en-us/azure/azure-functions/functions-bindings-cache-trigger-redisstream':1864 '/en-us/azure/azure-functions/functions-bindings-cosmosdb':1877 '/en-us/azure/azure-functions/functions-bindings-cosmosdb-v2':1889 '/en-us/azure/azure-functions/functions-bindings-cosmosdb-v2-input':1901 '/en-us/azure/azure-functions/functions-bindings-cosmosdb-v2-output':1326 '/en-us/azure/azure-functions/functions-bindings-cosmosdb-v2-trigger':1337 '/en-us/azure/azure-functions/functions-bindings-dapr':1911 '/en-us/azure/azure-functions/functions-bindings-dapr-input-secret':1923 '/en-us/azure/azure-functions/functions-bindings-dapr-input-state':1934 '/en-us/azure/azure-functions/functions-bindings-dapr-output':1946 '/en-us/azure/azure-functions/functions-bindings-dapr-output-invoke':1957 '/en-us/azure/azure-functions/functions-bindings-dapr-output-publish':1967 '/en-us/azure/azure-functions/functions-bindings-dapr-output-state':1979 '/en-us/azure/azure-functions/functions-bindings-dapr-trigger':1990 '/en-us/azure/azure-functions/functions-bindings-dapr-trigger-svc-invoke':2001 '/en-us/azure/azure-functions/functions-bindings-dapr-trigger-topic':2011 '/en-us/azure/azure-functions/functions-bindings-documentdb':2021 '/en-us/azure/azure-functions/functions-bindings-documentdb-input':2032 '/en-us/azure/azure-functions/functions-bindings-documentdb-output':2043 '/en-us/azure/azure-functions/functions-bindings-documentdb-trigger':2053 '/en-us/azure/azure-functions/functions-bindings-error-pages':607,695 '/en-us/azure/azure-functions/functions-bindings-event-grid':2065 '/en-us/azure/azure-functions/functions-bindings-event-grid-output':2077 '/en-us/azure/azure-functions/functions-bindings-event-grid-trigger':2088 '/en-us/azure/azure-functions/functions-bindings-event-hubs':2098 '/en-us/azure/azure-functions/functions-bindings-event-hubs-output':1348 '/en-us/azure/azure-functions/functions-bindings-event-hubs-trigger':1359 '/en-us/azure/azure-functions/functions-bindings-event-iot':2108 '/en-us/azure/azure-functions/functions-bindings-event-iot-trigger':2119 '/en-us/azure/azure-functions/functions-bindings-expressions-patterns':1369 '/en-us/azure/azure-functions/functions-bindings-http-webhook':2130 '/en-us/azure/azure-functions/functions-bindings-http-webhook-output':2141 '/en-us/azure/azure-functions/functions-bindings-http-webhook-trigger':2151 '/en-us/azure/azure-functions/functions-bindings-kafka':2161 '/en-us/azure/azure-functions/functions-bindings-kafka-output':2172 '/en-us/azure/azure-functions/functions-bindings-kafka-trigger':2182 '/en-us/azure/azure-functions/functions-bindings-mcp':2193 '/en-us/azure/azure-functions/functions-bindings-mcp-resource-trigger':2203 '/en-us/azure/azure-functions/functions-bindings-mcp-tool-trigger':2214 '/en-us/azure/azure-functions/functions-bindings-mobile-apps':2227 '/en-us/azure/azure-functions/functions-bindings-notification-hubs':2238 '/en-us/azure/azure-functions/functions-bindings-openai':2248 '/en-us/azure/azure-functions/functions-bindings-openai-assistant-trigger':2259 '/en-us/azure/azure-functions/functions-bindings-openai-assistantcreate-output':2271 '/en-us/azure/azure-functions/functions-bindings-openai-assistantpost-input':2283 '/en-us/azure/azure-functions/functions-bindings-openai-assistantquery-input':2295 '/en-us/azure/azure-functions/functions-bindings-openai-embeddings-input':2306 '/en-us/azure/azure-functions/functions-bindings-openai-embeddingsstore-output':2318 '/en-us/azure/azure-functions/functions-bindings-openai-semanticsearch-input':2330 '/en-us/azure/azure-functions/functions-bindings-openai-textcompletion-input':2342 '/en-us/azure/azure-functions/functions-bindings-rabbitmq':2351 '/en-us/azure/azure-functions/functions-bindings-rabbitmq-output':2362 '/en-us/azure/azure-functions/functions-bindings-rabbitmq-trigger':2371 '/en-us/azure/azure-functions/functions-bindings-register':1379 '/en-us/azure/azure-functions/functions-bindings-sendgrid':2380 '/en-us/azure/azure-functions/functions-bindings-service-bus':2390 '/en-us/azure/azure-functions/functions-bindings-service-bus-output':1390 '/en-us/azure/azure-functions/functions-bindings-service-bus-trigger':2400 '/en-us/azure/azure-functions/functions-bindings-signalr-service':2409 '/en-us/azure/azure-functions/functions-bindings-signalr-service-input':2420 '/en-us/azure/azure-functions/functions-bindings-signalr-service-output':2431 '/en-us/azure/azure-functions/functions-bindings-signalr-service-trigger':2441 '/en-us/azure/azure-functions/functions-bindings-storage-blob':2451 '/en-us/azure/azure-functions/functions-bindings-storage-blob-input':2462 '/en-us/azure/azure-functions/functions-bindings-storage-blob-output':2473 '/en-us/azure/azure-functions/functions-bindings-storage-blob-trigger':2483 '/en-us/azure/azure-functions/functions-bindings-storage-queue':2493 '/en-us/azure/azure-functions/functions-bindings-storage-queue-output':2505 '/en-us/azure/azure-functions/functions-bindings-storage-queue-trigger':2515 '/en-us/azure/azure-functions/functions-bindings-storage-table':2525 '/en-us/azure/azure-functions/functions-bindings-storage-table-input':2535 '/en-us/azure/azure-functions/functions-bindings-storage-table-output':2545 '/en-us/azure/azure-functions/functions-bindings-timer':1399 '/en-us/azure/azure-functions/functions-bindings-twilio':2555 '/en-us/azure/azure-functions/functions-bindings-warmup':1408 '/en-us/azure/azure-functions/functions-bindings-web-pubsub':2566 '/en-us/azure/azure-functions/functions-bindings-web-pubsub-input':2577 '/en-us/azure/azure-functions/functions-bindings-web-pubsub-output':2587 '/en-us/azure/azure-functions/functions-bindings-web-pubsub-trigger':2597 '/en-us/azure/azure-functions/functions-compare-logic-apps-ms-flow-webjobs':875 '/en-us/azure/azure-functions/functions-concurrency':1072 '/en-us/azure/azure-functions/functions-consumption-costs':886 '/en-us/azure/azure-functions/functions-container-apps-hosting':1038 '/en-us/azure/azure-functions/functions-continuous-deployment':2738 '/en-us/azure/azure-functions/functions-core-tools-reference':1418 '/en-us/azure/azure-functions/functions-create-first-function-bicep':2747 '/en-us/azure/azure-functions/functions-create-first-function-resource-manager':2756 '/en-us/azure/azure-functions/functions-create-first-function-terraform':2766 '/en-us/azure/azure-functions/functions-create-function-app-portal':2781 '/en-us/azure/azure-functions/functions-create-private-site-access':1152 '/en-us/azure/azure-functions/functions-create-vnet':1162 '/en-us/azure/azure-functions/functions-custom-handlers':1429 '/en-us/azure/azure-functions/functions-deploy-container':2792 '/en-us/azure/azure-functions/functions-deploy-container-apps':2802 '/en-us/azure/azure-functions/functions-deployment-slots':2812 '/en-us/azure/azure-functions/functions-deployment-technologies':2822 '/en-us/azure/azure-functions/functions-develop-local':1441 '/en-us/azure/azure-functions/functions-develop-vs':2834 '/en-us/azure/azure-functions/functions-develop-vs-code':2846 '/en-us/azure/azure-functions/functions-dotnet-class-library':1454 '/en-us/azure/azure-functions/functions-dotnet-dependency-injection':705 '/en-us/azure/azure-functions/functions-host-json':1464 '/en-us/azure/azure-functions/functions-host-json-v1':1474 '/en-us/azure/azure-functions/functions-how-to-azure-devops':2857 '/en-us/azure/azure-functions/functions-how-to-custom-container':2870 '/en-us/azure/azure-functions/functions-how-to-github-actions':2880 '/en-us/azure/azure-functions/functions-how-to-use-azure-function-app-settings':1484 '/en-us/azure/azure-functions/functions-how-to-use-nat-gateway':1495 '/en-us/azure/azure-functions/functions-hybrid-powershell':2611 '/en-us/azure/azure-functions/functions-idempotent':715 '/en-us/azure/azure-functions/functions-identity-access-azure-sql-with-managed-identity':1173 '/en-us/azure/azure-functions/functions-identity-based-connections-tutorial':1184 '/en-us/azure/azure-functions/functions-identity-based-connections-tutorial-2':1195 '/en-us/azure/azure-functions/functions-infrastructure-as-code':2891 '/en-us/azure/azure-functions/functions-integrate-store-unstructured-data-cosmosdb':2624 '/en-us/azure/azure-functions/functions-kubernetes-keda':2901 '/en-us/azure/azure-functions/functions-mcp-foundry-tools':2637 '/en-us/azure/azure-functions/functions-mcp-tutorial':1205 '/en-us/azure/azure-functions/functions-networking-options':1215 '/en-us/azure/azure-functions/functions-node-troubleshoot':618 '/en-us/azure/azure-functions/functions-openapi-definition':2648 '/en-us/azure/azure-functions/functions-premium-plan':895 '/en-us/azure/azure-functions/functions-recover-storage-account':629 '/en-us/azure/azure-functions/functions-reference':726 '/en-us/azure/azure-functions/functions-reference-csharp':1506 '/en-us/azure/azure-functions/functions-reference-java':739 '/en-us/azure/azure-functions/functions-reference-node':751 '/en-us/azure/azure-functions/functions-reference-powershell':761 '/en-us/azure/azure-functions/functions-reference-python':2657 '/en-us/azure/azure-functions/functions-reliable-event-processing':773 '/en-us/azure/azure-functions/functions-scale':905,915 '/en-us/azure/azure-functions/functions-target-based-scaling':1084 '/en-us/azure/azure-functions/functions-twitter-email':2668 '/en-us/azure/azure-functions/functions-versions':925 '/en-us/azure/azure-functions/functions-zone-redundancy':2911 '/en-us/azure/azure-functions/ip-addresses':1517 '/en-us/azure/azure-functions/language-support-policy':934 '/en-us/azure/azure-functions/manage-connections':783 '/en-us/azure/azure-functions/migrate-cosmos-db-version-3-version-4':2924 '/en-us/azure/azure-functions/migrate-dotnet-to-isolated-model':946 '/en-us/azure/azure-functions/migrate-service-bus-version-4-version-5':958 '/en-us/azure/azure-functions/migrate-version-1-version-4':970 '/en-us/azure/azure-functions/migrate-version-3-version-4':982 '/en-us/azure/azure-functions/migration/migrate-aws-lambda-to-azure-functions':994 '/en-us/azure/azure-functions/migration/migrate-plan-consumption-to-flex':2935 '/en-us/azure/azure-functions/migration/scenario-migrate-linux-consumption-to-flex':1004 '/en-us/azure/azure-functions/monitor-functions-opentelemetry-distributed-tracing':1527 '/en-us/azure/azure-functions/monitor-functions-reference':1537 '/en-us/azure/azure-functions/opentelemetry-howto':1547 '/en-us/azure/azure-functions/performance-reliability':792 '/en-us/azure/azure-functions/python-build-options':2947 '/en-us/azure/azure-functions/python-memory-profiler-reference':804 '/en-us/azure/azure-functions/python-scale-performance-reference':815 '/en-us/azure/azure-functions/recover-python-functions':639 '/en-us/azure/azure-functions/register-mcp-server-api-center':2681 '/en-us/azure/azure-functions/run-functions-from-deployment-package':2957 '/en-us/azure/azure-functions/security-concepts':1225 '/en-us/azure/azure-functions/self-hosted-mcp-servers':2968 '/en-us/azure/azure-functions/set-runtime-version':1556 '/en-us/azure/azure-functions/shift-expressjs':1014 '/en-us/azure/azure-functions/start-stop-v2/actions':2693 '/en-us/azure/azure-functions/start-stop-v2/deploy':2979 '/en-us/azure/azure-functions/start-stop-v2/manage':1567 '/en-us/azure/azure-functions/start-stop-v2/remove':2990 '/en-us/azure/azure-functions/start-stop-v2/troubleshoot':650 '/en-us/azure/azure-functions/storage-considerations':1235 '/en-us/azure/azure-functions/supported-languages':1095 '/en-us/azure/azure-functions/update-language-versions':1578 '/microsoftdocs/mcp/blob/main/readme.md)':162 '1':1873,2223 '3':133 'accept':201 'access':167,373,377,824,1133,1145,1149,1167,1211,1912,2416 'account':1112 'across':720 'action':453,2873 'add':1239,1665,2682 'agent':82,126,185,199,2633 'ai':2665 'ai/openai':427 'apach':2156,2174 'api':297,1007,2148,2642,2644,2677 'app':321,361,380,391,868,962,974,1035,1220,1280,1291,1298,1477,1575,2218,2663,2684,2714,2771,2799,2809,2819,2867,2908 'appli':674,716 'applic':1102,1252,1600,1949 'architectur':16,51,298,327,1015 'archiv':530 'archive-ti':529 'arm':2752,2887 'aspir':1599 'assist':2252,2263,2275,2287 'async':656 'attribut':591 'autom':872 'avail':152 'avoid':655 'aw':293,986 'azf0001':661 'azf0002':670 'azfd/azfw':221 'azfd0001':466 'azfd0002':474 'azfd0003':482 'azfd0004':490 'azfd0005':500 'azfd0006':510 'azfd0007':519 'azfd0008':528 'azfd0009':539 'azfd0010':548 'azfd0011':557 'azfd0012':1120 'azfd0013':566 'azfd0015':577 'azfw0001':588 'azur':2,7,34,43,249,313,319,389,446,454,491,603,610,620,635,646,659,675,691,701,708,721,731,742,754,779,785,800,811,821,833,843,857,865,879,888,897,907,919,927,936,948,960,972,990,1009,1021,1030,1033,1050,1056,1068,1079,1091,1100,1114,1136,1143,1154,1164,1180,1201,1207,1217,1227,1246,1256,1265,1273,1296,1307,1311,1317,1328,1339,1350,1361,1373,1381,1392,1401,1410,1420,1433,1450,1459,1469,1480,1489,1497,1513,1523,1530,1542,1550,1573,1589,1595,1611,1617,1620,1627,1632,1645,1666,1689,1694,1700,1706,1712,1718,1724,1730,1736,1748,1760,1772,1776,1782,1787,1793,1798,1804,1807,1815,1827,1842,1851,1860,1866,1871,1879,1884,1891,1897,1903,1919,1930,1942,1951,1963,1975,1986,1997,2007,2013,2017,2023,2028,2034,2039,2045,2049,2055,2079,2084,2090,2100,2110,2115,2126,2135,2146,2153,2178,2184,2199,2210,2216,2221,2240,2244,2250,2255,2261,2273,2285,2297,2308,2320,2332,2344,2367,2373,2382,2392,2402,2443,2458,2464,2475,2485,2507,2517,2521,2527,2539,2549,2557,2562,2573,2589,2600,2613,2616,2629,2639,2653,2659,2670,2676,2698,2712,2734,2740,2749,2758,2769,2784,2789,2795,2807,2817,2827,2838,2849,2853,2859,2876,2882,2893,2906,2913,2926,2940,2949,2964,2975,2987 'azure-funct':1 'azurewebjobsstorag':468,476 'backup':523 'base':326,349,730,1076,1177 'behavior':344,1066,1405 'best':12,47,238,267,651,680 'bicep':2744,2885 'bicep/arm/terraform':458 'bind':392,590,736,746,758,1192,1243,1321,1332,1343,1354,1363,1375,1385,1609,1630,1643,1670,1681,1692,1704,1716,1728,1741,1753,1765,1774,1785,1796,1820,1832,1840,1849,1858,1869,1882,1895,1908,1917,1928,1939,1954,1973,1983,2015,2026,2037,2060,2072,2095,2105,2124,2138,2158,2167,2190,2219,2235,2266,2278,2290,2301,2313,2325,2337,2348,2357,2377,2385,2406,2413,2426,2456,2468,2490,2500,2519,2530,2542,2552,2560,2571,2584 'blob':532,2446,2453,2465,2476 'build':30,2936 'bundl':1276 'bus':951,1383,2384,2394 'c':404,1447,1501,2826 'cach':1808,1816,1828 'capabl':74,892 'categori':85,93,109,205,207 'center':2678 'choos':276,820,840,863,906,916 'ci/cd':451,2851,2874 'class':1448 'cli':1661 'code':24,59,223,407,679,1580,1635,1648,1684,2843 'collis':495 'combin':64 'command':1414 'common':631 'compar':280,850,878 'complet':1622,2335 'concurr':345,1065 'config':226 'configur':22,57,384,388,600,688,1064,1174,1206,1226,1236,1251,1272,1295,1306,1316,1327,1338,1349,1372,1380,1391,1400,1419,1430,1455,1465,1475,1485,1518,1538,1604,1677,1699,1711,1735,1747,1781,1814,1826,1890,1980,2002,2022,2033,2044,2078,2109,2142,2173,2204,2239,2363,2381,2391,2401,2474,2506,2526,2651,2718,2730,2871,2902 'connect':775,1178,1652,2598,2608,2625 'consumpt':341,552,835,881,997,1001,1059,1288,2726,2929 'consumption/flex/kubernetes':450 'contain':308,320,325,456,1025,1034,2798,2864,2866,2960 'container':2783,2794 'container-bas':324 'content':69,171 'continu':2731 'control':378,1212 'core':717,1412,1437 'correct':2776 'cosmos':1318,1329,1640,1867,1880,1892,2617,2914 'cost':281,883 'cover':45 'creat':1284,1584,2264,2494,2767 'cron':580 'csx':1503 'custom':1422,2131,2862 'dapr':428,1906,1915,1925,1938,1948,1959,1969,1981,1992,2003 'data':424,1533,1690,1701,1713,1936,2621 'databas':1725,1737,1749,1761 'db':1319,1330,1641,1868,1881,1893,2618,2915 'decis':14,49,269,816 'dedic':845 'depend':697 'deploy':27,62,439,443,612,2694,2710,2732,2748,2782,2793,2804,2814,2837,2881,2938,2969 'descript':209 'design':17,52,255,299,311,677,706,1016 'detail':333 'develop':9,718,727,740,752,1442,1496,2649,2823,2835 'di':259 'diagnos':214,640 'diagnost':485 'direct':2951 'disabl':1261 'distribut':1520 'doc':177 'document':72,170 'documentdb':2014,2024,2035,2046 'downtim':2721 'driven':1046 'du':33 'duplic':711 'durabl':217,252,309 'e.g':97,113 'effici':777 'embed':2299,2310 'enabl':1263 'encrypt':362,1099,1231 'endpoint':375,1011,1138,1159,2208 'entiti':2537 'environ':1301 'error':222,230,257,598,626,686 'estim':876 'evalu':887 'event':712,764,767,1045,1340,1351,1605,2056,2067,2069,2080,2093 'event-driven':1044 'except':503 'exist':1245 'expert':4,40 'expir':511 'explor':1691,1702,1714 'export':1540 'expos':2183,2638 'express':296,1364 'express.js':1006 'extens':952,1275,1376,1587,1907,2242,2917 'extern':421,501 'fallback':189 'featur':383,1222 'fetch':73,169,178,191,484 'file':103,111,118,123,823,2954 'fix':216,473,499,527,547,565,587,619,642 'flex':340,1000,1058,1287,2725,2760,2931 'foundri':2632 'function':3,8,32,35,44,237,250,253,277,305,310,317,335,360,390,419,447,492,505,559,568,593,604,611,621,636,647,660,669,676,692,702,709,722,732,743,755,770,780,786,801,812,822,834,844,858,866,880,889,898,908,920,928,937,949,961,973,991,998,1010,1022,1031,1051,1057,1069,1080,1092,1101,1115,1137,1144,1155,1165,1181,1189,1202,1208,1218,1228,1247,1257,1266,1274,1290,1297,1312,1323,1334,1345,1356,1362,1374,1387,1393,1402,1411,1421,1434,1451,1460,1470,1476,1481,1490,1498,1514,1524,1531,1543,1551,1574,1590,1596,1612,1618,1633,1646,1656,1695,1707,1719,1731,1743,1755,1767,1777,1788,1799,1805,1822,1834,1843,1852,1861,1872,1885,1898,1904,1920,1931,1943,1952,1964,1976,1987,1998,2008,2018,2029,2040,2050,2062,2074,2085,2091,2101,2116,2127,2136,2147,2154,2169,2179,2185,2200,2211,2222,2245,2256,2268,2280,2292,2303,2315,2327,2339,2345,2359,2368,2374,2387,2397,2403,2428,2437,2444,2459,2470,2480,2486,2502,2512,2522,2532,2550,2563,2574,2594,2601,2614,2630,2640,2654,2660,2671,2699,2713,2735,2741,2750,2759,2770,2785,2796,2808,2818,2828,2839,2854,2860,2877,2883,2894,2907,2916,2927,2941,2950,2965 'function.json':757 'functions/task':218 'gateway':1487 'github':452,2872 'github.com':161 'github.com/microsoftdocs/mcp/blob/main/readme.md)':160 'grid':1606,2057,2070,2081 'guid':159 'guidanc':41,245,274,719 'handl':258,509,597,685,1119,2432,2588 'handler':1423 'harden':366 'high':1123 'host':316,336,445,493,846,899,909,1029,1060,1197,2672,2700,2777,2892,2958 'host.json':543,1456,1466 'host/app':394 'hosting/runtime':278 'how-to':414 'http':423,1654,2121,2132,2143 'http-trigger':1653 'http/connection':260 'http/event-driven':31 'httpclient':666 'hub':768,1341,1352,2094,2104,2112,2233 'hybrid':2607 'id':494 'idempot':707 'ident':371,1170,1176,1187 'identifi':1124 'identity-bas':1175 'implement':696,762,2194 'import':80,124 'in-process':851,939,1444 'inbound':1508 'includ':10,432 'index':86,206 'individu':1264 'inject':698 'input':1240,1703,1740,1784,1819,1894,1916,1927,1982,2025,2277,2289,2300,2324,2336,2412,2455,2529,2570 'insight':1253 'instal':156,158 'integr':23,58,406,1579,1594,1616,1803,1902,2089,2099,2152,2343,2442,2484,2612,2658 'invalid':475,589 'invoc':1994 'invok':1947 'iot':2103,2111 'ip':1492,1511 'isol':855,943 'issu':220,615,632,2415 'java':729 'java-bas':728 'kafka':2157,2165,2175 'keda':2898 'key':367,1134 'knowledg':5 'kubernet':2896 'l100':273 'l101':302 'l101-l106':301 'l106':303 'l107':331 'l107-l115':330 'l115':332 'l116':357 'l116-l132':356 'l120':100 'l132':358 'l133':386 'l133-l168':385 'l168':387 'l169':410 'l169-l273':409 'l273':411 'l274':441 'l274-l303':440 'l303':442 'l35':99 'l35-l120':98 'l37':212 'l37-l59':211 'l59':213 'l60':241 'l60-l78':240 'l78':242 'l79':272 'l79-l100':271 'lambda':294,987 'languag':265,433,723,929,1087,1569 'language-specif':264 'languages/versions':354 'latest':141 'learn':184,198 'learn-agent-skil':183,197 'learn.microsoft.com':471,479,487,497,507,516,525,536,545,554,563,574,585,595,606,617,628,638,649,663,672,683,694,704,714,725,738,750,760,772,782,791,803,814,827,838,848,861,874,885,894,904,914,924,933,945,957,969,981,993,1003,1013,1027,1037,1053,1062,1071,1083,1094,1107,1117,1128,1140,1151,1161,1172,1183,1194,1204,1214,1224,1234,1249,1259,1270,1282,1293,1304,1314,1325,1336,1347,1358,1368,1378,1389,1398,1407,1417,1428,1440,1453,1463,1473,1483,1494,1505,1516,1526,1536,1546,1555,1566,1577,1592,1602,1614,1624,1637,1650,1663,1675,1686,1697,1709,1721,1733,1745,1757,1769,1779,1790,1801,1812,1824,1836,1845,1854,1863,1876,1888,1900,1910,1922,1933,1945,1956,1966,1978,1989,2000,2010,2020,2031,2042,2052,2064,2076,2087,2097,2107,2118,2129,2140,2150,2160,2171,2181,2192,2202,2213,2226,2237,2247,2258,2270,2282,2294,2305,2317,2329,2341,2350,2361,2370,2379,2389,2399,2408,2419,2430,2440,2450,2461,2472,2482,2492,2504,2514,2524,2534,2544,2554,2565,2576,2586,2596,2610,2623,2636,2647,2656,2667,2680,2692,2705,2716,2728,2737,2746,2755,2765,2780,2791,2801,2811,2821,2833,2845,2856,2869,2879,2890,2900,2910,2923,2934,2946,2956,2967,2978,2989 'learn.microsoft.com/en-us/azure/azure-functions/add-bindings-existing-function':1248 'learn.microsoft.com/en-us/azure/azure-functions/concept-file-access-options':826 'learn.microsoft.com/en-us/azure/azure-functions/configure-encrypt-at-rest-using-cmk':1106 'learn.microsoft.com/en-us/azure/azure-functions/configure-monitoring':1258 'learn.microsoft.com/en-us/azure/azure-functions/configure-networking-how-to':1116 'learn.microsoft.com/en-us/azure/azure-functions/consumption-plan':837 'learn.microsoft.com/en-us/azure/azure-functions/container-concepts':1026 'learn.microsoft.com/en-us/azure/azure-functions/create-resources-azure-powershell':2704 'learn.microsoft.com/en-us/azure/azure-functions/dedicated-plan':847 'learn.microsoft.com/en-us/azure/azure-functions/deployment-zip-push':2715 'learn.microsoft.com/en-us/azure/azure-functions/develop-python-worker-extensions':1591 'learn.microsoft.com/en-us/azure/azure-functions/disable-function':1269 'learn.microsoft.com/en-us/azure/azure-functions/dotnet-aspire-integration':1601 'learn.microsoft.com/en-us/azure/azure-functions/dotnet-isolated-in-process-differences':860 'learn.microsoft.com/en-us/azure/azure-functions/errors-diagnostics/diagnostic-events/azfd0001':470 'learn.microsoft.com/en-us/azure/azure-functions/errors-diagnostics/diagnostic-events/azfd0002':478 'learn.microsoft.com/en-us/azure/azure-functions/errors-diagnostics/diagnostic-events/azfd0003':486 'learn.microsoft.com/en-us/azure/azure-functions/errors-diagnostics/diagnostic-events/azfd0004':496 'learn.microsoft.com/en-us/azure/azure-functions/errors-diagnostics/diagnostic-events/azfd0005':506 'learn.microsoft.com/en-us/azure/azure-functions/errors-diagnostics/diagnostic-events/azfd0006':515 'learn.microsoft.com/en-us/azure/azure-functions/errors-diagnostics/diagnostic-events/azfd0007':524 'learn.microsoft.com/en-us/azure/azure-functions/errors-diagnostics/diagnostic-events/azfd0008':535 'learn.microsoft.com/en-us/azure/azure-functions/errors-diagnostics/diagnostic-events/azfd0009':544 'learn.microsoft.com/en-us/azure/azure-functions/errors-diagnostics/diagnostic-events/azfd0010':553 'learn.microsoft.com/en-us/azure/azure-functions/errors-diagnostics/diagnostic-events/azfd0011':562 'learn.microsoft.com/en-us/azure/azure-functions/errors-diagnostics/diagnostic-events/azfd0012':1127 'learn.microsoft.com/en-us/azure/azure-functions/errors-diagnostics/diagnostic-events/azfd0013':573 'learn.microsoft.com/en-us/azure/azure-functions/errors-diagnostics/diagnostic-events/azfd0015':584 'learn.microsoft.com/en-us/azure/azure-functions/errors-diagnostics/net-worker-rules/azfw0001':594 'learn.microsoft.com/en-us/azure/azure-functions/errors-diagnostics/sdk-rules/azf0001':662 'learn.microsoft.com/en-us/azure/azure-functions/errors-diagnostics/sdk-rules/azf0002':671 'learn.microsoft.com/en-us/azure/azure-functions/event-driven-scaling':1052 'learn.microsoft.com/en-us/azure/azure-functions/event-grid-how-tos':1613 'learn.microsoft.com/en-us/azure/azure-functions/extension-bundles':1281 'learn.microsoft.com/en-us/azure/azure-functions/flex-consumption-how-to':1292 'learn.microsoft.com/en-us/azure/azure-functions/flex-consumption-plan':1061 'learn.microsoft.com/en-us/azure/azure-functions/flex-consumption-site-updates':2727 'learn.microsoft.com/en-us/azure/azure-functions/function-keys-how-to':1139 'learn.microsoft.com/en-us/azure/azure-functions/functions-add-openai-text-completion':1623 'learn.microsoft.com/en-us/azure/azure-functions/functions-add-output-binding-azure-sql-vs-code':1636 'learn.microsoft.com/en-us/azure/azure-functions/functions-add-output-binding-cosmos-db-vs-code':1649 'learn.microsoft.com/en-us/azure/azure-functions/functions-add-output-binding-storage-queue-cli':1662 'learn.microsoft.com/en-us/azure/azure-functions/functions-add-output-binding-storage-queue-vs':1674 'learn.microsoft.com/en-us/azure/azure-functions/functions-add-output-binding-storage-queue-vs-code':1685 'learn.microsoft.com/en-us/azure/azure-functions/functions-app-settings':1303 'learn.microsoft.com/en-us/azure/azure-functions/functions-best-practices':682 'learn.microsoft.com/en-us/azure/azure-functions/functions-bindings-azure-data-explorer':1696 'learn.microsoft.com/en-us/azure/azure-functions/functions-bindings-azure-data-explorer-input':1708 'learn.microsoft.com/en-us/azure/azure-functions/functions-bindings-azure-data-explorer-output':1720 'learn.microsoft.com/en-us/azure/azure-functions/functions-bindings-azure-mysql':1732 'learn.microsoft.com/en-us/azure/azure-functions/functions-bindings-azure-mysql-input':1744 'learn.microsoft.com/en-us/azure/azure-functions/functions-bindings-azure-mysql-output':1756 'learn.microsoft.com/en-us/azure/azure-functions/functions-bindings-azure-mysql-trigger':1768 'learn.microsoft.com/en-us/azure/azure-functions/functions-bindings-azure-sql':1778 'learn.microsoft.com/en-us/azure/azure-functions/functions-bindings-azure-sql-input':1789 'learn.microsoft.com/en-us/azure/azure-functions/functions-bindings-azure-sql-output':1800 'learn.microsoft.com/en-us/azure/azure-functions/functions-bindings-azure-sql-trigger':1313 'learn.microsoft.com/en-us/azure/azure-functions/functions-bindings-cache':1811 'learn.microsoft.com/en-us/azure/azure-functions/functions-bindings-cache-input':1823 'learn.microsoft.com/en-us/azure/azure-functions/functions-bindings-cache-output':1835 'learn.microsoft.com/en-us/azure/azure-functions/functions-bindings-cache-trigger-redislist':1844 'learn.microsoft.com/en-us/azure/azure-functions/functions-bindings-cache-trigger-redispubsub':1853 'learn.microsoft.com/en-us/azure/azure-functions/functions-bindings-cache-trigger-redisstream':1862 'learn.microsoft.com/en-us/azure/azure-functions/functions-bindings-cosmosdb':1875 'learn.microsoft.com/en-us/azure/azure-functions/functions-bindings-cosmosdb-v2':1887 'learn.microsoft.com/en-us/azure/azure-functions/functions-bindings-cosmosdb-v2-input':1899 'learn.microsoft.com/en-us/azure/azure-functions/functions-bindings-cosmosdb-v2-output':1324 'learn.microsoft.com/en-us/azure/azure-functions/functions-bindings-cosmosdb-v2-trigger':1335 'learn.microsoft.com/en-us/azure/azure-functions/functions-bindings-dapr':1909 'learn.microsoft.com/en-us/azure/azure-functions/functions-bindings-dapr-input-secret':1921 'learn.microsoft.com/en-us/azure/azure-functions/functions-bindings-dapr-input-state':1932 'learn.microsoft.com/en-us/azure/azure-functions/functions-bindings-dapr-output':1944 'learn.microsoft.com/en-us/azure/azure-functions/functions-bindings-dapr-output-invoke':1955 'learn.microsoft.com/en-us/azure/azure-functions/functions-bindings-dapr-output-publish':1965 'learn.microsoft.com/en-us/azure/azure-functions/functions-bindings-dapr-output-state':1977 'learn.microsoft.com/en-us/azure/azure-functions/functions-bindings-dapr-trigger':1988 'learn.microsoft.com/en-us/azure/azure-functions/functions-bindings-dapr-trigger-svc-invoke':1999 'learn.microsoft.com/en-us/azure/azure-functions/functions-bindings-dapr-trigger-topic':2009 'learn.microsoft.com/en-us/azure/azure-functions/functions-bindings-documentdb':2019 'learn.microsoft.com/en-us/azure/azure-functions/functions-bindings-documentdb-input':2030 'learn.microsoft.com/en-us/azure/azure-functions/functions-bindings-documentdb-output':2041 'learn.microsoft.com/en-us/azure/azure-functions/functions-bindings-documentdb-trigger':2051 'learn.microsoft.com/en-us/azure/azure-functions/functions-bindings-error-pages':605,693 'learn.microsoft.com/en-us/azure/azure-functions/functions-bindings-event-grid':2063 'learn.microsoft.com/en-us/azure/azure-functions/functions-bindings-event-grid-output':2075 'learn.microsoft.com/en-us/azure/azure-functions/functions-bindings-event-grid-trigger':2086 'learn.microsoft.com/en-us/azure/azure-functions/functions-bindings-event-hubs':2096 'learn.microsoft.com/en-us/azure/azure-functions/functions-bindings-event-hubs-output':1346 'learn.microsoft.com/en-us/azure/azure-functions/functions-bindings-event-hubs-trigger':1357 'learn.microsoft.com/en-us/azure/azure-functions/functions-bindings-event-iot':2106 'learn.microsoft.com/en-us/azure/azure-functions/functions-bindings-event-iot-trigger':2117 'learn.microsoft.com/en-us/azure/azure-functions/functions-bindings-expressions-patterns':1367 'learn.microsoft.com/en-us/azure/azure-functions/functions-bindings-http-webhook':2128 'learn.microsoft.com/en-us/azure/azure-functions/functions-bindings-http-webhook-output':2139 'learn.microsoft.com/en-us/azure/azure-functions/functions-bindings-http-webhook-trigger':2149 'learn.microsoft.com/en-us/azure/azure-functions/functions-bindings-kafka':2159 'learn.microsoft.com/en-us/azure/azure-functions/functions-bindings-kafka-output':2170 'learn.microsoft.com/en-us/azure/azure-functions/functions-bindings-kafka-trigger':2180 'learn.microsoft.com/en-us/azure/azure-functions/functions-bindings-mcp':2191 'learn.microsoft.com/en-us/azure/azure-functions/functions-bindings-mcp-resource-trigger':2201 'learn.microsoft.com/en-us/azure/azure-functions/functions-bindings-mcp-tool-trigger':2212 'learn.microsoft.com/en-us/azure/azure-functions/functions-bindings-mobile-apps':2225 'learn.microsoft.com/en-us/azure/azure-functions/functions-bindings-notification-hubs':2236 'learn.microsoft.com/en-us/azure/azure-functions/functions-bindings-openai':2246 'learn.microsoft.com/en-us/azure/azure-functions/functions-bindings-openai-assistant-trigger':2257 'learn.microsoft.com/en-us/azure/azure-functions/functions-bindings-openai-assistantcreate-output':2269 'learn.microsoft.com/en-us/azure/azure-functions/functions-bindings-openai-assistantpost-input':2281 'learn.microsoft.com/en-us/azure/azure-functions/functions-bindings-openai-assistantquery-input':2293 'learn.microsoft.com/en-us/azure/azure-functions/functions-bindings-openai-embeddings-input':2304 'learn.microsoft.com/en-us/azure/azure-functions/functions-bindings-openai-embeddingsstore-output':2316 'learn.microsoft.com/en-us/azure/azure-functions/functions-bindings-openai-semanticsearch-input':2328 'learn.microsoft.com/en-us/azure/azure-functions/functions-bindings-openai-textcompletion-input':2340 'learn.microsoft.com/en-us/azure/azure-functions/functions-bindings-rabbitmq':2349 'learn.microsoft.com/en-us/azure/azure-functions/functions-bindings-rabbitmq-output':2360 'learn.microsoft.com/en-us/azure/azure-functions/functions-bindings-rabbitmq-trigger':2369 'learn.microsoft.com/en-us/azure/azure-functions/functions-bindings-register':1377 'learn.microsoft.com/en-us/azure/azure-functions/functions-bindings-sendgrid':2378 'learn.microsoft.com/en-us/azure/azure-functions/functions-bindings-service-bus':2388 'learn.microsoft.com/en-us/azure/azure-functions/functions-bindings-service-bus-output':1388 'learn.microsoft.com/en-us/azure/azure-functions/functions-bindings-service-bus-trigger':2398 'learn.microsoft.com/en-us/azure/azure-functions/functions-bindings-signalr-service':2407 'learn.microsoft.com/en-us/azure/azure-functions/functions-bindings-signalr-service-input':2418 'learn.microsoft.com/en-us/azure/azure-functions/functions-bindings-signalr-service-output':2429 'learn.microsoft.com/en-us/azure/azure-functions/functions-bindings-signalr-service-trigger':2439 'learn.microsoft.com/en-us/azure/azure-functions/functions-bindings-storage-blob':2449 'learn.microsoft.com/en-us/azure/azure-functions/functions-bindings-storage-blob-input':2460 'learn.microsoft.com/en-us/azure/azure-functions/functions-bindings-storage-blob-output':2471 'learn.microsoft.com/en-us/azure/azure-functions/functions-bindings-storage-blob-trigger':2481 'learn.microsoft.com/en-us/azure/azure-functions/functions-bindings-storage-queue':2491 'learn.microsoft.com/en-us/azure/azure-functions/functions-bindings-storage-queue-output':2503 'learn.microsoft.com/en-us/azure/azure-functions/functions-bindings-storage-queue-trigger':2513 'learn.microsoft.com/en-us/azure/azure-functions/functions-bindings-storage-table':2523 'learn.microsoft.com/en-us/azure/azure-functions/functions-bindings-storage-table-input':2533 'learn.microsoft.com/en-us/azure/azure-functions/functions-bindings-storage-table-output':2543 'learn.microsoft.com/en-us/azure/azure-functions/functions-bindings-timer':1397 'learn.microsoft.com/en-us/azure/azure-functions/functions-bindings-twilio':2553 'learn.microsoft.com/en-us/azure/azure-functions/functions-bindings-warmup':1406 'learn.microsoft.com/en-us/azure/azure-functions/functions-bindings-web-pubsub':2564 'learn.microsoft.com/en-us/azure/azure-functions/functions-bindings-web-pubsub-input':2575 'learn.microsoft.com/en-us/azure/azure-functions/functions-bindings-web-pubsub-output':2585 'learn.microsoft.com/en-us/azure/azure-functions/functions-bindings-web-pubsub-trigger':2595 'learn.microsoft.com/en-us/azure/azure-functions/functions-compare-logic-apps-ms-flow-webjobs':873 'learn.microsoft.com/en-us/azure/azure-functions/functions-concurrency':1070 'learn.microsoft.com/en-us/azure/azure-functions/functions-consumption-costs':884 'learn.microsoft.com/en-us/azure/azure-functions/functions-container-apps-hosting':1036 'learn.microsoft.com/en-us/azure/azure-functions/functions-continuous-deployment':2736 'learn.microsoft.com/en-us/azure/azure-functions/functions-core-tools-reference':1416 'learn.microsoft.com/en-us/azure/azure-functions/functions-create-first-function-bicep':2745 'learn.microsoft.com/en-us/azure/azure-functions/functions-create-first-function-resource-manager':2754 'learn.microsoft.com/en-us/azure/azure-functions/functions-create-first-function-terraform':2764 'learn.microsoft.com/en-us/azure/azure-functions/functions-create-function-app-portal':2779 'learn.microsoft.com/en-us/azure/azure-functions/functions-create-private-site-access':1150 'learn.microsoft.com/en-us/azure/azure-functions/functions-create-vnet':1160 'learn.microsoft.com/en-us/azure/azure-functions/functions-custom-handlers':1427 'learn.microsoft.com/en-us/azure/azure-functions/functions-deploy-container':2790 'learn.microsoft.com/en-us/azure/azure-functions/functions-deploy-container-apps':2800 'learn.microsoft.com/en-us/azure/azure-functions/functions-deployment-slots':2810 'learn.microsoft.com/en-us/azure/azure-functions/functions-deployment-technologies':2820 'learn.microsoft.com/en-us/azure/azure-functions/functions-develop-local':1439 'learn.microsoft.com/en-us/azure/azure-functions/functions-develop-vs':2832 'learn.microsoft.com/en-us/azure/azure-functions/functions-develop-vs-code':2844 'learn.microsoft.com/en-us/azure/azure-functions/functions-dotnet-class-library':1452 'learn.microsoft.com/en-us/azure/azure-functions/functions-dotnet-dependency-injection':703 'learn.microsoft.com/en-us/azure/azure-functions/functions-host-json':1462 'learn.microsoft.com/en-us/azure/azure-functions/functions-host-json-v1':1472 'learn.microsoft.com/en-us/azure/azure-functions/functions-how-to-azure-devops':2855 'learn.microsoft.com/en-us/azure/azure-functions/functions-how-to-custom-container':2868 'learn.microsoft.com/en-us/azure/azure-functions/functions-how-to-github-actions':2878 'learn.microsoft.com/en-us/azure/azure-functions/functions-how-to-use-azure-function-app-settings':1482 'learn.microsoft.com/en-us/azure/azure-functions/functions-how-to-use-nat-gateway':1493 'learn.microsoft.com/en-us/azure/azure-functions/functions-hybrid-powershell':2609 'learn.microsoft.com/en-us/azure/azure-functions/functions-idempotent':713 'learn.microsoft.com/en-us/azure/azure-functions/functions-identity-access-azure-sql-with-managed-identity':1171 'learn.microsoft.com/en-us/azure/azure-functions/functions-identity-based-connections-tutorial':1182 'learn.microsoft.com/en-us/azure/azure-functions/functions-identity-based-connections-tutorial-2':1193 'learn.microsoft.com/en-us/azure/azure-functions/functions-infrastructure-as-code':2889 'learn.microsoft.com/en-us/azure/azure-functions/functions-integrate-store-unstructured-data-cosmosdb':2622 'learn.microsoft.com/en-us/azure/azure-functions/functions-kubernetes-keda':2899 'learn.microsoft.com/en-us/azure/azure-functions/functions-mcp-foundry-tools':2635 'learn.microsoft.com/en-us/azure/azure-functions/functions-mcp-tutorial':1203 'learn.microsoft.com/en-us/azure/azure-functions/functions-networking-options':1213 'learn.microsoft.com/en-us/azure/azure-functions/functions-node-troubleshoot':616 'learn.microsoft.com/en-us/azure/azure-functions/functions-openapi-definition':2646 'learn.microsoft.com/en-us/azure/azure-functions/functions-premium-plan':893 'learn.microsoft.com/en-us/azure/azure-functions/functions-recover-storage-account':627 'learn.microsoft.com/en-us/azure/azure-functions/functions-reference':724 'learn.microsoft.com/en-us/azure/azure-functions/functions-reference-csharp':1504 'learn.microsoft.com/en-us/azure/azure-functions/functions-reference-java':737 'learn.microsoft.com/en-us/azure/azure-functions/functions-reference-node':749 'learn.microsoft.com/en-us/azure/azure-functions/functions-reference-powershell':759 'learn.microsoft.com/en-us/azure/azure-functions/functions-reference-python':2655 'learn.microsoft.com/en-us/azure/azure-functions/functions-reliable-event-processing':771 'learn.microsoft.com/en-us/azure/azure-functions/functions-scale':903,913 'learn.microsoft.com/en-us/azure/azure-functions/functions-target-based-scaling':1082 'learn.microsoft.com/en-us/azure/azure-functions/functions-twitter-email':2666 'learn.microsoft.com/en-us/azure/azure-functions/functions-versions':923 'learn.microsoft.com/en-us/azure/azure-functions/functions-zone-redundancy':2909 'learn.microsoft.com/en-us/azure/azure-functions/ip-addresses':1515 'learn.microsoft.com/en-us/azure/azure-functions/language-support-policy':932 'learn.microsoft.com/en-us/azure/azure-functions/manage-connections':781 'learn.microsoft.com/en-us/azure/azure-functions/migrate-cosmos-db-version-3-version-4':2922 'learn.microsoft.com/en-us/azure/azure-functions/migrate-dotnet-to-isolated-model':944 'learn.microsoft.com/en-us/azure/azure-functions/migrate-service-bus-version-4-version-5':956 'learn.microsoft.com/en-us/azure/azure-functions/migrate-version-1-version-4':968 'learn.microsoft.com/en-us/azure/azure-functions/migrate-version-3-version-4':980 'learn.microsoft.com/en-us/azure/azure-functions/migration/migrate-aws-lambda-to-azure-functions':992 'learn.microsoft.com/en-us/azure/azure-functions/migration/migrate-plan-consumption-to-flex':2933 'learn.microsoft.com/en-us/azure/azure-functions/migration/scenario-migrate-linux-consumption-to-flex':1002 'learn.microsoft.com/en-us/azure/azure-functions/monitor-functions-opentelemetry-distributed-tracing':1525 'learn.microsoft.com/en-us/azure/azure-functions/monitor-functions-reference':1535 'learn.microsoft.com/en-us/azure/azure-functions/opentelemetry-howto':1545 'learn.microsoft.com/en-us/azure/azure-functions/performance-reliability':790 'learn.microsoft.com/en-us/azure/azure-functions/python-build-options':2945 'learn.microsoft.com/en-us/azure/azure-functions/python-memory-profiler-reference':802 'learn.microsoft.com/en-us/azure/azure-functions/python-scale-performance-reference':813 'learn.microsoft.com/en-us/azure/azure-functions/recover-python-functions':637 'learn.microsoft.com/en-us/azure/azure-functions/register-mcp-server-api-center':2679 'learn.microsoft.com/en-us/azure/azure-functions/run-functions-from-deployment-package':2955 'learn.microsoft.com/en-us/azure/azure-functions/security-concepts':1223 'learn.microsoft.com/en-us/azure/azure-functions/self-hosted-mcp-servers':2966 'learn.microsoft.com/en-us/azure/azure-functions/set-runtime-version':1554 'learn.microsoft.com/en-us/azure/azure-functions/shift-expressjs':1012 'learn.microsoft.com/en-us/azure/azure-functions/start-stop-v2/actions':2691 'learn.microsoft.com/en-us/azure/azure-functions/start-stop-v2/deploy':2977 'learn.microsoft.com/en-us/azure/azure-functions/start-stop-v2/manage':1565 'learn.microsoft.com/en-us/azure/azure-functions/start-stop-v2/remove':2988 'learn.microsoft.com/en-us/azure/azure-functions/start-stop-v2/troubleshoot':648 'learn.microsoft.com/en-us/azure/azure-functions/storage-considerations':1233 'learn.microsoft.com/en-us/azure/azure-functions/supported-languages':1093 'learn.microsoft.com/en-us/azure/azure-functions/update-language-versions':1576 'legaci':338,403,832,1443,1500 'librari':1449 'lifecycl':931 'limit':19,54,328,337,1039,1048 'line':95,107,208 'link':112,121 'linux':307,551,996,1024,2787,2863 'local':65,400,1435 'locat':89 'log':1544 'logic':867,2662,2683 'make':15,50,270,817 'manag':370,774,1130,1169,1186,1286,1507,1557,2645 'mani':521 'markdown':188,204 'mcp':147,174,429,1198,2187,2195,2205,2626,2673,2961 'memori':796 'messag':426,1961,2163,2353,2422,2435,2495,2579 'metadata.generated':128 'method':2944 'microsoft':176 'microsoftdoc':148,175 'migrat':286,460,830,935,947,959,971,984,995,2912,2925 'mismatch':567 'miss':467,558 'mobil':2217 'model':279,289,405,859 'monitor':1254,1532,1559 'monitoring/telemetry':396 'month':134 'mysql':1727,1739,1751,1763 'nat':1486 'net':700,856,1279,1598 'network':166,1209 'networking/ip':399 'node.js':232,609,741 'non':579,1122,1278 'non-cron':578 'non-high':1121 'notif':2230,2232 'old':135 'on-premis':2603 'openai':1621,2241,2251,2262,2274,2286,2298,2309,2321,2333 'opentelemetri':1519,1539 'optim':665,784,805 'option':902,912 'orchestration/entity':254 'outbound':1491,1510 'output':1242,1320,1342,1384,1629,1642,1669,1680,1715,1752,1795,1831,1940,1953,1972,2036,2071,2137,2166,2234,2265,2312,2356,2376,2425,2467,2499,2541,2583 'packag':2953 'pars':542 'pattern':18,25,53,60,243,300,408,412,748,1017,1366,1581 'payload':572 'perform':248,787 'pipelin':455,2850 'plan':283,285,290,342,449,829,836,882,891,983,1289,2761,2778,2932 'portal':2774 'post':2276 'power':871 'powershel':753,2599,2703 'practic':13,48,239,268,652,681 'preaction':2685 'prefer':172 'premis':2605 'premium':890 'privat':374,1147,1158 'problem':227 'process':765,853,941,1446 'profil':793 'provid':39 'provis':448,2697,2739,2757 'publish':1958,2825 'pubsub':2559,2569,2582,2591 'pull':139 'push':2229,2709 'python':233,634,799,810,1585,2652,2939 'queri':180,194,2288 'queue':1659,1668,1679,2488,2497,2508 'quick':67 'quick-refer':66 'quota':20,55,329,1040 'rabbitmq':2347,2355,2364 'rang':96 'read':102,117 'redi':1810,1818,1830 'redislisttrigg':1839 'redispubsubtrigg':1848 'redisstreamtrigg':1857 'reduc':795 'redund':2905 'refactor':1005 'refer':68,122,1415,1528 'regist':1370,2669 'relev':90 'reliabl':763,789 'remot':71 'remov':2980 'repositori':145,534 'requir':165 'resolv':465,489,518,538,556,576 'resourc':2196,2701,2742 'respons':2133 'rest':364,1105 'restrict':1142 'retri':601,689 'return':187,203 'review':1085 'right':918 'robust':247 'run':304,1020,1432,2858,2948 'runtim':288,397,561,570,614,622,921,964,976,1426,1552,1570 'runtime/deployment':229 'sas':512 'scalabl':323 'scale':262,343,350,808,901,911,1047,1077 'schedul':583,1396,2690 'schema':1534 'script':1502 'sdk':219 'search':2323 'secret':369,522,533,1125,1913 'section':91 'secur':21,56,355,359,382,1096,1110,1153,1163,1196,1216,1232 'security.md':114,115 'select':896,2813 'self':2959 'semant':2322 'send':1935,2066,2162,2228,2352,2421,2546,2578 'sendgrid':2375 'server':1199,2627,2674,2962 'servic':381,950,1221,1382,1993,2383,2393,2405,2434,2634 'set':351,395,469,1268,1299,1457,1467,1478,2847 'setup':438 'signalr':2404,2411,2424,2433 'site':1148,2722 'skill':36,38,79,164,186,200 'skill-azure-functions' 'slot':2805 'sms':2547 'solut':2985 'sourc':1103 'source-microsoftdocs' 'specif':266,437,1549 'specifi':106 'sql':372,1166,1308,1628,1773,1783,1794 'start/stop':236,643,1562,2687,2970,2982 'startup':502 'state':1926,1970 'storag':224,314,365,625,1111,1229,1658,1667,1678,2447,2454,2466,2477,2489,2498,2509 'storageexcept':483 'store':425,2311 'strategi':825 'string':181,195 'studio':1673,2831,2842 'subscript':2976 'suggest':136,153 'support':353,930,1086,2943 'system':422 'tabl':2518,2528,2540 'target':348,1075,1548 'target-bas':347,1074 'task':461 'technolog':2815 'templat':457,2753,2888 'terraform':2763 'text':2334 'text/markdown':202 'throughput':806 'tier':531 'timer':581,1394 'token':513,2417 'tool':149,401,436,1413,1438,2188,2206 'tool-specif':435 'topic':463,653,818,1018,1041,1097,1237,1582,1960,2004,2695 'topic-agent' 'topic-agent-skills' 'topic-agentic-skills' 'topic-agentskill' 'topic-ai-agents' 'topic-ai-coding' 'topic-azure' 'topic-azure-functions' 'topic-azure-kubernetes-service' 'topic-azure-openai' 'topic-azure-sql-database' 'topic-azure-storage' 'tos':416 'trace':1521 'trigger':393,582,734,745,1081,1190,1309,1331,1353,1395,1404,1607,1655,1764,1984,1995,2005,2047,2058,2082,2113,2122,2144,2176,2197,2207,2253,2365,2395,2438,2448,2478,2510,2592 'triggers/bindings':431 'troubleshoot':11,46,210,462,481,608,630 'twilio':2551 'tz/website_time_zone':549 'unabl':540 'understand':926,1043,1055 'unreach':624 'unstructur':2620 'updat':1568,2723 'url':464,654,819,1019,1042,1098,1238,1583,2696 'usag':261,667,776,797 'use':28,77,83,101,116,173,190,430,842,1073,1109,1132,1146,1185,1360,1409,1499,1626,1639,1688,1723,1759,1771,1792,1838,1847,1856,1865,1878,1924,1991,2012,2054,2120,2215,2249,2260,2272,2284,2296,2307,2319,2331,2372,2410,2452,2463,2516,2556,2567,2707,2743,2762,2803,2840,2942 'user':138,155 'v1':965,1471 'v2':1461,1564,2689,2972,2984 'v3':977,2919 'v4':953,967,979,1886,2921 'v5':955 'valu':477 'variabl':1302 'version':142,256,398,922,1089,1553,1571 'via':1267,1660,1937,2189,2606,2643 'visual':1672,2830,2841 'vm':235 'vms':644,1560,1563,2688,2971,2983 'vnet':1157 'vnet/network':376 'void':657 'vs':854,1634,1647,1683 'warmup':1403 'warn':514,1126 'web':2558,2568,2581,2590 'webjob':869 'webpag':192 'wire':418 'worker':560,569,1586 'workload':988 'write':1968,2536 'x':1874,2224 'zero':2720 'zero-downtim':2719 'zip':2708 'zone':2904 'zone-redund':2903","prices":[{"id":"c718f1c1-5280-42eb-ba01-2b1c1d0208e7","listingId":"d410f9e9-66fa-4f0c-a3fd-ac6b3a9a18cb","amountUsd":"0","unit":"free","nativeCurrency":null,"nativeAmount":null,"chain":null,"payTo":null,"paymentMethod":"skill-free","isPrimary":true,"details":{"org":"MicrosoftDocs","category":"Agent-Skills","install_from":"skills.sh"},"createdAt":"2026-04-18T21:59:08.356Z"}],"sources":[{"listingId":"d410f9e9-66fa-4f0c-a3fd-ac6b3a9a18cb","source":"github","sourceId":"MicrosoftDocs/Agent-Skills/azure-functions","sourceUrl":"https://github.com/MicrosoftDocs/Agent-Skills/tree/main/skills/azure-functions","isPrimary":false,"firstSeenAt":"2026-04-18T21:59:08.356Z","lastSeenAt":"2026-05-18T18:53:53.802Z"}],"details":{"listingId":"d410f9e9-66fa-4f0c-a3fd-ac6b3a9a18cb","quickStartSnippet":null,"exampleRequest":null,"exampleResponse":null,"schema":null,"openapiUrl":null,"agentsTxtUrl":null,"citations":[],"useCases":[],"bestFor":[],"notFor":[],"kindDetails":{"org":"MicrosoftDocs","slug":"azure-functions","github":{"repo":"MicrosoftDocs/Agent-Skills","stars":549,"topics":["agent","agent-skills","agentic-skills","agentskill","ai","ai-agents","ai-coding","azure","azure-functions","azure-kubernetes-service","azure-openai","azure-sql-database","azure-storage","azure-virtual-machine","claude-code","github-copilot","microsoft-learn","openai-codex","skills"],"license":"cc-by-4.0","html_url":"https://github.com/MicrosoftDocs/Agent-Skills","pushed_at":"2026-05-17T02:50:05Z","description":"Curated Agent Skills for Microsoft & Azure – giving AI coding assistants structured, real-time expertise from Microsoft Learn docs.","skill_md_sha":"d28166ecc4beeb669149a50b240cb9da12bab708","skill_md_path":"skills/azure-functions/SKILL.md","default_branch":"main","skill_tree_url":"https://github.com/MicrosoftDocs/Agent-Skills/tree/main/skills/azure-functions"},"layout":"multi","source":"github","category":"Agent-Skills","frontmatter":{"name":"azure-functions","description":"Expert knowledge for Azure Functions development including troubleshooting, best practices, decision making, architecture & design patterns, limits & quotas, security, configuration, integrations & coding patterns, and deployment. Use when building HTTP/event-driven Functions, Durable workflows, Linux/container apps, VNet-secured endpoints, or CI/CD deployments, and other Azure Functions related development tasks. Not for Azure App Service (use azure-app-service), Azure Logic Apps (use azure-logic-apps), Azure Container Apps (use azure-container-apps).","compatibility":"Requires network access. Uses mcp_microsoftdocs:microsoft_docs_fetch or fetch_webpage to retrieve documentation."},"skills_sh_url":"https://skills.sh/MicrosoftDocs/Agent-Skills/azure-functions"},"updatedAt":"2026-05-18T18:53:53.802Z"}}