Search Results for: github

Azure Functions – HTTP Trigger

Azure Functions Benjamin Perkins

The labs contained in this article show how to create, configure, code and monitor an Azure Function with an HTTP Trigger. There is a detailed document here “Azure Functions HTTP triggers and bindings” which discusses the HTTP Trigger in detail so I will not readdress that content. I have written an AzureFunctionConsumer program which I […]

Read More →

Azure Functions – Event Hub

Azure Functions Benjamin Perkins

The labs contained in this article show how to create, configure, code and monitor an Azure Function with an Event Hub. There is a detailed document here “Azure Event Hubs bindings for Azure Functions” which discusses the Event Hub trigger in detail so I will not readdress that content. There is also a helpful article […]

Read More →

Azure Functions – Azure Cosmos DB

Azure Functions Benjamin Perkins

The labs contained in this article show how to create, configure, code and monitor an Azure Function with an Azure Cosmos DB. There is a detailed document here “Azure Cosmos DB bindings for Azure Functions 2.x” which discusses the Cosmos DB trigger in detail so I will not readdress that content. I have written an […]

Read More →

Azure Functions – Blob Storage

Azure Functions Benjamin Perkins

The labs contained in this article show how to create, configure, code and monitor an Azure Function with a Blob Trigger. There is a detailed document here “Azure Blob storage bindings for Azure Functions” which discusses the Blob storage trigger in detail so I will not readdress that content. I have written an AzureFunctionConsumer program […]

Read More →

How to Backup/Restore an Azure App Service using Azure PowerShell

PowerShell Benjamin Perkins

Use these Azure PowerShell cmdlets: New-AzureRmWebAppBackup Restore-AzureRmWebAppBackup Get-AzureRmStorageAccountKey New-AzureStorageContainerSASToken Don’t forget that this is open source, so you can see what these cmdlets are doing on GitHub here. Note that creating and restoring backups are only available in STANDARD and PREMIUM mode. Check out how to do the same using BASH from the console here. […]

Read More →