├── Code files ├── Chapter01 │ ├── Recipe1 │ │ └── RegisterUser │ │ │ ├── function.json │ │ │ └── run.csx │ ├── Recipe2 │ │ └── RegisterUser │ │ │ ├── function.json │ │ │ └── run.csx │ ├── Recipe3 │ │ └── RegisterUser │ │ │ ├── function.json │ │ │ └── run.csx │ └── Recipe4 │ │ ├── CreateProfilePictures │ │ ├── function.json │ │ └── run.csx │ │ └── RegisterUser │ │ ├── function.json │ │ └── run.csx ├── Chapter02 │ ├── Recipe1 │ │ ├── CreateProfilePictures │ │ │ ├── function.json │ │ │ └── run.csx │ │ ├── CropProfilePictures │ │ │ ├── function.json │ │ │ ├── project.json │ │ │ └── run.csx │ │ ├── RegisterUser │ │ │ ├── function.json │ │ │ └── run.csx │ │ ├── SendNotifications │ │ │ ├── function.json │ │ │ └── run.csx │ │ ├── extensions.csproj │ │ └── host.json │ ├── Recipe2 │ │ ├── CreateProfilePictures │ │ │ ├── function.json │ │ │ └── run.csx │ │ ├── CropProfilePictures │ │ │ ├── function.json │ │ │ ├── project.json │ │ │ └── run.csx │ │ ├── RegisterUser │ │ │ ├── function.json │ │ │ └── run.csx │ │ ├── SendNotifications │ │ │ ├── function.json │ │ │ └── run.csx │ │ ├── extensions.csproj │ │ └── host.json │ ├── Recipe3 │ │ ├── CreateProfilePictures │ │ │ ├── function.json │ │ │ └── run.csx │ │ ├── CropProfilePictures │ │ │ ├── function.json │ │ │ ├── project.json │ │ │ └── run.csx │ │ ├── RegisterUser │ │ │ ├── function.json │ │ │ └── run.csx │ │ ├── SendNotifications │ │ │ ├── function.json │ │ │ └── run.csx │ │ ├── extensions.csproj │ │ └── host.json │ ├── Recipe4 │ │ ├── CreateProfilePictures │ │ │ ├── function.json │ │ │ └── run.csx │ │ ├── CropProfilePictures │ │ │ ├── function.json │ │ │ ├── project.json │ │ │ └── run.csx │ │ ├── RegisterUser │ │ │ ├── function.json │ │ │ └── run.csx │ │ ├── SendNotifications │ │ │ ├── function.json │ │ │ └── run.csx │ │ ├── extensions.csproj │ │ └── host.json │ └── Recipe5 │ │ ├── CreateProfilePictures │ │ ├── function.json │ │ └── run.csx │ │ ├── CropProfilePictures │ │ ├── function.json │ │ ├── project.json │ │ └── run.csx │ │ ├── RegisterUser │ │ ├── function.json │ │ └── run.csx │ │ ├── SendNotifications │ │ ├── function.json │ │ └── run.csx │ │ ├── extensions.csproj │ │ └── host.json ├── Chapter03 │ ├── Recipe1 │ │ ├── CreateProfilePictures │ │ │ ├── function.json │ │ │ └── run.csx │ │ ├── CropProfilePictures │ │ │ ├── function.json │ │ │ ├── project.json │ │ │ └── run.csx │ │ ├── LocateMaleFemaleFaces │ │ │ ├── function.json │ │ │ └── run.csx │ │ ├── RegisterUser │ │ │ ├── function.json │ │ │ └── run.csx │ │ ├── SendNotifications │ │ │ ├── function.json │ │ │ └── run.csx │ │ ├── extensions.csproj │ │ └── host.json │ ├── Recipe2 │ │ ├── CreateProfilePictures │ │ │ ├── function.json │ │ │ └── run.csx │ │ ├── CropProfilePictures │ │ │ ├── function.json │ │ │ ├── project.json │ │ │ └── run.csx │ │ ├── LocateMaleFemaleFaces │ │ │ ├── function.json │ │ │ └── run.csx │ │ ├── RegisterUser │ │ │ ├── function.json │ │ │ └── run.csx │ │ ├── SaveJSONToSqlAzureDatabase │ │ │ ├── function.json │ │ │ └── run.csx │ │ ├── SendNotifications │ │ │ ├── function.json │ │ │ └── run.csx │ │ ├── extensions.csproj │ │ └── host.json │ ├── Recipe4 │ │ ├── CreateProfilePictures │ │ │ ├── function.json │ │ │ └── run.csx │ │ ├── CropProfilePictures │ │ │ ├── function.json │ │ │ ├── project.json │ │ │ └── run.csx │ │ ├── LocateMaleFemaleFaces │ │ │ ├── function.json │ │ │ └── run.csx │ │ ├── RegisterUser │ │ │ ├── function.json │ │ │ └── run.csx │ │ ├── SaveJSONToSqlAzureDatabase │ │ │ ├── function.json │ │ │ └── run.csx │ │ ├── SendNotifications │ │ │ ├── function.json │ │ │ └── run.csx │ │ ├── ValidateTwitterFollowerCount │ │ │ ├── function.json │ │ │ └── run.csx │ │ ├── extensions.csproj │ │ └── host.json │ └── Recipe5 │ │ ├── CreateProfilePictures │ │ ├── function.json │ │ └── run.csx │ │ ├── CropProfilePictures │ │ ├── function.json │ │ ├── project.json │ │ └── run.csx │ │ ├── LocateMaleFemaleFaces │ │ ├── function.json │ │ └── run.csx │ │ ├── RegisterUser │ │ ├── function.json │ │ └── run.csx │ │ ├── SaveJSONToSqlAzureDatabase │ │ ├── function.json │ │ └── run.csx │ │ ├── SendNotifications │ │ ├── function.json │ │ └── run.csx │ │ ├── ValidateTwitterFollowerCount │ │ ├── function.json │ │ └── run.csx │ │ ├── cookbookdatacollectionTrigger │ │ ├── function.json │ │ └── run.csx │ │ ├── extensions.csproj │ │ └── host.json ├── Chapter04 │ ├── Dockerfile │ └── FunctionAppInVisualStudio.zip ├── Chapter05 │ ├── Recipe1 │ │ ├── BlobTriggerCSharpTestUsingStorageExplorer │ │ │ ├── function.json │ │ │ └── run.csx │ │ ├── QueueTriggerTestusingPortal │ │ │ ├── function.json │ │ │ └── run.csx │ │ ├── extensions.csproj │ │ └── host.json │ ├── Recipe2 │ │ ├── ProductionSlot │ │ │ ├── MyProd-HttpTrigger1 │ │ │ │ ├── function.json │ │ │ │ └── run.csx │ │ │ └── MyProd-HttpTrigger2 │ │ │ │ ├── function.json │ │ │ │ └── run.csx │ │ └── StagingSlot │ │ │ ├── MyProd-HttpTrigger1 │ │ │ ├── function.json │ │ │ └── run.csx │ │ │ └── MyProd-HttpTrigger2 │ │ │ ├── function.json │ │ │ └── run.csx │ ├── Recipe3 │ │ └── LoadTestHttpTrigger │ │ │ ├── function.json │ │ │ └── run.csx │ ├── Recipe4 │ │ ├── .vscode │ │ │ └── extensions.json │ │ ├── HttpTrigger_CoreTools.cs │ │ ├── Recipe4.csproj │ │ ├── _gitignore.txt │ │ ├── host.json │ │ └── local.settings.json │ └── Recipe6 │ │ ├── AzureFunctions.Tests │ │ ├── AzureFunctions.Tests.csproj │ │ └── ShouldExecuteAzureFunctions.cs │ │ └── FunctionAppinVisualStudio │ │ └── HTTPTriggerCSharpFromVS.cs ├── Chapter06 │ └── Recipe2 │ │ └── HttpTriggerCSharp1 │ │ ├── function.json │ │ └── run.csx ├── Chapter07 │ ├── ConveyGreeting │ │ ├── function.json │ │ └── run.csx │ ├── CreateBARCodeImagesPerCustomer │ │ ├── function.json │ │ └── run.csx │ ├── DurableFuncManager │ │ ├── function.json │ │ └── run.csx │ ├── GenerateBARCode │ │ ├── function.json │ │ └── run.csx │ ├── GetAllCustomers │ │ ├── function.json │ │ └── run.csx │ ├── HttpStart │ │ ├── function.json │ │ └── run.csx │ ├── extensions.csproj │ └── host.json ├── Chapter08 │ └── Chapter8 │ │ ├── ExcelImport │ │ ├── .vs │ │ │ ├── ExcelImport │ │ │ │ └── v15 │ │ │ │ │ ├── Server │ │ │ │ │ └── sqlite3 │ │ │ │ │ │ ├── db.lock │ │ │ │ │ │ ├── storage.ide │ │ │ │ │ │ ├── storage.ide-shm │ │ │ │ │ │ └── storage.ide-wal │ │ │ │ │ └── _suo.doc │ │ │ └── config │ │ │ │ └── applicationhost.config │ │ ├── ExcelImport.Client │ │ │ ├── ExcelImport.Client.csproj │ │ │ ├── Program.cs │ │ │ ├── appsettings.json │ │ │ ├── bin │ │ │ │ └── Debug │ │ │ │ │ └── netcoreapp2.1 │ │ │ │ │ ├── ExcelImport.Client.deps.json │ │ │ │ │ ├── ExcelImport.Client.dll │ │ │ │ │ ├── ExcelImport.Client.pdb │ │ │ │ │ ├── ExcelImport.Client.runtimeconfig.dev.json │ │ │ │ │ ├── ExcelImport.Client.runtimeconfig.json │ │ │ │ │ └── appsettings.json │ │ │ └── obj │ │ │ │ ├── Debug │ │ │ │ └── netcoreapp2.1 │ │ │ │ │ ├── ExcelImport.Client.AssemblyInfo.cs │ │ │ │ │ ├── ExcelImport.Client.AssemblyInfoInputs.cache │ │ │ │ │ ├── ExcelImport.Client.assets.cache │ │ │ │ │ ├── ExcelImport.Client.csproj.CoreCompileInputs.cache │ │ │ │ │ ├── ExcelImport.Client.csproj.FileListAbsolute.txt │ │ │ │ │ ├── ExcelImport.Client.csprojAssemblyReference.cache │ │ │ │ │ ├── ExcelImport.Client.dll │ │ │ │ │ ├── ExcelImport.Client.pdb │ │ │ │ │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs │ │ │ │ │ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs │ │ │ │ │ └── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs │ │ │ │ ├── ExcelImport.Client.csproj.nuget.cache │ │ │ │ ├── ExcelImport.Client.csproj.nuget.g.props │ │ │ │ ├── ExcelImport.Client.csproj.nuget.g.targets │ │ │ │ └── project.assets.json │ │ ├── ExcelImport.DurableFunctions │ │ │ ├── EPPLusExcelManager.cs │ │ │ ├── ExcelImport.DurableFunctions.csproj │ │ │ ├── ExcelImportBlobTrigger.cs │ │ │ ├── ExcelImport_Orchestrator.cs │ │ │ ├── StorageManager.cs │ │ │ ├── _gitignore │ │ │ ├── bin │ │ │ │ └── Debug │ │ │ │ │ └── netcoreapp2.1 │ │ │ │ │ ├── ExcelImport.DurableFunctions.deps.json │ │ │ │ │ ├── ExcelImportBlobTrigger │ │ │ │ │ └── function.json │ │ │ │ │ ├── ExcelImport_Orchestrator │ │ │ │ │ └── function.json │ │ │ │ │ ├── ExcelImport_Orchestrator_HttpStart │ │ │ │ │ └── function.json │ │ │ │ │ ├── ImportData_AT │ │ │ │ │ └── function.json │ │ │ │ │ ├── ReadExcel_AT │ │ │ │ │ └── function.json │ │ │ │ │ ├── ScaleRU_AT │ │ │ │ │ └── function.json │ │ │ │ │ ├── bin │ │ │ │ │ ├── DurableTask.AzureStorage.dll │ │ │ │ │ ├── DurableTask.Core.dll │ │ │ │ │ ├── Dynamitey.dll │ │ │ │ │ ├── EPPlus.dll │ │ │ │ │ ├── ExcelImport.DurableFunctions.dll │ │ │ │ │ ├── ExcelImport.DurableFunctions.pdb │ │ │ │ │ ├── ImpromptuInterface.dll │ │ │ │ │ ├── Microsoft.AspNetCore.Authentication.Abstractions.dll │ │ │ │ │ ├── Microsoft.AspNetCore.Authentication.Core.dll │ │ │ │ │ ├── Microsoft.AspNetCore.Authorization.Policy.dll │ │ │ │ │ ├── Microsoft.AspNetCore.Authorization.dll │ │ │ │ │ ├── Microsoft.AspNetCore.Hosting.Abstractions.dll │ │ │ │ │ ├── Microsoft.AspNetCore.Hosting.Server.Abstractions.dll │ │ │ │ │ ├── Microsoft.AspNetCore.Http.Abstractions.dll │ │ │ │ │ ├── Microsoft.AspNetCore.Http.Extensions.dll │ │ │ │ │ ├── Microsoft.AspNetCore.Http.Features.dll │ │ │ │ │ ├── Microsoft.AspNetCore.Http.dll │ │ │ │ │ ├── Microsoft.AspNetCore.JsonPatch.dll │ │ │ │ │ ├── Microsoft.AspNetCore.Mvc.Abstractions.dll │ │ │ │ │ ├── Microsoft.AspNetCore.Mvc.Core.dll │ │ │ │ │ ├── Microsoft.AspNetCore.Mvc.Formatters.Json.dll │ │ │ │ │ ├── Microsoft.AspNetCore.Mvc.WebApiCompatShim.dll │ │ │ │ │ ├── Microsoft.AspNetCore.ResponseCaching.Abstractions.dll │ │ │ │ │ ├── Microsoft.AspNetCore.Routing.Abstractions.dll │ │ │ │ │ ├── Microsoft.AspNetCore.Routing.dll │ │ │ │ │ ├── Microsoft.AspNetCore.WebUtilities.dll │ │ │ │ │ ├── Microsoft.Azure.DocumentDB.Core.dll │ │ │ │ │ ├── Microsoft.Azure.Documents.ChangeFeedProcessor.dll │ │ │ │ │ ├── Microsoft.Azure.WebJobs.Extensions.CosmosDB.dll │ │ │ │ │ ├── Microsoft.Azure.WebJobs.Extensions.DurableTask.dll │ │ │ │ │ ├── Microsoft.Azure.WebJobs.Extensions.Http.dll │ │ │ │ │ ├── Microsoft.Azure.WebJobs.Extensions.Storage.dll │ │ │ │ │ ├── Microsoft.Azure.WebJobs.Extensions.dll │ │ │ │ │ ├── Microsoft.Azure.WebJobs.Host.Storage.dll │ │ │ │ │ ├── Microsoft.Azure.WebJobs.Host.dll │ │ │ │ │ ├── Microsoft.Azure.WebJobs.dll │ │ │ │ │ ├── Microsoft.Build.Framework.dll │ │ │ │ │ ├── Microsoft.Build.Utilities.Core.dll │ │ │ │ │ ├── Microsoft.DotNet.PlatformAbstractions.dll │ │ │ │ │ ├── Microsoft.Extensions.Configuration.Abstractions.dll │ │ │ │ │ ├── Microsoft.Extensions.Configuration.Binder.dll │ │ │ │ │ ├── Microsoft.Extensions.Configuration.EnvironmentVariables.dll │ │ │ │ │ ├── Microsoft.Extensions.Configuration.FileExtensions.dll │ │ │ │ │ ├── Microsoft.Extensions.Configuration.Json.dll │ │ │ │ │ ├── Microsoft.Extensions.Configuration.dll │ │ │ │ │ ├── Microsoft.Extensions.DependencyInjection.Abstractions.dll │ │ │ │ │ ├── Microsoft.Extensions.DependencyInjection.dll │ │ │ │ │ ├── Microsoft.Extensions.DependencyModel.dll │ │ │ │ │ ├── Microsoft.Extensions.FileProviders.Abstractions.dll │ │ │ │ │ ├── Microsoft.Extensions.FileProviders.Physical.dll │ │ │ │ │ ├── Microsoft.Extensions.FileSystemGlobbing.dll │ │ │ │ │ ├── Microsoft.Extensions.Hosting.Abstractions.dll │ │ │ │ │ ├── Microsoft.Extensions.Hosting.dll │ │ │ │ │ ├── Microsoft.Extensions.Logging.Abstractions.dll │ │ │ │ │ ├── Microsoft.Extensions.Logging.Configuration.dll │ │ │ │ │ ├── Microsoft.Extensions.Logging.dll │ │ │ │ │ ├── Microsoft.Extensions.ObjectPool.dll │ │ │ │ │ ├── Microsoft.Extensions.Options.ConfigurationExtensions.dll │ │ │ │ │ ├── Microsoft.Extensions.Options.dll │ │ │ │ │ ├── Microsoft.Extensions.Primitives.dll │ │ │ │ │ ├── Microsoft.Net.Http.Headers.dll │ │ │ │ │ ├── Microsoft.Win32.SystemEvents.dll │ │ │ │ │ ├── Microsoft.WindowsAzure.Storage.dll │ │ │ │ │ ├── NCrontab.Signed.dll │ │ │ │ │ ├── Newtonsoft.Json.Bson.dll │ │ │ │ │ ├── Newtonsoft.Json.dll │ │ │ │ │ ├── System.Drawing.Common.dll │ │ │ │ │ ├── System.Net.Http.Formatting.dll │ │ │ │ │ ├── System.Runtime.CompilerServices.Unsafe.dll │ │ │ │ │ ├── System.Security.Cryptography.Pkcs.dll │ │ │ │ │ ├── System.Text.Encoding.CodePages.dll │ │ │ │ │ ├── System.Text.Encodings.Web.dll │ │ │ │ │ ├── System.Xml.XPath.XmlDocument.dll │ │ │ │ │ ├── extensions.json │ │ │ │ │ └── runtimes │ │ │ │ │ │ ├── unix │ │ │ │ │ │ └── lib │ │ │ │ │ │ │ └── netcoreapp2.0 │ │ │ │ │ │ │ └── System.Drawing.Common.dll │ │ │ │ │ │ ├── win │ │ │ │ │ │ └── lib │ │ │ │ │ │ │ ├── netcoreapp2.0 │ │ │ │ │ │ │ ├── Microsoft.Win32.SystemEvents.dll │ │ │ │ │ │ │ ├── System.Drawing.Common.dll │ │ │ │ │ │ │ └── System.Text.Encoding.CodePages.dll │ │ │ │ │ │ │ └── netstandard2.0 │ │ │ │ │ │ │ └── System.Security.Cryptography.Pkcs.dll │ │ │ │ │ │ └── win7-x64 │ │ │ │ │ │ └── native │ │ │ │ │ │ ├── DocumentDB.Spatial.Sql.dll │ │ │ │ │ │ └── Microsoft.Azure.Documents.ServiceInterop.dll │ │ │ │ │ ├── host.json │ │ │ │ │ └── local.settings.json │ │ │ ├── host.json │ │ │ ├── local.settings.json │ │ │ └── obj │ │ │ │ ├── Debug │ │ │ │ └── netcoreapp2.1 │ │ │ │ │ ├── ExcelImport.DurableFunctions.AssemblyInfo.cs │ │ │ │ │ ├── ExcelImport.DurableFunctions.AssemblyInfoInputs.cache │ │ │ │ │ ├── ExcelImport.DurableFunctions.assets.cache │ │ │ │ │ ├── ExcelImport.DurableFunctions.csproj.CopyComplete │ │ │ │ │ ├── ExcelImport.DurableFunctions.csproj.CoreCompileInputs.cache │ │ │ │ │ ├── ExcelImport.DurableFunctions.csproj.FileListAbsolute.txt │ │ │ │ │ ├── ExcelImport.DurableFunctions.csprojAssemblyReference.cache │ │ │ │ │ ├── ExcelImport.DurableFunctions.dll │ │ │ │ │ ├── ExcelImport.DurableFunctions.pdb │ │ │ │ │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs │ │ │ │ │ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs │ │ │ │ │ └── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs │ │ │ │ ├── ExcelImport.DurableFunctions.csproj.nuget.cache │ │ │ │ ├── ExcelImport.DurableFunctions.csproj.nuget.g.props │ │ │ │ ├── ExcelImport.DurableFunctions.csproj.nuget.g.targets │ │ │ │ └── project.assets.json │ │ ├── ExcelImport.sln │ │ ├── _gitattributes │ │ └── _gitignore │ │ └── WebApplication1 │ │ ├── .vs │ │ ├── WebApplication1 │ │ │ └── v15 │ │ │ │ ├── Server │ │ │ │ └── sqlite3 │ │ │ │ │ ├── db.lock │ │ │ │ │ ├── storage.ide │ │ │ │ │ ├── storage.ide-shm │ │ │ │ │ └── storage.ide-wal │ │ │ │ └── _suo.doc │ │ └── config │ │ │ └── applicationhost.config │ │ ├── ARM │ │ ├── ARM.deployproj │ │ ├── Deploy-AzureResourceGroup.ps1 │ │ ├── Deployment.targets.xml │ │ ├── README.md │ │ ├── azuredeploy.json │ │ ├── azuredeploy.parameters.json │ │ ├── bin │ │ │ └── Debug │ │ │ │ └── staging │ │ │ │ └── ARM │ │ │ │ ├── Deploy-AzureResourceGroup.ps1 │ │ │ │ ├── README.md │ │ │ │ ├── azuredeploy.json │ │ │ │ └── azuredeploy.parameters.json │ │ └── obj │ │ │ └── Debug │ │ │ └── ARM.deployproj.FileListAbsolute.txt │ │ ├── ConsoleApp1 │ │ ├── ConsoleApp1.csproj │ │ ├── Program.cs │ │ ├── bin │ │ │ └── Debug │ │ │ │ └── netcoreapp2.1 │ │ │ │ ├── ConsoleApp1.deps.json │ │ │ │ ├── ConsoleApp1.dll │ │ │ │ ├── ConsoleApp1.pdb │ │ │ │ ├── ConsoleApp1.runtimeconfig.dev.json │ │ │ │ └── ConsoleApp1.runtimeconfig.json │ │ └── obj │ │ │ ├── ConsoleApp1.csproj.nuget.cache │ │ │ ├── ConsoleApp1.csproj.nuget.g.props │ │ │ ├── ConsoleApp1.csproj.nuget.g.targets │ │ │ ├── Debug │ │ │ └── netcoreapp2.1 │ │ │ │ ├── ConsoleApp1.AssemblyInfo.cs │ │ │ │ ├── ConsoleApp1.AssemblyInfoInputs.cache │ │ │ │ ├── ConsoleApp1.assets.cache │ │ │ │ ├── ConsoleApp1.csproj.CoreCompileInputs.cache │ │ │ │ ├── ConsoleApp1.csproj.FileListAbsolute.txt │ │ │ │ ├── ConsoleApp1.dll │ │ │ │ ├── ConsoleApp1.pdb │ │ │ │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs │ │ │ │ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs │ │ │ │ └── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs │ │ │ └── project.assets.json │ │ ├── WebApplication1.sln │ │ └── WebApplication1 │ │ ├── Pages │ │ ├── About.cshtml │ │ ├── About.cshtml.cs │ │ ├── Contact.cshtml │ │ ├── Contact.cshtml.cs │ │ ├── Error.cshtml │ │ ├── Error.cshtml.cs │ │ ├── Index.cshtml │ │ ├── Index.cshtml.cs │ │ ├── Privacy.cshtml │ │ ├── Privacy.cshtml.cs │ │ ├── Shared │ │ │ ├── _CookieConsentPartial.cshtml │ │ │ ├── _Layout.cshtml │ │ │ └── _ValidationScriptsPartial.cshtml │ │ ├── _ViewImports.cshtml │ │ └── _ViewStart.cshtml │ │ ├── Program.cs │ │ ├── Properties │ │ ├── PublishProfiles │ │ │ ├── axawebapp - FTP.pubxml │ │ │ ├── axawebapp - FTP.pubxml.user │ │ │ ├── axawebapp - Web Deploy.pubxml │ │ │ └── axawebapp - Web Deploy.pubxml.user │ │ └── launchSettings.json │ │ ├── Startup.cs │ │ ├── WebApplication1.csproj │ │ ├── WebApplication1.csproj.user │ │ ├── appsettings.Development.json │ │ ├── appsettings.json │ │ ├── bin │ │ ├── Debug │ │ │ └── netcoreapp2.1 │ │ │ │ ├── WebApplication1.Views.dll │ │ │ │ ├── WebApplication1.Views.pdb │ │ │ │ ├── WebApplication1.deps.json │ │ │ │ ├── WebApplication1.dll │ │ │ │ ├── WebApplication1.pdb │ │ │ │ ├── WebApplication1.runtimeconfig.dev.json │ │ │ │ └── WebApplication1.runtimeconfig.json │ │ └── Release │ │ │ └── netcoreapp2.1 │ │ │ ├── WebApplication1.Views.dll │ │ │ ├── WebApplication1.Views.pdb │ │ │ ├── WebApplication1.deps.json │ │ │ ├── WebApplication1.dll │ │ │ ├── WebApplication1.pdb │ │ │ ├── WebApplication1.runtimeconfig.dev.json │ │ │ └── WebApplication1.runtimeconfig.json │ │ ├── index.html │ │ ├── obj │ │ ├── Debug │ │ │ └── netcoreapp2.1 │ │ │ │ ├── Razor │ │ │ │ └── Pages │ │ │ │ │ ├── About.g.cshtml.cs │ │ │ │ │ ├── Contact.g.cshtml.cs │ │ │ │ │ ├── Error.g.cshtml.cs │ │ │ │ │ ├── Index.g.cshtml.cs │ │ │ │ │ ├── Privacy.g.cshtml.cs │ │ │ │ │ ├── Shared │ │ │ │ │ ├── _CookieConsentPartial.g.cshtml.cs │ │ │ │ │ ├── _Layout.g.cshtml.cs │ │ │ │ │ └── _ValidationScriptsPartial.g.cshtml.cs │ │ │ │ │ ├── _ViewImports.g.cshtml.cs │ │ │ │ │ └── _ViewStart.g.cshtml.cs │ │ │ │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs │ │ │ │ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs │ │ │ │ ├── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs │ │ │ │ ├── WebApplication1.AssemblyInfo.cs │ │ │ │ ├── WebApplication1.AssemblyInfoInputs.cache │ │ │ │ ├── WebApplication1.RazorAssemblyInfo.cache │ │ │ │ ├── WebApplication1.RazorAssemblyInfo.cs │ │ │ │ ├── WebApplication1.RazorCoreGenerate.cache │ │ │ │ ├── WebApplication1.RazorTargetAssemblyInfo.cache │ │ │ │ ├── WebApplication1.RazorTargetAssemblyInfo.cs │ │ │ │ ├── WebApplication1.TagHelpers.input.cache │ │ │ │ ├── WebApplication1.TagHelpers.output.cache │ │ │ │ ├── WebApplication1.Views.dll │ │ │ │ ├── WebApplication1.Views.pdb │ │ │ │ ├── WebApplication1.assets.cache │ │ │ │ ├── WebApplication1.csproj.CopyComplete │ │ │ │ ├── WebApplication1.csproj.CoreCompileInputs.cache │ │ │ │ ├── WebApplication1.csproj.FileListAbsolute.txt │ │ │ │ ├── WebApplication1.csprojAssemblyReference.cache │ │ │ │ ├── WebApplication1.dll │ │ │ │ └── WebApplication1.pdb │ │ ├── Release │ │ │ └── netcoreapp2.1 │ │ │ │ ├── PubTmp │ │ │ │ └── Out │ │ │ │ │ ├── WebApplication1.Views.dll │ │ │ │ │ ├── WebApplication1.Views.pdb │ │ │ │ │ ├── WebApplication1.deps.json │ │ │ │ │ ├── WebApplication1.dll │ │ │ │ │ ├── WebApplication1.pdb │ │ │ │ │ ├── WebApplication1.runtimeconfig.json │ │ │ │ │ ├── appsettings.Development.json │ │ │ │ │ ├── appsettings.json │ │ │ │ │ ├── web.config │ │ │ │ │ └── wwwroot │ │ │ │ │ ├── css │ │ │ │ │ ├── site.css │ │ │ │ │ └── site.min.css │ │ │ │ │ ├── favicon.ico │ │ │ │ │ ├── images │ │ │ │ │ ├── banner1.svg │ │ │ │ │ ├── banner2.svg │ │ │ │ │ └── banner3.svg │ │ │ │ │ ├── js │ │ │ │ │ ├── site.js │ │ │ │ │ └── site.min.js │ │ │ │ │ └── lib │ │ │ │ │ ├── bootstrap │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── _bower.json │ │ │ │ │ └── dist │ │ │ │ │ │ ├── css │ │ │ │ │ │ ├── bootstrap-theme.css │ │ │ │ │ │ ├── bootstrap-theme.css.map │ │ │ │ │ │ ├── bootstrap-theme.min.css │ │ │ │ │ │ ├── bootstrap-theme.min.css.map │ │ │ │ │ │ ├── bootstrap.css │ │ │ │ │ │ ├── bootstrap.css.map │ │ │ │ │ │ ├── bootstrap.min.css │ │ │ │ │ │ └── bootstrap.min.css.map │ │ │ │ │ │ ├── fonts │ │ │ │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ │ │ │ ├── glyphicons-halflings-regular.woff │ │ │ │ │ │ └── glyphicons-halflings-regular.woff2 │ │ │ │ │ │ └── js │ │ │ │ │ │ ├── bootstrap.js │ │ │ │ │ │ ├── bootstrap.min.js │ │ │ │ │ │ └── npm.js │ │ │ │ │ ├── jquery-validation-unobtrusive │ │ │ │ │ ├── LICENSE.txt │ │ │ │ │ ├── _bower.json │ │ │ │ │ ├── jquery.validate.unobtrusive.js │ │ │ │ │ └── jquery.validate.unobtrusive.min.js │ │ │ │ │ ├── jquery-validation │ │ │ │ │ ├── LICENSE.md │ │ │ │ │ ├── _bower.json │ │ │ │ │ └── dist │ │ │ │ │ │ ├── additional-methods.js │ │ │ │ │ │ ├── additional-methods.min.js │ │ │ │ │ │ ├── jquery.validate.js │ │ │ │ │ │ └── jquery.validate.min.js │ │ │ │ │ └── jquery │ │ │ │ │ ├── LICENSE.txt │ │ │ │ │ ├── _bower.json │ │ │ │ │ └── dist │ │ │ │ │ ├── jquery.js │ │ │ │ │ ├── jquery.min.js │ │ │ │ │ └── jquery.min.map │ │ │ │ ├── Razor │ │ │ │ └── Pages │ │ │ │ │ ├── About.g.cshtml.cs │ │ │ │ │ ├── Contact.g.cshtml.cs │ │ │ │ │ ├── Error.g.cshtml.cs │ │ │ │ │ ├── Index.g.cshtml.cs │ │ │ │ │ ├── Privacy.g.cshtml.cs │ │ │ │ │ ├── Shared │ │ │ │ │ ├── _CookieConsentPartial.g.cshtml.cs │ │ │ │ │ ├── _Layout.g.cshtml.cs │ │ │ │ │ └── _ValidationScriptsPartial.g.cshtml.cs │ │ │ │ │ ├── _ViewImports.g.cshtml.cs │ │ │ │ │ └── _ViewStart.g.cshtml.cs │ │ │ │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs │ │ │ │ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs │ │ │ │ ├── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs │ │ │ │ ├── WebApplication1.AssemblyInfo.cs │ │ │ │ ├── WebApplication1.AssemblyInfoInputs.cache │ │ │ │ ├── WebApplication1.RazorAssemblyInfo.cache │ │ │ │ ├── WebApplication1.RazorAssemblyInfo.cs │ │ │ │ ├── WebApplication1.RazorCoreGenerate.cache │ │ │ │ ├── WebApplication1.RazorTargetAssemblyInfo.cache │ │ │ │ ├── WebApplication1.RazorTargetAssemblyInfo.cs │ │ │ │ ├── WebApplication1.TagHelpers.input.cache │ │ │ │ ├── WebApplication1.TagHelpers.output.cache │ │ │ │ ├── WebApplication1.Views.dll │ │ │ │ ├── WebApplication1.Views.pdb │ │ │ │ ├── WebApplication1.assets.cache │ │ │ │ ├── WebApplication1.csproj.CopyComplete │ │ │ │ ├── WebApplication1.csproj.CoreCompileInputs.cache │ │ │ │ ├── WebApplication1.csproj.FileListAbsolute.txt │ │ │ │ ├── WebApplication1.dll │ │ │ │ └── WebApplication1.pdb │ │ ├── WebApplication1.csproj.nuget.cache │ │ ├── WebApplication1.csproj.nuget.g.props │ │ ├── WebApplication1.csproj.nuget.g.targets │ │ └── project.assets.json │ │ └── wwwroot │ │ ├── css │ │ ├── site.css │ │ └── site.min.css │ │ ├── favicon.ico │ │ ├── images │ │ ├── banner1.svg │ │ ├── banner2.svg │ │ └── banner3.svg │ │ ├── js │ │ ├── site.js │ │ └── site.min.js │ │ └── lib │ │ ├── bootstrap │ │ ├── LICENSE │ │ ├── _bower.json │ │ └── dist │ │ │ ├── css │ │ │ ├── bootstrap-theme.css │ │ │ ├── bootstrap-theme.css.map │ │ │ ├── bootstrap-theme.min.css │ │ │ ├── bootstrap-theme.min.css.map │ │ │ ├── bootstrap.css │ │ │ ├── bootstrap.css.map │ │ │ ├── bootstrap.min.css │ │ │ └── bootstrap.min.css.map │ │ │ ├── fonts │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ ├── glyphicons-halflings-regular.woff │ │ │ └── glyphicons-halflings-regular.woff2 │ │ │ └── js │ │ │ ├── bootstrap.js │ │ │ ├── bootstrap.min.js │ │ │ └── npm.js │ │ ├── jquery-validation-unobtrusive │ │ ├── LICENSE.txt │ │ ├── _bower.json │ │ ├── jquery.validate.unobtrusive.js │ │ └── jquery.validate.unobtrusive.min.js │ │ ├── jquery-validation │ │ ├── LICENSE.md │ │ ├── _bower.json │ │ └── dist │ │ │ ├── additional-methods.js │ │ │ ├── additional-methods.min.js │ │ │ ├── jquery.validate.js │ │ │ └── jquery.validate.min.js │ │ └── jquery │ │ ├── LICENSE.txt │ │ ├── _bower.json │ │ └── dist │ │ ├── jquery.js │ │ ├── jquery.min.js │ │ └── jquery.min.map ├── Chapter09 │ ├── Recipe1 │ │ ├── BulkDeviceRegistrations │ │ │ ├── function.json │ │ │ └── run.csx │ │ ├── extensions.csproj │ │ └── host.json │ ├── Recipe2 │ │ ├── ProcessData │ │ │ ├── function.json │ │ │ └── run.csx │ │ ├── extensions.csproj │ │ ├── host.json │ │ └── myqueuemessages │ │ │ ├── .vs │ │ │ └── myqueuemessages │ │ │ │ ├── DesignTimeBuild │ │ │ │ └── _dtbcache │ │ │ │ └── v15 │ │ │ │ ├── Server │ │ │ │ └── sqlite3 │ │ │ │ │ ├── storage.ide │ │ │ │ │ ├── storage.ide-shm │ │ │ │ │ └── storage.ide-wal │ │ │ │ └── _suo.doc │ │ │ ├── myqueuemessages.sln │ │ │ └── myqueuemessages │ │ │ ├── App.config │ │ │ ├── Program.cs │ │ │ ├── Properties │ │ │ ├── Resources.Designer.cs │ │ │ └── Resources.resx │ │ │ ├── myqueuemessages.csproj │ │ │ └── obj │ │ │ ├── Debug │ │ │ └── netcoreapp2.1 │ │ │ │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs │ │ │ │ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs │ │ │ │ ├── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs │ │ │ │ ├── myqueuemessages.AssemblyInfo.cs │ │ │ │ ├── myqueuemessages.AssemblyInfoInputs.cache │ │ │ │ ├── myqueuemessages.Properties.Resources.resources │ │ │ │ ├── myqueuemessages.assets.cache │ │ │ │ ├── myqueuemessages.csproj.CoreCompileInputs.cache │ │ │ │ ├── myqueuemessages.csproj.FileListAbsolute.txt │ │ │ │ ├── myqueuemessages.csproj.GenerateResource.cache │ │ │ │ ├── myqueuemessages.csprojAssemblyReference.cache │ │ │ │ ├── myqueuemessages.dll │ │ │ │ └── myqueuemessages.pdb │ │ │ ├── myqueuemessages.csproj.nuget.cache │ │ │ ├── myqueuemessages.csproj.nuget.g.props │ │ │ ├── myqueuemessages.csproj.nuget.g.targets │ │ │ └── project.assets.json │ └── Recipe3 │ │ ├── EventHubApp │ │ ├── EventHubApp.sln │ │ └── EventHubApp │ │ │ ├── App.config │ │ │ ├── EventHubApp.csproj │ │ │ ├── EventHubHelper.cs │ │ │ └── Program.cs │ │ ├── capturemessage │ │ ├── function.json │ │ └── run.csx │ │ ├── extensions.csproj │ │ └── host.json └── Chapter10 │ └── Recipe9 │ └── AzureFunctionsWithMSI │ ├── .vs │ ├── AzureFunctionsWithMSI │ │ ├── DesignTimeBuild │ │ │ └── _dtbcache │ │ └── v15 │ │ │ ├── Server │ │ │ └── sqlite3 │ │ │ │ ├── db.lock │ │ │ │ ├── storage.ide │ │ │ │ ├── storage.ide-shm │ │ │ │ └── storage.ide-wal │ │ │ └── _suo.doc │ └── config │ │ └── applicationhost.config │ ├── AzureFunctionsWithMSI.sln │ └── AzureFunctionsWithMSI │ ├── AzureFunctionsWithMSI.csproj │ ├── AzureFunctionsWithMSI.csproj.user │ ├── HttpTriggerWithMSI.cs │ ├── Properties │ └── PublishProfiles │ │ ├── AzureFunctionsWithMSI - Zip Deploy.pubxml │ │ └── AzureFunctionsWithMSI - Zip Deploy.pubxml.user │ ├── _gitignore │ ├── bin │ └── Debug │ │ └── net461 │ │ ├── Function1 │ │ └── function.json │ │ ├── host.json │ │ └── local.settings.json │ ├── host.json │ ├── local.settings.json │ └── obj │ ├── AzureFunctionsWithMSI.csproj.nuget.cache │ ├── AzureFunctionsWithMSI.csproj.nuget.g.props │ ├── AzureFunctionsWithMSI.csproj.nuget.g.targets │ └── project.assets.json ├── Code in Java ├── Chapter01 │ ├── README.md │ ├── Recipe1 │ │ ├── extensions.csproj │ │ ├── host.json │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ └── java │ │ │ └── com │ │ │ └── packtpub │ │ │ ├── Employee.java │ │ │ └── RegisterUser.java │ ├── Recipe2 │ │ ├── extensions.csproj │ │ ├── host.json │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ └── java │ │ │ └── com │ │ │ └── packtpub │ │ │ ├── Employee.java │ │ │ └── RegisterUser.java │ ├── Recipe3 │ │ ├── extensions.csproj │ │ ├── host.json │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ └── java │ │ │ └── com │ │ │ └── packtpub │ │ │ ├── Employee.java │ │ │ └── RegisterUser.java │ └── Recipe4 │ │ ├── extensions.csproj │ │ ├── host.json │ │ ├── pom.xml │ │ └── src │ │ └── main │ │ └── java │ │ └── com │ │ └── packtpub │ │ ├── CreateProfilePictures.java │ │ ├── Employee.java │ │ └── RegisterUser.java ├── Chapter02 │ ├── Recipe1 │ │ ├── extensions.csproj │ │ ├── host.json │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ └── java │ │ │ └── com │ │ │ └── packtpub │ │ │ ├── CreateProfilePictures.java │ │ │ ├── Employee.java │ │ │ ├── RegisterUser.java │ │ │ └── SendNotification.java │ ├── Recipe2 │ │ ├── extensions.csproj │ │ ├── host.json │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ └── java │ │ │ └── com │ │ │ └── packtpub │ │ │ ├── CreateProfilePictures.java │ │ │ ├── Employee.java │ │ │ ├── RegisterUser.java │ │ │ └── SendNotification.java │ ├── Recipe3 │ │ ├── extensions.csproj │ │ ├── host.json │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ └── java │ │ │ └── com │ │ │ └── packtpub │ │ │ ├── CreateProfilePictures.java │ │ │ ├── Employee.java │ │ │ ├── RegisterUser.java │ │ │ └── SendNotification.java │ ├── Recipe4 │ │ ├── extensions.csproj │ │ ├── host.json │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ └── java │ │ │ └── com │ │ │ └── packtpub │ │ │ ├── CreateProfilePictures.java │ │ │ ├── Employee.java │ │ │ ├── RegisterUser.java │ │ │ └── SendNotification.java │ └── Recipe5 │ │ ├── extensions.csproj │ │ ├── host.json │ │ ├── pom.xml │ │ └── src │ │ └── main │ │ └── java │ │ └── com │ │ └── packtpub │ │ ├── CreateProfilePictures.java │ │ ├── Employee.java │ │ ├── RegisterUser.java │ │ └── SendNotification.java ├── Chapter03 │ ├── Recipe1 │ │ ├── extensions.csproj │ │ ├── host.json │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ └── java │ │ │ └── com │ │ │ └── packtpub │ │ │ ├── CreateProfilePictures.java │ │ │ ├── Employee.java │ │ │ ├── Face.java │ │ │ ├── LocateMaleFemaleFaces.java │ │ │ ├── RegisterUser.java │ │ │ └── SendNotification.java │ ├── Recipe2 │ │ ├── extensions.csproj │ │ ├── host.json │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ └── java │ │ │ └── com │ │ │ └── packtpub │ │ │ ├── CreateProfilePictures.java │ │ │ ├── Employee.java │ │ │ ├── EmployeeInfo.java │ │ │ ├── Face.java │ │ │ ├── LocateMaleFemaleFaces.java │ │ │ ├── RegisterUser.java │ │ │ ├── SaveJSONToAzureSQLDatabase.java │ │ │ └── SendNotification.java │ ├── Recipe3 │ │ └── README.md │ ├── Recipe4 │ │ ├── extensions.csproj │ │ ├── host.json │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ └── java │ │ │ └── com │ │ │ └── packtpub │ │ │ ├── CreateProfilePictures.java │ │ │ ├── Employee.java │ │ │ ├── EmployeeInfo.java │ │ │ ├── Face.java │ │ │ ├── LocateMaleFemaleFaces.java │ │ │ ├── RegisterUser.java │ │ │ ├── SaveJSONToAzureSQLDatabase.java │ │ │ ├── SendNotification.java │ │ │ ├── TwitterMessage.java │ │ │ └── ValidateTwitterFollowerCount.java │ └── Recipe5 │ │ ├── extensions.csproj │ │ ├── host.json │ │ ├── pom.xml │ │ └── src │ │ └── main │ │ └── java │ │ └── com │ │ └── packtpub │ │ ├── CookbookDataCollection.java │ │ ├── CosmosDocument.java │ │ ├── CreateProfilePictures.java │ │ ├── Employee.java │ │ ├── EmployeeInfo.java │ │ ├── Face.java │ │ ├── LocateMaleFemaleFaces.java │ │ ├── RegisterUser.java │ │ ├── SaveJSONToAzureSQLDatabase.java │ │ ├── SendNotification.java │ │ ├── TwitterMessage.java │ │ └── ValidateTwitterFollowerCount.java ├── Chapter04 │ └── README.md ├── Chapter05 │ ├── Recipe1 │ │ └── README.md │ ├── Recipe2 │ │ └── README.md.txt │ ├── Recipe3 │ │ ├── extensions.csproj │ │ ├── host.json │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ └── java │ │ │ └── com │ │ │ └── packtpub │ │ │ ├── CookbookDataCollection.java │ │ │ ├── CosmosDocument.java │ │ │ ├── CreateProfilePictures.java │ │ │ ├── Employee.java │ │ │ ├── EmployeeInfo.java │ │ │ ├── Face.java │ │ │ ├── LoadTestHttpTrigger.java │ │ │ ├── LocateMaleFemaleFaces.java │ │ │ ├── RegisterUser.java │ │ │ ├── SaveJSONToAzureSQLDatabase.java │ │ │ ├── SendNotification.java │ │ │ ├── TwitterMessage.java │ │ │ └── ValidateTwitterFollowerCount.java │ ├── Recipe4 │ │ └── README.md │ ├── Recipe5 │ │ └── README.md │ └── Recipe6 │ │ ├── extensions.csproj │ │ ├── host.json │ │ ├── pom.xml │ │ └── src │ │ ├── main │ │ └── java │ │ │ └── com │ │ │ └── packtpub │ │ │ ├── CookbookDataCollection.java │ │ │ ├── CosmosDocument.java │ │ │ ├── CreateProfilePictures.java │ │ │ ├── Employee.java │ │ │ ├── EmployeeInfo.java │ │ │ ├── Face.java │ │ │ ├── LoadTestHttpTrigger.java │ │ │ ├── LocateMaleFemaleFaces.java │ │ │ ├── RegisterUser.java │ │ │ ├── SaveJSONToAzureSQLDatabase.java │ │ │ ├── SendNotification.java │ │ │ ├── TwitterMessage.java │ │ │ └── ValidateTwitterFollowerCount.java │ │ └── test │ │ └── java │ │ └── com │ │ └── packtpub │ │ ├── HttpResponseMessageMock.java │ │ └── LoadTestHttpTriggerTest.java ├── Chapter06 │ └── README.md ├── Chapter07 │ └── README.md ├── Chapter08 │ └── README.md ├── Chapter09 │ ├── Recipe01 │ │ ├── extensions.csproj │ │ ├── host.json │ │ ├── pom.xml │ │ └── src │ │ │ ├── main │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── packtpub │ │ │ │ ├── BulkDeviceRegistration.java │ │ │ │ ├── CookbookDataCollection.java │ │ │ │ ├── CosmosDocument.java │ │ │ │ ├── CreateProfilePictures.java │ │ │ │ ├── Device.java │ │ │ │ ├── Devices.java │ │ │ │ ├── Employee.java │ │ │ │ ├── EmployeeInfo.java │ │ │ │ ├── Face.java │ │ │ │ ├── LoadTestHttpTrigger.java │ │ │ │ ├── LocateMaleFemaleFaces.java │ │ │ │ ├── RegisterUser.java │ │ │ │ ├── SaveJSONToAzureSQLDatabase.java │ │ │ │ ├── SendNotification.java │ │ │ │ ├── TwitterMessage.java │ │ │ │ └── ValidateTwitterFollowerCount.java │ │ │ └── test │ │ │ └── java │ │ │ └── com │ │ │ └── packtpub │ │ │ ├── HttpResponseMessageMock.java │ │ │ └── LoadTestHttpTriggerTest.java │ ├── Recipe02 │ │ ├── AzureFunction │ │ │ ├── extensions.csproj │ │ │ ├── host.json │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ ├── main │ │ │ │ └── java │ │ │ │ │ └── com │ │ │ │ │ └── packtpub │ │ │ │ │ ├── BulkDeviceRegistration.java │ │ │ │ │ ├── CookbookDataCollection.java │ │ │ │ │ ├── CosmosDocument.java │ │ │ │ │ ├── CreateProfilePictures.java │ │ │ │ │ ├── Device.java │ │ │ │ │ ├── Devices.java │ │ │ │ │ ├── Employee.java │ │ │ │ │ ├── EmployeeInfo.java │ │ │ │ │ ├── Face.java │ │ │ │ │ ├── LoadTestHttpTrigger.java │ │ │ │ │ ├── LocateMaleFemaleFaces.java │ │ │ │ │ ├── ProcessData.java │ │ │ │ │ ├── RegisterUser.java │ │ │ │ │ ├── SaveJSONToAzureSQLDatabase.java │ │ │ │ │ ├── SendNotification.java │ │ │ │ │ ├── TwitterMessage.java │ │ │ │ │ └── ValidateTwitterFollowerCount.java │ │ │ │ └── test │ │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── packtpub │ │ │ │ ├── HttpResponseMessageMock.java │ │ │ │ └── LoadTestHttpTriggerTest.java │ │ └── ConsoleApp │ │ │ ├── pom.xml │ │ │ └── src │ │ │ └── main │ │ │ └── java │ │ │ └── com │ │ │ └── packtpub │ │ │ └── CreateQueueMessages.java │ ├── Recipe03 │ │ ├── AzureFunction │ │ │ ├── extensions.csproj │ │ │ ├── host.json │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ ├── main │ │ │ │ └── java │ │ │ │ │ └── com │ │ │ │ │ └── packtpub │ │ │ │ │ ├── BulkDeviceRegistration.java │ │ │ │ │ ├── CookbookDataCollection.java │ │ │ │ │ ├── CosmosDocument.java │ │ │ │ │ ├── CreateProfilePictures.java │ │ │ │ │ ├── Device.java │ │ │ │ │ ├── Devices.java │ │ │ │ │ ├── Employee.java │ │ │ │ │ ├── EmployeeInfo.java │ │ │ │ │ ├── EventHubTriggerJava.java │ │ │ │ │ ├── Face.java │ │ │ │ │ ├── LoadTestHttpTrigger.java │ │ │ │ │ ├── LocateMaleFemaleFaces.java │ │ │ │ │ ├── ProcessData.java │ │ │ │ │ ├── RegisterUser.java │ │ │ │ │ ├── SaveJSONToAzureSQLDatabase.java │ │ │ │ │ ├── SendNotification.java │ │ │ │ │ ├── TwitterMessage.java │ │ │ │ │ └── ValidateTwitterFollowerCount.java │ │ │ │ └── test │ │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── packtpub │ │ │ │ ├── HttpResponseMessageMock.java │ │ │ │ └── LoadTestHttpTriggerTest.java │ │ └── ConsoleApp │ │ │ ├── pom.xml │ │ │ └── src │ │ │ └── main │ │ │ └── java │ │ │ └── com │ │ │ └── packtpub │ │ │ ├── CreateQueueMessages.java │ │ │ └── EventHubApp.java │ ├── Recipe04 │ │ ├── extensions.csproj │ │ ├── host.json │ │ ├── pom.xml │ │ └── src │ │ │ ├── main │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── packtpub │ │ │ │ ├── BulkDeviceRegistration.java │ │ │ │ ├── CookbookDataCollection.java │ │ │ │ ├── CosmosDocument.java │ │ │ │ ├── CreateProfilePictures.java │ │ │ │ ├── Device.java │ │ │ │ ├── Devices.java │ │ │ │ ├── Employee.java │ │ │ │ ├── EmployeeInfo.java │ │ │ │ ├── EventHubTriggerJava.java │ │ │ │ ├── Face.java │ │ │ │ ├── HttpAlive.java │ │ │ │ ├── LoadTestHttpTrigger.java │ │ │ │ ├── LocateMaleFemaleFaces.java │ │ │ │ ├── ProcessData.java │ │ │ │ ├── RegisterUser.java │ │ │ │ ├── SaveJSONToAzureSQLDatabase.java │ │ │ │ ├── SendNotification.java │ │ │ │ ├── TimerTriggerJava.java │ │ │ │ ├── TwitterMessage.java │ │ │ │ └── ValidateTwitterFollowerCount.java │ │ │ └── test │ │ │ └── java │ │ │ └── com │ │ │ └── packtpub │ │ │ ├── HttpResponseMessageMock.java │ │ │ └── LoadTestHttpTriggerTest.java │ ├── Recipe05 │ │ ├── extensions.csproj │ │ ├── host.json │ │ ├── pom.xml │ │ └── src │ │ │ ├── main │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── packtpub │ │ │ │ ├── BulkDeviceRegistration.java │ │ │ │ ├── CookbookDataCollection.java │ │ │ │ ├── CosmosDocument.java │ │ │ │ ├── CreateProfilePictures.java │ │ │ │ ├── Device.java │ │ │ │ ├── Devices.java │ │ │ │ ├── Employee.java │ │ │ │ ├── EmployeeInfo.java │ │ │ │ ├── EventHubTriggerJava.java │ │ │ │ ├── Face.java │ │ │ │ ├── HttpAlive.java │ │ │ │ ├── HttpSecured.java │ │ │ │ ├── LoadTestHttpTrigger.java │ │ │ │ ├── LocateMaleFemaleFaces.java │ │ │ │ ├── ProcessData.java │ │ │ │ ├── RegisterUser.java │ │ │ │ ├── SaveJSONToAzureSQLDatabase.java │ │ │ │ ├── SendNotification.java │ │ │ │ ├── TimerTriggerJava.java │ │ │ │ ├── TwitterMessage.java │ │ │ │ └── ValidateTwitterFollowerCount.java │ │ │ └── test │ │ │ └── java │ │ │ └── com │ │ │ └── packtpub │ │ │ ├── HttpResponseMessageMock.java │ │ │ └── LoadTestHttpTriggerTest.java │ ├── Recipe06 │ │ └── README.md │ ├── Recipe07 │ │ └── README.md │ ├── Recipe08 │ │ └── README.md │ ├── Recipe09 │ │ ├── extensions.csproj │ │ ├── host.json │ │ ├── pom.xml │ │ └── src │ │ │ ├── main │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── packtpub │ │ │ │ ├── BulkDeviceRegistration.java │ │ │ │ ├── CookbookDataCollection.java │ │ │ │ ├── CosmosDocument.java │ │ │ │ ├── CreateProfilePictures.java │ │ │ │ ├── Device.java │ │ │ │ ├── Devices.java │ │ │ │ ├── Employee.java │ │ │ │ ├── EmployeeInfo.java │ │ │ │ ├── EventHubTriggerJava.java │ │ │ │ ├── Face.java │ │ │ │ ├── HttpAlive.java │ │ │ │ ├── HttpSecured.java │ │ │ │ ├── LoadTestHttpTrigger.java │ │ │ │ ├── LocateMaleFemaleFaces.java │ │ │ │ ├── ProcessData.java │ │ │ │ ├── RegisterUser.java │ │ │ │ ├── SaveJSONToAzureSQLDatabase.java │ │ │ │ ├── SendNotification.java │ │ │ │ ├── TimerTriggerJava.java │ │ │ │ ├── TwitterMessage.java │ │ │ │ └── ValidateTwitterFollowerCount.java │ │ │ └── test │ │ │ └── java │ │ │ └── com │ │ │ └── packtpub │ │ │ ├── HttpResponseMessageMock.java │ │ │ └── LoadTestHttpTriggerTest.java │ ├── Recipe10 │ │ └── README.md │ └── Recipe11 │ │ └── README.md ├── Chapter10 │ └── README.md ├── Chapter11 │ └── README.md └── README.md ├── EPUB └── Azure_Serverless_Computing_Cookbook__Second_Edition.epub ├── LICENSE ├── MOBI └── Azure_Serverless_Computing_Cookbook__Second_Edition.mobi └── README.md /Code files/Chapter01/Recipe1/RegisterUser/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code files/Chapter01/Recipe1/RegisterUser/function.json -------------------------------------------------------------------------------- /Code files/Chapter01/Recipe1/RegisterUser/run.csx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code files/Chapter01/Recipe1/RegisterUser/run.csx -------------------------------------------------------------------------------- /Code files/Chapter01/Recipe2/RegisterUser/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code files/Chapter01/Recipe2/RegisterUser/function.json -------------------------------------------------------------------------------- /Code files/Chapter01/Recipe2/RegisterUser/run.csx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code files/Chapter01/Recipe2/RegisterUser/run.csx -------------------------------------------------------------------------------- /Code files/Chapter01/Recipe3/RegisterUser/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code files/Chapter01/Recipe3/RegisterUser/function.json -------------------------------------------------------------------------------- /Code files/Chapter01/Recipe3/RegisterUser/run.csx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code files/Chapter01/Recipe3/RegisterUser/run.csx -------------------------------------------------------------------------------- /Code files/Chapter01/Recipe4/CreateProfilePictures/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code files/Chapter01/Recipe4/CreateProfilePictures/function.json -------------------------------------------------------------------------------- /Code files/Chapter01/Recipe4/CreateProfilePictures/run.csx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code files/Chapter01/Recipe4/CreateProfilePictures/run.csx -------------------------------------------------------------------------------- /Code files/Chapter01/Recipe4/RegisterUser/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code files/Chapter01/Recipe4/RegisterUser/function.json -------------------------------------------------------------------------------- /Code files/Chapter01/Recipe4/RegisterUser/run.csx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code files/Chapter01/Recipe4/RegisterUser/run.csx -------------------------------------------------------------------------------- /Code files/Chapter02/Recipe1/CreateProfilePictures/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code files/Chapter02/Recipe1/CreateProfilePictures/function.json -------------------------------------------------------------------------------- /Code files/Chapter02/Recipe1/CreateProfilePictures/run.csx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code files/Chapter02/Recipe1/CreateProfilePictures/run.csx -------------------------------------------------------------------------------- /Code files/Chapter02/Recipe1/CropProfilePictures/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code files/Chapter02/Recipe1/CropProfilePictures/function.json -------------------------------------------------------------------------------- /Code files/Chapter02/Recipe1/CropProfilePictures/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code files/Chapter02/Recipe1/CropProfilePictures/project.json -------------------------------------------------------------------------------- /Code files/Chapter02/Recipe1/CropProfilePictures/run.csx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code files/Chapter02/Recipe1/CropProfilePictures/run.csx -------------------------------------------------------------------------------- /Code files/Chapter02/Recipe1/RegisterUser/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code files/Chapter02/Recipe1/RegisterUser/function.json -------------------------------------------------------------------------------- /Code files/Chapter02/Recipe1/RegisterUser/run.csx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code files/Chapter02/Recipe1/RegisterUser/run.csx -------------------------------------------------------------------------------- /Code files/Chapter02/Recipe1/SendNotifications/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code files/Chapter02/Recipe1/SendNotifications/function.json -------------------------------------------------------------------------------- /Code files/Chapter02/Recipe1/SendNotifications/run.csx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code files/Chapter02/Recipe1/SendNotifications/run.csx -------------------------------------------------------------------------------- /Code files/Chapter02/Recipe1/extensions.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code files/Chapter02/Recipe1/extensions.csproj -------------------------------------------------------------------------------- /Code files/Chapter02/Recipe1/host.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "2.0" 3 | } -------------------------------------------------------------------------------- /Code files/Chapter02/Recipe2/CreateProfilePictures/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code files/Chapter02/Recipe2/CreateProfilePictures/function.json -------------------------------------------------------------------------------- /Code files/Chapter02/Recipe2/CreateProfilePictures/run.csx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code files/Chapter02/Recipe2/CreateProfilePictures/run.csx -------------------------------------------------------------------------------- /Code files/Chapter02/Recipe2/CropProfilePictures/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code files/Chapter02/Recipe2/CropProfilePictures/function.json -------------------------------------------------------------------------------- /Code files/Chapter02/Recipe2/CropProfilePictures/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code files/Chapter02/Recipe2/CropProfilePictures/project.json -------------------------------------------------------------------------------- /Code files/Chapter02/Recipe2/CropProfilePictures/run.csx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code files/Chapter02/Recipe2/CropProfilePictures/run.csx -------------------------------------------------------------------------------- /Code files/Chapter02/Recipe2/RegisterUser/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code files/Chapter02/Recipe2/RegisterUser/function.json -------------------------------------------------------------------------------- /Code files/Chapter02/Recipe2/RegisterUser/run.csx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code files/Chapter02/Recipe2/RegisterUser/run.csx -------------------------------------------------------------------------------- /Code files/Chapter02/Recipe2/SendNotifications/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code files/Chapter02/Recipe2/SendNotifications/function.json -------------------------------------------------------------------------------- /Code files/Chapter02/Recipe2/SendNotifications/run.csx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code files/Chapter02/Recipe2/SendNotifications/run.csx -------------------------------------------------------------------------------- /Code files/Chapter02/Recipe2/extensions.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code files/Chapter02/Recipe2/extensions.csproj -------------------------------------------------------------------------------- /Code files/Chapter02/Recipe2/host.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "2.0" 3 | } -------------------------------------------------------------------------------- /Code files/Chapter02/Recipe3/CreateProfilePictures/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code files/Chapter02/Recipe3/CreateProfilePictures/function.json -------------------------------------------------------------------------------- /Code files/Chapter02/Recipe3/CreateProfilePictures/run.csx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code files/Chapter02/Recipe3/CreateProfilePictures/run.csx -------------------------------------------------------------------------------- /Code files/Chapter02/Recipe3/CropProfilePictures/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code files/Chapter02/Recipe3/CropProfilePictures/function.json -------------------------------------------------------------------------------- /Code files/Chapter02/Recipe3/CropProfilePictures/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code files/Chapter02/Recipe3/CropProfilePictures/project.json -------------------------------------------------------------------------------- /Code files/Chapter02/Recipe3/CropProfilePictures/run.csx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code files/Chapter02/Recipe3/CropProfilePictures/run.csx -------------------------------------------------------------------------------- /Code files/Chapter02/Recipe3/RegisterUser/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code files/Chapter02/Recipe3/RegisterUser/function.json -------------------------------------------------------------------------------- /Code files/Chapter02/Recipe3/RegisterUser/run.csx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code files/Chapter02/Recipe3/RegisterUser/run.csx -------------------------------------------------------------------------------- /Code files/Chapter02/Recipe3/SendNotifications/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code files/Chapter02/Recipe3/SendNotifications/function.json -------------------------------------------------------------------------------- /Code files/Chapter02/Recipe3/SendNotifications/run.csx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code files/Chapter02/Recipe3/SendNotifications/run.csx -------------------------------------------------------------------------------- /Code files/Chapter02/Recipe3/extensions.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code files/Chapter02/Recipe3/extensions.csproj -------------------------------------------------------------------------------- /Code files/Chapter02/Recipe3/host.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "2.0" 3 | } -------------------------------------------------------------------------------- /Code files/Chapter02/Recipe4/CreateProfilePictures/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code files/Chapter02/Recipe4/CreateProfilePictures/function.json -------------------------------------------------------------------------------- /Code files/Chapter02/Recipe4/CreateProfilePictures/run.csx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code files/Chapter02/Recipe4/CreateProfilePictures/run.csx -------------------------------------------------------------------------------- /Code files/Chapter02/Recipe4/CropProfilePictures/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code files/Chapter02/Recipe4/CropProfilePictures/function.json -------------------------------------------------------------------------------- /Code files/Chapter02/Recipe4/CropProfilePictures/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code files/Chapter02/Recipe4/CropProfilePictures/project.json -------------------------------------------------------------------------------- /Code files/Chapter02/Recipe4/CropProfilePictures/run.csx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code files/Chapter02/Recipe4/CropProfilePictures/run.csx -------------------------------------------------------------------------------- /Code files/Chapter02/Recipe4/RegisterUser/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code files/Chapter02/Recipe4/RegisterUser/function.json -------------------------------------------------------------------------------- /Code files/Chapter02/Recipe4/RegisterUser/run.csx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code files/Chapter02/Recipe4/RegisterUser/run.csx -------------------------------------------------------------------------------- /Code files/Chapter02/Recipe4/SendNotifications/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code files/Chapter02/Recipe4/SendNotifications/function.json -------------------------------------------------------------------------------- /Code files/Chapter02/Recipe4/SendNotifications/run.csx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code files/Chapter02/Recipe4/SendNotifications/run.csx -------------------------------------------------------------------------------- /Code files/Chapter02/Recipe4/extensions.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code files/Chapter02/Recipe4/extensions.csproj -------------------------------------------------------------------------------- /Code files/Chapter02/Recipe4/host.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "2.0" 3 | } -------------------------------------------------------------------------------- /Code files/Chapter02/Recipe5/CreateProfilePictures/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code files/Chapter02/Recipe5/CreateProfilePictures/function.json -------------------------------------------------------------------------------- /Code files/Chapter02/Recipe5/CreateProfilePictures/run.csx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code files/Chapter02/Recipe5/CreateProfilePictures/run.csx -------------------------------------------------------------------------------- /Code files/Chapter02/Recipe5/CropProfilePictures/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code files/Chapter02/Recipe5/CropProfilePictures/function.json -------------------------------------------------------------------------------- /Code files/Chapter02/Recipe5/CropProfilePictures/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code files/Chapter02/Recipe5/CropProfilePictures/project.json -------------------------------------------------------------------------------- /Code files/Chapter02/Recipe5/CropProfilePictures/run.csx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code files/Chapter02/Recipe5/CropProfilePictures/run.csx -------------------------------------------------------------------------------- /Code files/Chapter02/Recipe5/RegisterUser/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code files/Chapter02/Recipe5/RegisterUser/function.json -------------------------------------------------------------------------------- /Code files/Chapter02/Recipe5/RegisterUser/run.csx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code files/Chapter02/Recipe5/RegisterUser/run.csx -------------------------------------------------------------------------------- /Code files/Chapter02/Recipe5/SendNotifications/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code files/Chapter02/Recipe5/SendNotifications/function.json -------------------------------------------------------------------------------- /Code files/Chapter02/Recipe5/SendNotifications/run.csx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code files/Chapter02/Recipe5/SendNotifications/run.csx -------------------------------------------------------------------------------- /Code files/Chapter02/Recipe5/extensions.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code files/Chapter02/Recipe5/extensions.csproj -------------------------------------------------------------------------------- /Code files/Chapter02/Recipe5/host.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "2.0" 3 | } -------------------------------------------------------------------------------- /Code files/Chapter03/Recipe1/CreateProfilePictures/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code files/Chapter03/Recipe1/CreateProfilePictures/function.json -------------------------------------------------------------------------------- /Code files/Chapter03/Recipe1/CreateProfilePictures/run.csx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code files/Chapter03/Recipe1/CreateProfilePictures/run.csx -------------------------------------------------------------------------------- /Code files/Chapter03/Recipe1/CropProfilePictures/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code files/Chapter03/Recipe1/CropProfilePictures/function.json -------------------------------------------------------------------------------- /Code files/Chapter03/Recipe1/CropProfilePictures/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code files/Chapter03/Recipe1/CropProfilePictures/project.json -------------------------------------------------------------------------------- /Code files/Chapter03/Recipe1/CropProfilePictures/run.csx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code files/Chapter03/Recipe1/CropProfilePictures/run.csx -------------------------------------------------------------------------------- /Code files/Chapter03/Recipe1/LocateMaleFemaleFaces/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code files/Chapter03/Recipe1/LocateMaleFemaleFaces/function.json -------------------------------------------------------------------------------- /Code files/Chapter03/Recipe1/LocateMaleFemaleFaces/run.csx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code files/Chapter03/Recipe1/LocateMaleFemaleFaces/run.csx -------------------------------------------------------------------------------- /Code files/Chapter03/Recipe1/RegisterUser/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code files/Chapter03/Recipe1/RegisterUser/function.json -------------------------------------------------------------------------------- /Code files/Chapter03/Recipe1/RegisterUser/run.csx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code files/Chapter03/Recipe1/RegisterUser/run.csx -------------------------------------------------------------------------------- /Code files/Chapter03/Recipe1/SendNotifications/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code files/Chapter03/Recipe1/SendNotifications/function.json -------------------------------------------------------------------------------- /Code files/Chapter03/Recipe1/SendNotifications/run.csx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code files/Chapter03/Recipe1/SendNotifications/run.csx -------------------------------------------------------------------------------- /Code files/Chapter03/Recipe1/extensions.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code files/Chapter03/Recipe1/extensions.csproj -------------------------------------------------------------------------------- /Code files/Chapter03/Recipe1/host.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "2.0" 3 | } -------------------------------------------------------------------------------- /Code files/Chapter03/Recipe2/CreateProfilePictures/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code files/Chapter03/Recipe2/CreateProfilePictures/function.json -------------------------------------------------------------------------------- /Code files/Chapter03/Recipe2/CreateProfilePictures/run.csx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code files/Chapter03/Recipe2/CreateProfilePictures/run.csx -------------------------------------------------------------------------------- /Code files/Chapter03/Recipe2/CropProfilePictures/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code files/Chapter03/Recipe2/CropProfilePictures/function.json -------------------------------------------------------------------------------- /Code files/Chapter03/Recipe2/CropProfilePictures/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code files/Chapter03/Recipe2/CropProfilePictures/project.json -------------------------------------------------------------------------------- /Code files/Chapter03/Recipe2/CropProfilePictures/run.csx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code files/Chapter03/Recipe2/CropProfilePictures/run.csx -------------------------------------------------------------------------------- /Code files/Chapter03/Recipe2/LocateMaleFemaleFaces/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code files/Chapter03/Recipe2/LocateMaleFemaleFaces/function.json -------------------------------------------------------------------------------- /Code files/Chapter03/Recipe2/LocateMaleFemaleFaces/run.csx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code files/Chapter03/Recipe2/LocateMaleFemaleFaces/run.csx -------------------------------------------------------------------------------- /Code files/Chapter03/Recipe2/RegisterUser/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code files/Chapter03/Recipe2/RegisterUser/function.json -------------------------------------------------------------------------------- /Code files/Chapter03/Recipe2/RegisterUser/run.csx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code files/Chapter03/Recipe2/RegisterUser/run.csx -------------------------------------------------------------------------------- /Code files/Chapter03/Recipe2/SaveJSONToSqlAzureDatabase/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code files/Chapter03/Recipe2/SaveJSONToSqlAzureDatabase/function.json -------------------------------------------------------------------------------- /Code files/Chapter03/Recipe2/SaveJSONToSqlAzureDatabase/run.csx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code files/Chapter03/Recipe2/SaveJSONToSqlAzureDatabase/run.csx -------------------------------------------------------------------------------- /Code files/Chapter03/Recipe2/SendNotifications/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code files/Chapter03/Recipe2/SendNotifications/function.json -------------------------------------------------------------------------------- /Code files/Chapter03/Recipe2/SendNotifications/run.csx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code files/Chapter03/Recipe2/SendNotifications/run.csx -------------------------------------------------------------------------------- /Code files/Chapter03/Recipe2/extensions.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code files/Chapter03/Recipe2/extensions.csproj -------------------------------------------------------------------------------- /Code files/Chapter03/Recipe2/host.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "2.0" 3 | } -------------------------------------------------------------------------------- /Code files/Chapter03/Recipe4/CreateProfilePictures/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code files/Chapter03/Recipe4/CreateProfilePictures/function.json -------------------------------------------------------------------------------- /Code files/Chapter03/Recipe4/CreateProfilePictures/run.csx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code files/Chapter03/Recipe4/CreateProfilePictures/run.csx -------------------------------------------------------------------------------- /Code files/Chapter03/Recipe4/CropProfilePictures/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code files/Chapter03/Recipe4/CropProfilePictures/function.json -------------------------------------------------------------------------------- /Code files/Chapter03/Recipe4/CropProfilePictures/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code files/Chapter03/Recipe4/CropProfilePictures/project.json -------------------------------------------------------------------------------- /Code files/Chapter03/Recipe4/CropProfilePictures/run.csx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code files/Chapter03/Recipe4/CropProfilePictures/run.csx -------------------------------------------------------------------------------- /Code files/Chapter03/Recipe4/LocateMaleFemaleFaces/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code files/Chapter03/Recipe4/LocateMaleFemaleFaces/function.json -------------------------------------------------------------------------------- /Code files/Chapter03/Recipe4/LocateMaleFemaleFaces/run.csx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code files/Chapter03/Recipe4/LocateMaleFemaleFaces/run.csx -------------------------------------------------------------------------------- /Code files/Chapter03/Recipe4/RegisterUser/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code files/Chapter03/Recipe4/RegisterUser/function.json -------------------------------------------------------------------------------- /Code files/Chapter03/Recipe4/RegisterUser/run.csx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code files/Chapter03/Recipe4/RegisterUser/run.csx -------------------------------------------------------------------------------- /Code files/Chapter03/Recipe4/SaveJSONToSqlAzureDatabase/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code files/Chapter03/Recipe4/SaveJSONToSqlAzureDatabase/function.json -------------------------------------------------------------------------------- /Code files/Chapter03/Recipe4/SaveJSONToSqlAzureDatabase/run.csx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code files/Chapter03/Recipe4/SaveJSONToSqlAzureDatabase/run.csx -------------------------------------------------------------------------------- /Code files/Chapter03/Recipe4/SendNotifications/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code files/Chapter03/Recipe4/SendNotifications/function.json -------------------------------------------------------------------------------- /Code files/Chapter03/Recipe4/SendNotifications/run.csx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code files/Chapter03/Recipe4/SendNotifications/run.csx -------------------------------------------------------------------------------- /Code files/Chapter03/Recipe4/ValidateTwitterFollowerCount/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code files/Chapter03/Recipe4/ValidateTwitterFollowerCount/function.json -------------------------------------------------------------------------------- /Code files/Chapter03/Recipe4/ValidateTwitterFollowerCount/run.csx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code files/Chapter03/Recipe4/ValidateTwitterFollowerCount/run.csx -------------------------------------------------------------------------------- /Code files/Chapter03/Recipe4/extensions.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code files/Chapter03/Recipe4/extensions.csproj -------------------------------------------------------------------------------- /Code files/Chapter03/Recipe4/host.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "2.0" 3 | } -------------------------------------------------------------------------------- /Code files/Chapter03/Recipe5/CreateProfilePictures/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code files/Chapter03/Recipe5/CreateProfilePictures/function.json -------------------------------------------------------------------------------- /Code files/Chapter03/Recipe5/CreateProfilePictures/run.csx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code files/Chapter03/Recipe5/CreateProfilePictures/run.csx -------------------------------------------------------------------------------- /Code files/Chapter03/Recipe5/CropProfilePictures/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code files/Chapter03/Recipe5/CropProfilePictures/function.json -------------------------------------------------------------------------------- /Code files/Chapter03/Recipe5/CropProfilePictures/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code files/Chapter03/Recipe5/CropProfilePictures/project.json -------------------------------------------------------------------------------- /Code files/Chapter03/Recipe5/CropProfilePictures/run.csx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code files/Chapter03/Recipe5/CropProfilePictures/run.csx -------------------------------------------------------------------------------- /Code files/Chapter03/Recipe5/LocateMaleFemaleFaces/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code files/Chapter03/Recipe5/LocateMaleFemaleFaces/function.json -------------------------------------------------------------------------------- /Code files/Chapter03/Recipe5/LocateMaleFemaleFaces/run.csx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code files/Chapter03/Recipe5/LocateMaleFemaleFaces/run.csx -------------------------------------------------------------------------------- /Code files/Chapter03/Recipe5/RegisterUser/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code files/Chapter03/Recipe5/RegisterUser/function.json -------------------------------------------------------------------------------- /Code files/Chapter03/Recipe5/RegisterUser/run.csx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code files/Chapter03/Recipe5/RegisterUser/run.csx -------------------------------------------------------------------------------- /Code files/Chapter03/Recipe5/SaveJSONToSqlAzureDatabase/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code files/Chapter03/Recipe5/SaveJSONToSqlAzureDatabase/function.json -------------------------------------------------------------------------------- /Code files/Chapter03/Recipe5/SaveJSONToSqlAzureDatabase/run.csx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code files/Chapter03/Recipe5/SaveJSONToSqlAzureDatabase/run.csx -------------------------------------------------------------------------------- /Code files/Chapter03/Recipe5/SendNotifications/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code files/Chapter03/Recipe5/SendNotifications/function.json -------------------------------------------------------------------------------- /Code files/Chapter03/Recipe5/SendNotifications/run.csx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code files/Chapter03/Recipe5/SendNotifications/run.csx -------------------------------------------------------------------------------- /Code files/Chapter03/Recipe5/ValidateTwitterFollowerCount/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code files/Chapter03/Recipe5/ValidateTwitterFollowerCount/function.json -------------------------------------------------------------------------------- /Code files/Chapter03/Recipe5/ValidateTwitterFollowerCount/run.csx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code files/Chapter03/Recipe5/ValidateTwitterFollowerCount/run.csx -------------------------------------------------------------------------------- /Code files/Chapter03/Recipe5/cookbookdatacollectionTrigger/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code files/Chapter03/Recipe5/cookbookdatacollectionTrigger/function.json -------------------------------------------------------------------------------- /Code files/Chapter03/Recipe5/cookbookdatacollectionTrigger/run.csx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code files/Chapter03/Recipe5/cookbookdatacollectionTrigger/run.csx -------------------------------------------------------------------------------- /Code files/Chapter03/Recipe5/extensions.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code files/Chapter03/Recipe5/extensions.csproj -------------------------------------------------------------------------------- /Code files/Chapter03/Recipe5/host.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "2.0" 3 | } -------------------------------------------------------------------------------- /Code files/Chapter04/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code files/Chapter04/Dockerfile -------------------------------------------------------------------------------- /Code files/Chapter04/FunctionAppInVisualStudio.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code files/Chapter04/FunctionAppInVisualStudio.zip -------------------------------------------------------------------------------- /Code files/Chapter05/Recipe1/BlobTriggerCSharpTestUsingStorageExplorer/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code files/Chapter05/Recipe1/BlobTriggerCSharpTestUsingStorageExplorer/function.json -------------------------------------------------------------------------------- /Code files/Chapter05/Recipe1/BlobTriggerCSharpTestUsingStorageExplorer/run.csx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code files/Chapter05/Recipe1/BlobTriggerCSharpTestUsingStorageExplorer/run.csx -------------------------------------------------------------------------------- /Code files/Chapter05/Recipe1/QueueTriggerTestusingPortal/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code files/Chapter05/Recipe1/QueueTriggerTestusingPortal/function.json -------------------------------------------------------------------------------- /Code files/Chapter05/Recipe1/QueueTriggerTestusingPortal/run.csx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code files/Chapter05/Recipe1/QueueTriggerTestusingPortal/run.csx -------------------------------------------------------------------------------- /Code files/Chapter05/Recipe1/extensions.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code files/Chapter05/Recipe1/extensions.csproj -------------------------------------------------------------------------------- /Code files/Chapter05/Recipe1/host.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "2.0" 3 | } -------------------------------------------------------------------------------- /Code files/Chapter05/Recipe2/ProductionSlot/MyProd-HttpTrigger1/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code files/Chapter05/Recipe2/ProductionSlot/MyProd-HttpTrigger1/function.json -------------------------------------------------------------------------------- /Code files/Chapter05/Recipe2/ProductionSlot/MyProd-HttpTrigger1/run.csx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code files/Chapter05/Recipe2/ProductionSlot/MyProd-HttpTrigger1/run.csx -------------------------------------------------------------------------------- /Code files/Chapter05/Recipe2/ProductionSlot/MyProd-HttpTrigger2/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code files/Chapter05/Recipe2/ProductionSlot/MyProd-HttpTrigger2/function.json -------------------------------------------------------------------------------- /Code files/Chapter05/Recipe2/ProductionSlot/MyProd-HttpTrigger2/run.csx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code files/Chapter05/Recipe2/ProductionSlot/MyProd-HttpTrigger2/run.csx -------------------------------------------------------------------------------- /Code files/Chapter05/Recipe2/StagingSlot/MyProd-HttpTrigger1/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code files/Chapter05/Recipe2/StagingSlot/MyProd-HttpTrigger1/function.json -------------------------------------------------------------------------------- /Code files/Chapter05/Recipe2/StagingSlot/MyProd-HttpTrigger1/run.csx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code files/Chapter05/Recipe2/StagingSlot/MyProd-HttpTrigger1/run.csx -------------------------------------------------------------------------------- /Code files/Chapter05/Recipe2/StagingSlot/MyProd-HttpTrigger2/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code files/Chapter05/Recipe2/StagingSlot/MyProd-HttpTrigger2/function.json -------------------------------------------------------------------------------- /Code files/Chapter05/Recipe2/StagingSlot/MyProd-HttpTrigger2/run.csx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code files/Chapter05/Recipe2/StagingSlot/MyProd-HttpTrigger2/run.csx -------------------------------------------------------------------------------- /Code files/Chapter05/Recipe3/LoadTestHttpTrigger/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code files/Chapter05/Recipe3/LoadTestHttpTrigger/function.json -------------------------------------------------------------------------------- /Code files/Chapter05/Recipe3/LoadTestHttpTrigger/run.csx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code files/Chapter05/Recipe3/LoadTestHttpTrigger/run.csx -------------------------------------------------------------------------------- /Code files/Chapter05/Recipe4/.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code files/Chapter05/Recipe4/.vscode/extensions.json -------------------------------------------------------------------------------- /Code files/Chapter05/Recipe4/HttpTrigger_CoreTools.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code files/Chapter05/Recipe4/HttpTrigger_CoreTools.cs -------------------------------------------------------------------------------- /Code files/Chapter05/Recipe4/Recipe4.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code files/Chapter05/Recipe4/Recipe4.csproj -------------------------------------------------------------------------------- /Code files/Chapter05/Recipe4/_gitignore.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code files/Chapter05/Recipe4/_gitignore.txt -------------------------------------------------------------------------------- /Code files/Chapter05/Recipe4/host.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "2.0" 3 | } -------------------------------------------------------------------------------- /Code files/Chapter05/Recipe4/local.settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code files/Chapter05/Recipe4/local.settings.json -------------------------------------------------------------------------------- /Code files/Chapter05/Recipe6/AzureFunctions.Tests/AzureFunctions.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code files/Chapter05/Recipe6/AzureFunctions.Tests/AzureFunctions.Tests.csproj -------------------------------------------------------------------------------- /Code files/Chapter05/Recipe6/AzureFunctions.Tests/ShouldExecuteAzureFunctions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code files/Chapter05/Recipe6/AzureFunctions.Tests/ShouldExecuteAzureFunctions.cs -------------------------------------------------------------------------------- /Code files/Chapter05/Recipe6/FunctionAppinVisualStudio/HTTPTriggerCSharpFromVS.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code files/Chapter05/Recipe6/FunctionAppinVisualStudio/HTTPTriggerCSharpFromVS.cs -------------------------------------------------------------------------------- /Code files/Chapter06/Recipe2/HttpTriggerCSharp1/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code files/Chapter06/Recipe2/HttpTriggerCSharp1/function.json -------------------------------------------------------------------------------- /Code files/Chapter06/Recipe2/HttpTriggerCSharp1/run.csx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code files/Chapter06/Recipe2/HttpTriggerCSharp1/run.csx -------------------------------------------------------------------------------- /Code files/Chapter07/ConveyGreeting/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code files/Chapter07/ConveyGreeting/function.json -------------------------------------------------------------------------------- /Code files/Chapter07/ConveyGreeting/run.csx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code files/Chapter07/ConveyGreeting/run.csx -------------------------------------------------------------------------------- /Code files/Chapter07/CreateBARCodeImagesPerCustomer/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code files/Chapter07/CreateBARCodeImagesPerCustomer/function.json -------------------------------------------------------------------------------- /Code files/Chapter07/CreateBARCodeImagesPerCustomer/run.csx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code files/Chapter07/CreateBARCodeImagesPerCustomer/run.csx -------------------------------------------------------------------------------- /Code files/Chapter07/DurableFuncManager/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code files/Chapter07/DurableFuncManager/function.json -------------------------------------------------------------------------------- /Code files/Chapter07/DurableFuncManager/run.csx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code files/Chapter07/DurableFuncManager/run.csx -------------------------------------------------------------------------------- /Code files/Chapter07/GenerateBARCode/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code files/Chapter07/GenerateBARCode/function.json -------------------------------------------------------------------------------- /Code files/Chapter07/GenerateBARCode/run.csx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code files/Chapter07/GenerateBARCode/run.csx -------------------------------------------------------------------------------- /Code files/Chapter07/GetAllCustomers/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code files/Chapter07/GetAllCustomers/function.json -------------------------------------------------------------------------------- /Code files/Chapter07/GetAllCustomers/run.csx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code files/Chapter07/GetAllCustomers/run.csx -------------------------------------------------------------------------------- /Code files/Chapter07/HttpStart/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code files/Chapter07/HttpStart/function.json -------------------------------------------------------------------------------- /Code files/Chapter07/HttpStart/run.csx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code files/Chapter07/HttpStart/run.csx -------------------------------------------------------------------------------- /Code files/Chapter07/extensions.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code files/Chapter07/extensions.csproj -------------------------------------------------------------------------------- /Code files/Chapter07/host.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "2.0" 3 | } -------------------------------------------------------------------------------- /Code files/Chapter08/Chapter8/ExcelImport/.vs/ExcelImport/v15/Server/sqlite3/db.lock: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Code files/Chapter08/Chapter8/ExcelImport/.vs/ExcelImport/v15/Server/sqlite3/storage.ide: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code files/Chapter08/Chapter8/ExcelImport/.vs/ExcelImport/v15/Server/sqlite3/storage.ide -------------------------------------------------------------------------------- /Code files/Chapter08/Chapter8/ExcelImport/.vs/ExcelImport/v15/Server/sqlite3/storage.ide-shm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code files/Chapter08/Chapter8/ExcelImport/.vs/ExcelImport/v15/Server/sqlite3/storage.ide-shm -------------------------------------------------------------------------------- /Code files/Chapter08/Chapter8/ExcelImport/.vs/ExcelImport/v15/Server/sqlite3/storage.ide-wal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code files/Chapter08/Chapter8/ExcelImport/.vs/ExcelImport/v15/Server/sqlite3/storage.ide-wal -------------------------------------------------------------------------------- /Code files/Chapter08/Chapter8/ExcelImport/.vs/ExcelImport/v15/_suo.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code files/Chapter08/Chapter8/ExcelImport/.vs/ExcelImport/v15/_suo.doc -------------------------------------------------------------------------------- /Code files/Chapter08/Chapter8/ExcelImport/.vs/config/applicationhost.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code files/Chapter08/Chapter8/ExcelImport/.vs/config/applicationhost.config -------------------------------------------------------------------------------- /Code files/Chapter08/Chapter8/ExcelImport/ExcelImport.Client/ExcelImport.Client.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code files/Chapter08/Chapter8/ExcelImport/ExcelImport.Client/ExcelImport.Client.csproj -------------------------------------------------------------------------------- /Code files/Chapter08/Chapter8/ExcelImport/ExcelImport.Client/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code files/Chapter08/Chapter8/ExcelImport/ExcelImport.Client/Program.cs -------------------------------------------------------------------------------- /Code files/Chapter08/Chapter8/ExcelImport/ExcelImport.Client/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code files/Chapter08/Chapter8/ExcelImport/ExcelImport.Client/appsettings.json -------------------------------------------------------------------------------- /Code files/Chapter08/Chapter8/ExcelImport/ExcelImport.Client/obj/Debug/netcoreapp2.1/ExcelImport.Client.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | b38380e5806fdee3396067a9df5cdf020fa549a0 2 | -------------------------------------------------------------------------------- /Code files/Chapter08/Chapter8/ExcelImport/ExcelImport.Client/obj/Debug/netcoreapp2.1/ExcelImport.Client.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 1c0e398b99586216982647e39c8925a27b240f89 2 | -------------------------------------------------------------------------------- /Code files/Chapter08/Chapter8/ExcelImport/ExcelImport.Client/obj/Debug/netcoreapp2.1/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Code files/Chapter08/Chapter8/ExcelImport/ExcelImport.Client/obj/Debug/netcoreapp2.1/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Code files/Chapter08/Chapter8/ExcelImport/ExcelImport.Client/obj/Debug/netcoreapp2.1/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Code files/Chapter08/Chapter8/ExcelImport/ExcelImport.Client/obj/project.assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code files/Chapter08/Chapter8/ExcelImport/ExcelImport.Client/obj/project.assets.json -------------------------------------------------------------------------------- /Code files/Chapter08/Chapter8/ExcelImport/ExcelImport.DurableFunctions/EPPLusExcelManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code files/Chapter08/Chapter8/ExcelImport/ExcelImport.DurableFunctions/EPPLusExcelManager.cs -------------------------------------------------------------------------------- /Code files/Chapter08/Chapter8/ExcelImport/ExcelImport.DurableFunctions/ExcelImportBlobTrigger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code files/Chapter08/Chapter8/ExcelImport/ExcelImport.DurableFunctions/ExcelImportBlobTrigger.cs -------------------------------------------------------------------------------- /Code files/Chapter08/Chapter8/ExcelImport/ExcelImport.DurableFunctions/ExcelImport_Orchestrator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code files/Chapter08/Chapter8/ExcelImport/ExcelImport.DurableFunctions/ExcelImport_Orchestrator.cs -------------------------------------------------------------------------------- /Code files/Chapter08/Chapter8/ExcelImport/ExcelImport.DurableFunctions/StorageManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code files/Chapter08/Chapter8/ExcelImport/ExcelImport.DurableFunctions/StorageManager.cs -------------------------------------------------------------------------------- /Code files/Chapter08/Chapter8/ExcelImport/ExcelImport.DurableFunctions/_gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code files/Chapter08/Chapter8/ExcelImport/ExcelImport.DurableFunctions/_gitignore -------------------------------------------------------------------------------- /Code files/Chapter08/Chapter8/ExcelImport/ExcelImport.DurableFunctions/bin/Debug/netcoreapp2.1/host.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "2.0" 3 | } -------------------------------------------------------------------------------- /Code files/Chapter08/Chapter8/ExcelImport/ExcelImport.DurableFunctions/host.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "2.0" 3 | } -------------------------------------------------------------------------------- /Code files/Chapter08/Chapter8/ExcelImport/ExcelImport.DurableFunctions/local.settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code files/Chapter08/Chapter8/ExcelImport/ExcelImport.DurableFunctions/local.settings.json -------------------------------------------------------------------------------- /Code files/Chapter08/Chapter8/ExcelImport/ExcelImport.DurableFunctions/obj/Debug/netcoreapp2.1/ExcelImport.DurableFunctions.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | 73863d98b879b7e8f1af4c870d2a00d63221077b 2 | -------------------------------------------------------------------------------- /Code files/Chapter08/Chapter8/ExcelImport/ExcelImport.DurableFunctions/obj/Debug/netcoreapp2.1/ExcelImport.DurableFunctions.csproj.CopyComplete: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Code files/Chapter08/Chapter8/ExcelImport/ExcelImport.DurableFunctions/obj/Debug/netcoreapp2.1/ExcelImport.DurableFunctions.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 0aff30f6289b0e842ca20075946a021b24f1eeec 2 | -------------------------------------------------------------------------------- /Code files/Chapter08/Chapter8/ExcelImport/ExcelImport.DurableFunctions/obj/Debug/netcoreapp2.1/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Code files/Chapter08/Chapter8/ExcelImport/ExcelImport.DurableFunctions/obj/Debug/netcoreapp2.1/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Code files/Chapter08/Chapter8/ExcelImport/ExcelImport.DurableFunctions/obj/Debug/netcoreapp2.1/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Code files/Chapter08/Chapter8/ExcelImport/ExcelImport.DurableFunctions/obj/project.assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code files/Chapter08/Chapter8/ExcelImport/ExcelImport.DurableFunctions/obj/project.assets.json -------------------------------------------------------------------------------- /Code files/Chapter08/Chapter8/ExcelImport/ExcelImport.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code files/Chapter08/Chapter8/ExcelImport/ExcelImport.sln -------------------------------------------------------------------------------- /Code files/Chapter08/Chapter8/ExcelImport/_gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code files/Chapter08/Chapter8/ExcelImport/_gitattributes -------------------------------------------------------------------------------- /Code files/Chapter08/Chapter8/ExcelImport/_gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code files/Chapter08/Chapter8/ExcelImport/_gitignore -------------------------------------------------------------------------------- /Code files/Chapter08/Chapter8/WebApplication1/.vs/WebApplication1/v15/Server/sqlite3/db.lock: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Code files/Chapter08/Chapter8/WebApplication1/.vs/WebApplication1/v15/Server/sqlite3/storage.ide: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code files/Chapter08/Chapter8/WebApplication1/.vs/WebApplication1/v15/Server/sqlite3/storage.ide -------------------------------------------------------------------------------- /Code files/Chapter08/Chapter8/WebApplication1/.vs/WebApplication1/v15/Server/sqlite3/storage.ide-shm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code files/Chapter08/Chapter8/WebApplication1/.vs/WebApplication1/v15/Server/sqlite3/storage.ide-shm -------------------------------------------------------------------------------- /Code files/Chapter08/Chapter8/WebApplication1/.vs/WebApplication1/v15/Server/sqlite3/storage.ide-wal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code files/Chapter08/Chapter8/WebApplication1/.vs/WebApplication1/v15/Server/sqlite3/storage.ide-wal -------------------------------------------------------------------------------- /Code files/Chapter08/Chapter8/WebApplication1/.vs/WebApplication1/v15/_suo.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code files/Chapter08/Chapter8/WebApplication1/.vs/WebApplication1/v15/_suo.doc -------------------------------------------------------------------------------- /Code files/Chapter08/Chapter8/WebApplication1/.vs/config/applicationhost.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code files/Chapter08/Chapter8/WebApplication1/.vs/config/applicationhost.config -------------------------------------------------------------------------------- /Code files/Chapter08/Chapter8/WebApplication1/ARM/ARM.deployproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code files/Chapter08/Chapter8/WebApplication1/ARM/ARM.deployproj -------------------------------------------------------------------------------- /Code files/Chapter08/Chapter8/WebApplication1/ARM/Deploy-AzureResourceGroup.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code files/Chapter08/Chapter8/WebApplication1/ARM/Deploy-AzureResourceGroup.ps1 -------------------------------------------------------------------------------- /Code files/Chapter08/Chapter8/WebApplication1/ARM/Deployment.targets.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code files/Chapter08/Chapter8/WebApplication1/ARM/Deployment.targets.xml -------------------------------------------------------------------------------- /Code files/Chapter08/Chapter8/WebApplication1/ARM/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code files/Chapter08/Chapter8/WebApplication1/ARM/README.md -------------------------------------------------------------------------------- /Code files/Chapter08/Chapter8/WebApplication1/ARM/azuredeploy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code files/Chapter08/Chapter8/WebApplication1/ARM/azuredeploy.json -------------------------------------------------------------------------------- /Code files/Chapter08/Chapter8/WebApplication1/ARM/azuredeploy.parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code files/Chapter08/Chapter8/WebApplication1/ARM/azuredeploy.parameters.json -------------------------------------------------------------------------------- /Code files/Chapter08/Chapter8/WebApplication1/ARM/bin/Debug/staging/ARM/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code files/Chapter08/Chapter8/WebApplication1/ARM/bin/Debug/staging/ARM/README.md -------------------------------------------------------------------------------- /Code files/Chapter08/Chapter8/WebApplication1/ARM/bin/Debug/staging/ARM/azuredeploy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code files/Chapter08/Chapter8/WebApplication1/ARM/bin/Debug/staging/ARM/azuredeploy.json -------------------------------------------------------------------------------- /Code files/Chapter08/Chapter8/WebApplication1/ARM/bin/Debug/staging/ARM/azuredeploy.parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code files/Chapter08/Chapter8/WebApplication1/ARM/bin/Debug/staging/ARM/azuredeploy.parameters.json -------------------------------------------------------------------------------- /Code files/Chapter08/Chapter8/WebApplication1/ARM/obj/Debug/ARM.deployproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code files/Chapter08/Chapter8/WebApplication1/ARM/obj/Debug/ARM.deployproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /Code files/Chapter08/Chapter8/WebApplication1/ConsoleApp1/ConsoleApp1.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code files/Chapter08/Chapter8/WebApplication1/ConsoleApp1/ConsoleApp1.csproj -------------------------------------------------------------------------------- /Code files/Chapter08/Chapter8/WebApplication1/ConsoleApp1/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code files/Chapter08/Chapter8/WebApplication1/ConsoleApp1/Program.cs -------------------------------------------------------------------------------- /Code files/Chapter08/Chapter8/WebApplication1/ConsoleApp1/bin/Debug/netcoreapp2.1/ConsoleApp1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code files/Chapter08/Chapter8/WebApplication1/ConsoleApp1/bin/Debug/netcoreapp2.1/ConsoleApp1.dll -------------------------------------------------------------------------------- /Code files/Chapter08/Chapter8/WebApplication1/ConsoleApp1/bin/Debug/netcoreapp2.1/ConsoleApp1.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code files/Chapter08/Chapter8/WebApplication1/ConsoleApp1/bin/Debug/netcoreapp2.1/ConsoleApp1.pdb -------------------------------------------------------------------------------- /Code files/Chapter08/Chapter8/WebApplication1/ConsoleApp1/obj/ConsoleApp1.csproj.nuget.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code files/Chapter08/Chapter8/WebApplication1/ConsoleApp1/obj/ConsoleApp1.csproj.nuget.cache -------------------------------------------------------------------------------- /Code files/Chapter08/Chapter8/WebApplication1/ConsoleApp1/obj/ConsoleApp1.csproj.nuget.g.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code files/Chapter08/Chapter8/WebApplication1/ConsoleApp1/obj/ConsoleApp1.csproj.nuget.g.props -------------------------------------------------------------------------------- /Code files/Chapter08/Chapter8/WebApplication1/ConsoleApp1/obj/ConsoleApp1.csproj.nuget.g.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code files/Chapter08/Chapter8/WebApplication1/ConsoleApp1/obj/ConsoleApp1.csproj.nuget.g.targets -------------------------------------------------------------------------------- /Code files/Chapter08/Chapter8/WebApplication1/ConsoleApp1/obj/Debug/netcoreapp2.1/ConsoleApp1.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | 0cbac02cf6b33ab9449e1ec02e8dbba2474e8080 2 | -------------------------------------------------------------------------------- /Code files/Chapter08/Chapter8/WebApplication1/ConsoleApp1/obj/Debug/netcoreapp2.1/ConsoleApp1.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | b7f2a81f9041462cd7fed755e4d1efef50e4415a 2 | -------------------------------------------------------------------------------- /Code files/Chapter08/Chapter8/WebApplication1/ConsoleApp1/obj/Debug/netcoreapp2.1/ConsoleApp1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code files/Chapter08/Chapter8/WebApplication1/ConsoleApp1/obj/Debug/netcoreapp2.1/ConsoleApp1.dll -------------------------------------------------------------------------------- /Code files/Chapter08/Chapter8/WebApplication1/ConsoleApp1/obj/Debug/netcoreapp2.1/ConsoleApp1.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code files/Chapter08/Chapter8/WebApplication1/ConsoleApp1/obj/Debug/netcoreapp2.1/ConsoleApp1.pdb -------------------------------------------------------------------------------- /Code files/Chapter08/Chapter8/WebApplication1/ConsoleApp1/obj/Debug/netcoreapp2.1/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Code files/Chapter08/Chapter8/WebApplication1/ConsoleApp1/obj/Debug/netcoreapp2.1/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Code files/Chapter08/Chapter8/WebApplication1/ConsoleApp1/obj/Debug/netcoreapp2.1/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Code files/Chapter08/Chapter8/WebApplication1/ConsoleApp1/obj/project.assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code files/Chapter08/Chapter8/WebApplication1/ConsoleApp1/obj/project.assets.json -------------------------------------------------------------------------------- /Code files/Chapter08/Chapter8/WebApplication1/WebApplication1.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code files/Chapter08/Chapter8/WebApplication1/WebApplication1.sln -------------------------------------------------------------------------------- /Code files/Chapter08/Chapter8/WebApplication1/WebApplication1/Pages/About.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code files/Chapter08/Chapter8/WebApplication1/WebApplication1/Pages/About.cshtml -------------------------------------------------------------------------------- /Code files/Chapter08/Chapter8/WebApplication1/WebApplication1/Pages/About.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code files/Chapter08/Chapter8/WebApplication1/WebApplication1/Pages/About.cshtml.cs -------------------------------------------------------------------------------- /Code files/Chapter08/Chapter8/WebApplication1/WebApplication1/Pages/Contact.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code files/Chapter08/Chapter8/WebApplication1/WebApplication1/Pages/Contact.cshtml -------------------------------------------------------------------------------- /Code files/Chapter08/Chapter8/WebApplication1/WebApplication1/Pages/Contact.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code files/Chapter08/Chapter8/WebApplication1/WebApplication1/Pages/Contact.cshtml.cs -------------------------------------------------------------------------------- /Code files/Chapter08/Chapter8/WebApplication1/WebApplication1/Pages/Error.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code files/Chapter08/Chapter8/WebApplication1/WebApplication1/Pages/Error.cshtml -------------------------------------------------------------------------------- /Code files/Chapter08/Chapter8/WebApplication1/WebApplication1/Pages/Error.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code files/Chapter08/Chapter8/WebApplication1/WebApplication1/Pages/Error.cshtml.cs -------------------------------------------------------------------------------- /Code files/Chapter08/Chapter8/WebApplication1/WebApplication1/Pages/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code files/Chapter08/Chapter8/WebApplication1/WebApplication1/Pages/Index.cshtml -------------------------------------------------------------------------------- /Code files/Chapter08/Chapter8/WebApplication1/WebApplication1/Pages/Index.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code files/Chapter08/Chapter8/WebApplication1/WebApplication1/Pages/Index.cshtml.cs -------------------------------------------------------------------------------- /Code files/Chapter08/Chapter8/WebApplication1/WebApplication1/Pages/Privacy.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code files/Chapter08/Chapter8/WebApplication1/WebApplication1/Pages/Privacy.cshtml -------------------------------------------------------------------------------- /Code files/Chapter08/Chapter8/WebApplication1/WebApplication1/Pages/Privacy.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code files/Chapter08/Chapter8/WebApplication1/WebApplication1/Pages/Privacy.cshtml.cs -------------------------------------------------------------------------------- /Code files/Chapter08/Chapter8/WebApplication1/WebApplication1/Pages/Shared/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code files/Chapter08/Chapter8/WebApplication1/WebApplication1/Pages/Shared/_Layout.cshtml -------------------------------------------------------------------------------- /Code files/Chapter08/Chapter8/WebApplication1/WebApplication1/Pages/_ViewImports.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code files/Chapter08/Chapter8/WebApplication1/WebApplication1/Pages/_ViewImports.cshtml -------------------------------------------------------------------------------- /Code files/Chapter08/Chapter8/WebApplication1/WebApplication1/Pages/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code files/Chapter08/Chapter8/WebApplication1/WebApplication1/Pages/_ViewStart.cshtml -------------------------------------------------------------------------------- /Code files/Chapter08/Chapter8/WebApplication1/WebApplication1/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code files/Chapter08/Chapter8/WebApplication1/WebApplication1/Program.cs -------------------------------------------------------------------------------- /Code files/Chapter08/Chapter8/WebApplication1/WebApplication1/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code files/Chapter08/Chapter8/WebApplication1/WebApplication1/Properties/launchSettings.json -------------------------------------------------------------------------------- /Code files/Chapter08/Chapter8/WebApplication1/WebApplication1/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code files/Chapter08/Chapter8/WebApplication1/WebApplication1/Startup.cs -------------------------------------------------------------------------------- /Code files/Chapter08/Chapter8/WebApplication1/WebApplication1/WebApplication1.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code files/Chapter08/Chapter8/WebApplication1/WebApplication1/WebApplication1.csproj -------------------------------------------------------------------------------- /Code files/Chapter08/Chapter8/WebApplication1/WebApplication1/WebApplication1.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code files/Chapter08/Chapter8/WebApplication1/WebApplication1/WebApplication1.csproj.user -------------------------------------------------------------------------------- /Code files/Chapter08/Chapter8/WebApplication1/WebApplication1/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code files/Chapter08/Chapter8/WebApplication1/WebApplication1/appsettings.Development.json -------------------------------------------------------------------------------- /Code files/Chapter08/Chapter8/WebApplication1/WebApplication1/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code files/Chapter08/Chapter8/WebApplication1/WebApplication1/appsettings.json -------------------------------------------------------------------------------- /Code files/Chapter08/Chapter8/WebApplication1/WebApplication1/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code files/Chapter08/Chapter8/WebApplication1/WebApplication1/index.html -------------------------------------------------------------------------------- /Code files/Chapter08/Chapter8/WebApplication1/WebApplication1/obj/Debug/netcoreapp2.1/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Code files/Chapter08/Chapter8/WebApplication1/WebApplication1/obj/Debug/netcoreapp2.1/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Code files/Chapter08/Chapter8/WebApplication1/WebApplication1/obj/Debug/netcoreapp2.1/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Code files/Chapter08/Chapter8/WebApplication1/WebApplication1/obj/Debug/netcoreapp2.1/WebApplication1.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | dee9a2aee02504fa7cdc7ec740942fa35fde151a 2 | -------------------------------------------------------------------------------- /Code files/Chapter08/Chapter8/WebApplication1/WebApplication1/obj/Debug/netcoreapp2.1/WebApplication1.RazorAssemblyInfo.cache: -------------------------------------------------------------------------------- 1 | 04cbf422ac89c52494887aa9d0071b0b2469e925 2 | -------------------------------------------------------------------------------- /Code files/Chapter08/Chapter8/WebApplication1/WebApplication1/obj/Debug/netcoreapp2.1/WebApplication1.RazorCoreGenerate.cache: -------------------------------------------------------------------------------- 1 | 2a7b6395985efeb6d76908121126f1f53a58257b 2 | -------------------------------------------------------------------------------- /Code files/Chapter08/Chapter8/WebApplication1/WebApplication1/obj/Debug/netcoreapp2.1/WebApplication1.RazorTargetAssemblyInfo.cache: -------------------------------------------------------------------------------- 1 | 8faf48b8e9c655f1a9fc0d90ca4a911c6092db70 2 | -------------------------------------------------------------------------------- /Code files/Chapter08/Chapter8/WebApplication1/WebApplication1/obj/Debug/netcoreapp2.1/WebApplication1.TagHelpers.input.cache: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Code files/Chapter08/Chapter8/WebApplication1/WebApplication1/obj/Debug/netcoreapp2.1/WebApplication1.csproj.CopyComplete: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Code files/Chapter08/Chapter8/WebApplication1/WebApplication1/obj/Debug/netcoreapp2.1/WebApplication1.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | ba99704d1e1696ad24a91229bbe68f0c093ae690 2 | -------------------------------------------------------------------------------- /Code files/Chapter08/Chapter8/WebApplication1/WebApplication1/obj/Release/netcoreapp2.1/PubTmp/Out/wwwroot/js/site.min.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Code files/Chapter08/Chapter8/WebApplication1/WebApplication1/obj/Release/netcoreapp2.1/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Code files/Chapter08/Chapter8/WebApplication1/WebApplication1/obj/Release/netcoreapp2.1/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Code files/Chapter08/Chapter8/WebApplication1/WebApplication1/obj/Release/netcoreapp2.1/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Code files/Chapter08/Chapter8/WebApplication1/WebApplication1/obj/Release/netcoreapp2.1/WebApplication1.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | e5ea81544c71ccdf664c478fb6e2942e864600b3 2 | -------------------------------------------------------------------------------- /Code files/Chapter08/Chapter8/WebApplication1/WebApplication1/obj/Release/netcoreapp2.1/WebApplication1.RazorAssemblyInfo.cache: -------------------------------------------------------------------------------- 1 | 04cbf422ac89c52494887aa9d0071b0b2469e925 2 | -------------------------------------------------------------------------------- /Code files/Chapter08/Chapter8/WebApplication1/WebApplication1/obj/Release/netcoreapp2.1/WebApplication1.RazorCoreGenerate.cache: -------------------------------------------------------------------------------- 1 | 2a7b6395985efeb6d76908121126f1f53a58257b 2 | -------------------------------------------------------------------------------- /Code files/Chapter08/Chapter8/WebApplication1/WebApplication1/obj/Release/netcoreapp2.1/WebApplication1.RazorTargetAssemblyInfo.cache: -------------------------------------------------------------------------------- 1 | cf45cedf9b2d8e06db49119ff8d72e5bddeaf846 2 | -------------------------------------------------------------------------------- /Code files/Chapter08/Chapter8/WebApplication1/WebApplication1/obj/Release/netcoreapp2.1/WebApplication1.TagHelpers.input.cache: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Code files/Chapter08/Chapter8/WebApplication1/WebApplication1/obj/Release/netcoreapp2.1/WebApplication1.csproj.CopyComplete: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Code files/Chapter08/Chapter8/WebApplication1/WebApplication1/obj/Release/netcoreapp2.1/WebApplication1.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | ba99704d1e1696ad24a91229bbe68f0c093ae690 2 | -------------------------------------------------------------------------------- /Code files/Chapter08/Chapter8/WebApplication1/WebApplication1/obj/WebApplication1.csproj.nuget.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code files/Chapter08/Chapter8/WebApplication1/WebApplication1/obj/WebApplication1.csproj.nuget.cache -------------------------------------------------------------------------------- /Code files/Chapter08/Chapter8/WebApplication1/WebApplication1/obj/project.assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code files/Chapter08/Chapter8/WebApplication1/WebApplication1/obj/project.assets.json -------------------------------------------------------------------------------- /Code files/Chapter08/Chapter8/WebApplication1/WebApplication1/wwwroot/css/site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code files/Chapter08/Chapter8/WebApplication1/WebApplication1/wwwroot/css/site.css -------------------------------------------------------------------------------- /Code files/Chapter08/Chapter8/WebApplication1/WebApplication1/wwwroot/css/site.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code files/Chapter08/Chapter8/WebApplication1/WebApplication1/wwwroot/css/site.min.css -------------------------------------------------------------------------------- /Code files/Chapter08/Chapter8/WebApplication1/WebApplication1/wwwroot/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code files/Chapter08/Chapter8/WebApplication1/WebApplication1/wwwroot/favicon.ico -------------------------------------------------------------------------------- /Code files/Chapter08/Chapter8/WebApplication1/WebApplication1/wwwroot/images/banner1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code files/Chapter08/Chapter8/WebApplication1/WebApplication1/wwwroot/images/banner1.svg -------------------------------------------------------------------------------- /Code files/Chapter08/Chapter8/WebApplication1/WebApplication1/wwwroot/images/banner2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code files/Chapter08/Chapter8/WebApplication1/WebApplication1/wwwroot/images/banner2.svg -------------------------------------------------------------------------------- /Code files/Chapter08/Chapter8/WebApplication1/WebApplication1/wwwroot/images/banner3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code files/Chapter08/Chapter8/WebApplication1/WebApplication1/wwwroot/images/banner3.svg -------------------------------------------------------------------------------- /Code files/Chapter08/Chapter8/WebApplication1/WebApplication1/wwwroot/js/site.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code files/Chapter08/Chapter8/WebApplication1/WebApplication1/wwwroot/js/site.js -------------------------------------------------------------------------------- /Code files/Chapter08/Chapter8/WebApplication1/WebApplication1/wwwroot/js/site.min.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Code files/Chapter08/Chapter8/WebApplication1/WebApplication1/wwwroot/lib/bootstrap/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code files/Chapter08/Chapter8/WebApplication1/WebApplication1/wwwroot/lib/bootstrap/LICENSE -------------------------------------------------------------------------------- /Code files/Chapter08/Chapter8/WebApplication1/WebApplication1/wwwroot/lib/bootstrap/_bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code files/Chapter08/Chapter8/WebApplication1/WebApplication1/wwwroot/lib/bootstrap/_bower.json -------------------------------------------------------------------------------- /Code files/Chapter08/Chapter8/WebApplication1/WebApplication1/wwwroot/lib/bootstrap/dist/js/npm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code files/Chapter08/Chapter8/WebApplication1/WebApplication1/wwwroot/lib/bootstrap/dist/js/npm.js -------------------------------------------------------------------------------- /Code files/Chapter08/Chapter8/WebApplication1/WebApplication1/wwwroot/lib/jquery/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code files/Chapter08/Chapter8/WebApplication1/WebApplication1/wwwroot/lib/jquery/LICENSE.txt -------------------------------------------------------------------------------- /Code files/Chapter08/Chapter8/WebApplication1/WebApplication1/wwwroot/lib/jquery/_bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code files/Chapter08/Chapter8/WebApplication1/WebApplication1/wwwroot/lib/jquery/_bower.json -------------------------------------------------------------------------------- /Code files/Chapter08/Chapter8/WebApplication1/WebApplication1/wwwroot/lib/jquery/dist/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code files/Chapter08/Chapter8/WebApplication1/WebApplication1/wwwroot/lib/jquery/dist/jquery.js -------------------------------------------------------------------------------- /Code files/Chapter09/Recipe1/BulkDeviceRegistrations/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code files/Chapter09/Recipe1/BulkDeviceRegistrations/function.json -------------------------------------------------------------------------------- /Code files/Chapter09/Recipe1/BulkDeviceRegistrations/run.csx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code files/Chapter09/Recipe1/BulkDeviceRegistrations/run.csx -------------------------------------------------------------------------------- /Code files/Chapter09/Recipe1/extensions.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code files/Chapter09/Recipe1/extensions.csproj -------------------------------------------------------------------------------- /Code files/Chapter09/Recipe1/host.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "2.0" 3 | } -------------------------------------------------------------------------------- /Code files/Chapter09/Recipe2/ProcessData/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code files/Chapter09/Recipe2/ProcessData/function.json -------------------------------------------------------------------------------- /Code files/Chapter09/Recipe2/ProcessData/run.csx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code files/Chapter09/Recipe2/ProcessData/run.csx -------------------------------------------------------------------------------- /Code files/Chapter09/Recipe2/extensions.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code files/Chapter09/Recipe2/extensions.csproj -------------------------------------------------------------------------------- /Code files/Chapter09/Recipe2/host.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "2.0" 3 | } -------------------------------------------------------------------------------- /Code files/Chapter09/Recipe2/myqueuemessages/.vs/myqueuemessages/DesignTimeBuild/_dtbcache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code files/Chapter09/Recipe2/myqueuemessages/.vs/myqueuemessages/DesignTimeBuild/_dtbcache -------------------------------------------------------------------------------- /Code files/Chapter09/Recipe2/myqueuemessages/.vs/myqueuemessages/v15/Server/sqlite3/storage.ide: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code files/Chapter09/Recipe2/myqueuemessages/.vs/myqueuemessages/v15/Server/sqlite3/storage.ide -------------------------------------------------------------------------------- /Code files/Chapter09/Recipe2/myqueuemessages/.vs/myqueuemessages/v15/_suo.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code files/Chapter09/Recipe2/myqueuemessages/.vs/myqueuemessages/v15/_suo.doc -------------------------------------------------------------------------------- /Code files/Chapter09/Recipe2/myqueuemessages/myqueuemessages.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code files/Chapter09/Recipe2/myqueuemessages/myqueuemessages.sln -------------------------------------------------------------------------------- /Code files/Chapter09/Recipe2/myqueuemessages/myqueuemessages/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code files/Chapter09/Recipe2/myqueuemessages/myqueuemessages/App.config -------------------------------------------------------------------------------- /Code files/Chapter09/Recipe2/myqueuemessages/myqueuemessages/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code files/Chapter09/Recipe2/myqueuemessages/myqueuemessages/Program.cs -------------------------------------------------------------------------------- /Code files/Chapter09/Recipe2/myqueuemessages/myqueuemessages/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code files/Chapter09/Recipe2/myqueuemessages/myqueuemessages/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /Code files/Chapter09/Recipe2/myqueuemessages/myqueuemessages/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code files/Chapter09/Recipe2/myqueuemessages/myqueuemessages/Properties/Resources.resx -------------------------------------------------------------------------------- /Code files/Chapter09/Recipe2/myqueuemessages/myqueuemessages/myqueuemessages.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code files/Chapter09/Recipe2/myqueuemessages/myqueuemessages/myqueuemessages.csproj -------------------------------------------------------------------------------- /Code files/Chapter09/Recipe2/myqueuemessages/myqueuemessages/obj/Debug/netcoreapp2.1/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Code files/Chapter09/Recipe2/myqueuemessages/myqueuemessages/obj/Debug/netcoreapp2.1/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Code files/Chapter09/Recipe2/myqueuemessages/myqueuemessages/obj/Debug/netcoreapp2.1/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Code files/Chapter09/Recipe2/myqueuemessages/myqueuemessages/obj/Debug/netcoreapp2.1/myqueuemessages.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | 779f19c4032460d7187f8abab03ff58b3977b2b2 2 | -------------------------------------------------------------------------------- /Code files/Chapter09/Recipe2/myqueuemessages/myqueuemessages/obj/Debug/netcoreapp2.1/myqueuemessages.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 3b507e69497d87ecd970c8180489b9e76d927a14 2 | -------------------------------------------------------------------------------- /Code files/Chapter09/Recipe2/myqueuemessages/myqueuemessages/obj/project.assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code files/Chapter09/Recipe2/myqueuemessages/myqueuemessages/obj/project.assets.json -------------------------------------------------------------------------------- /Code files/Chapter09/Recipe3/EventHubApp/EventHubApp.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code files/Chapter09/Recipe3/EventHubApp/EventHubApp.sln -------------------------------------------------------------------------------- /Code files/Chapter09/Recipe3/EventHubApp/EventHubApp/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code files/Chapter09/Recipe3/EventHubApp/EventHubApp/App.config -------------------------------------------------------------------------------- /Code files/Chapter09/Recipe3/EventHubApp/EventHubApp/EventHubApp.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code files/Chapter09/Recipe3/EventHubApp/EventHubApp/EventHubApp.csproj -------------------------------------------------------------------------------- /Code files/Chapter09/Recipe3/EventHubApp/EventHubApp/EventHubHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code files/Chapter09/Recipe3/EventHubApp/EventHubApp/EventHubHelper.cs -------------------------------------------------------------------------------- /Code files/Chapter09/Recipe3/EventHubApp/EventHubApp/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code files/Chapter09/Recipe3/EventHubApp/EventHubApp/Program.cs -------------------------------------------------------------------------------- /Code files/Chapter09/Recipe3/capturemessage/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code files/Chapter09/Recipe3/capturemessage/function.json -------------------------------------------------------------------------------- /Code files/Chapter09/Recipe3/capturemessage/run.csx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code files/Chapter09/Recipe3/capturemessage/run.csx -------------------------------------------------------------------------------- /Code files/Chapter09/Recipe3/extensions.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code files/Chapter09/Recipe3/extensions.csproj -------------------------------------------------------------------------------- /Code files/Chapter09/Recipe3/host.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "2.0" 3 | } -------------------------------------------------------------------------------- /Code files/Chapter10/Recipe9/AzureFunctionsWithMSI/.vs/AzureFunctionsWithMSI/v15/Server/sqlite3/db.lock: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Code files/Chapter10/Recipe9/AzureFunctionsWithMSI/.vs/AzureFunctionsWithMSI/v15/_suo.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code files/Chapter10/Recipe9/AzureFunctionsWithMSI/.vs/AzureFunctionsWithMSI/v15/_suo.doc -------------------------------------------------------------------------------- /Code files/Chapter10/Recipe9/AzureFunctionsWithMSI/.vs/config/applicationhost.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code files/Chapter10/Recipe9/AzureFunctionsWithMSI/.vs/config/applicationhost.config -------------------------------------------------------------------------------- /Code files/Chapter10/Recipe9/AzureFunctionsWithMSI/AzureFunctionsWithMSI.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code files/Chapter10/Recipe9/AzureFunctionsWithMSI/AzureFunctionsWithMSI.sln -------------------------------------------------------------------------------- /Code files/Chapter10/Recipe9/AzureFunctionsWithMSI/AzureFunctionsWithMSI/HttpTriggerWithMSI.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code files/Chapter10/Recipe9/AzureFunctionsWithMSI/AzureFunctionsWithMSI/HttpTriggerWithMSI.cs -------------------------------------------------------------------------------- /Code files/Chapter10/Recipe9/AzureFunctionsWithMSI/AzureFunctionsWithMSI/_gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code files/Chapter10/Recipe9/AzureFunctionsWithMSI/AzureFunctionsWithMSI/_gitignore -------------------------------------------------------------------------------- /Code files/Chapter10/Recipe9/AzureFunctionsWithMSI/AzureFunctionsWithMSI/bin/Debug/net461/host.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /Code files/Chapter10/Recipe9/AzureFunctionsWithMSI/AzureFunctionsWithMSI/host.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /Code files/Chapter10/Recipe9/AzureFunctionsWithMSI/AzureFunctionsWithMSI/local.settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code files/Chapter10/Recipe9/AzureFunctionsWithMSI/AzureFunctionsWithMSI/local.settings.json -------------------------------------------------------------------------------- /Code files/Chapter10/Recipe9/AzureFunctionsWithMSI/AzureFunctionsWithMSI/obj/project.assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code files/Chapter10/Recipe9/AzureFunctionsWithMSI/AzureFunctionsWithMSI/obj/project.assets.json -------------------------------------------------------------------------------- /Code in Java/Chapter01/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code in Java/Chapter01/README.md -------------------------------------------------------------------------------- /Code in Java/Chapter01/Recipe1/extensions.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code in Java/Chapter01/Recipe1/extensions.csproj -------------------------------------------------------------------------------- /Code in Java/Chapter01/Recipe1/host.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "2.0" 3 | } 4 | -------------------------------------------------------------------------------- /Code in Java/Chapter01/Recipe1/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code in Java/Chapter01/Recipe1/pom.xml -------------------------------------------------------------------------------- /Code in Java/Chapter01/Recipe1/src/main/java/com/packtpub/Employee.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code in Java/Chapter01/Recipe1/src/main/java/com/packtpub/Employee.java -------------------------------------------------------------------------------- /Code in Java/Chapter01/Recipe1/src/main/java/com/packtpub/RegisterUser.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code in Java/Chapter01/Recipe1/src/main/java/com/packtpub/RegisterUser.java -------------------------------------------------------------------------------- /Code in Java/Chapter01/Recipe2/extensions.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code in Java/Chapter01/Recipe2/extensions.csproj -------------------------------------------------------------------------------- /Code in Java/Chapter01/Recipe2/host.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "2.0" 3 | } 4 | -------------------------------------------------------------------------------- /Code in Java/Chapter01/Recipe2/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code in Java/Chapter01/Recipe2/pom.xml -------------------------------------------------------------------------------- /Code in Java/Chapter01/Recipe2/src/main/java/com/packtpub/Employee.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code in Java/Chapter01/Recipe2/src/main/java/com/packtpub/Employee.java -------------------------------------------------------------------------------- /Code in Java/Chapter01/Recipe2/src/main/java/com/packtpub/RegisterUser.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code in Java/Chapter01/Recipe2/src/main/java/com/packtpub/RegisterUser.java -------------------------------------------------------------------------------- /Code in Java/Chapter01/Recipe3/extensions.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code in Java/Chapter01/Recipe3/extensions.csproj -------------------------------------------------------------------------------- /Code in Java/Chapter01/Recipe3/host.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "2.0" 3 | } 4 | -------------------------------------------------------------------------------- /Code in Java/Chapter01/Recipe3/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code in Java/Chapter01/Recipe3/pom.xml -------------------------------------------------------------------------------- /Code in Java/Chapter01/Recipe3/src/main/java/com/packtpub/Employee.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code in Java/Chapter01/Recipe3/src/main/java/com/packtpub/Employee.java -------------------------------------------------------------------------------- /Code in Java/Chapter01/Recipe3/src/main/java/com/packtpub/RegisterUser.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code in Java/Chapter01/Recipe3/src/main/java/com/packtpub/RegisterUser.java -------------------------------------------------------------------------------- /Code in Java/Chapter01/Recipe4/extensions.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code in Java/Chapter01/Recipe4/extensions.csproj -------------------------------------------------------------------------------- /Code in Java/Chapter01/Recipe4/host.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "2.0" 3 | } 4 | -------------------------------------------------------------------------------- /Code in Java/Chapter01/Recipe4/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code in Java/Chapter01/Recipe4/pom.xml -------------------------------------------------------------------------------- /Code in Java/Chapter01/Recipe4/src/main/java/com/packtpub/CreateProfilePictures.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code in Java/Chapter01/Recipe4/src/main/java/com/packtpub/CreateProfilePictures.java -------------------------------------------------------------------------------- /Code in Java/Chapter01/Recipe4/src/main/java/com/packtpub/Employee.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code in Java/Chapter01/Recipe4/src/main/java/com/packtpub/Employee.java -------------------------------------------------------------------------------- /Code in Java/Chapter01/Recipe4/src/main/java/com/packtpub/RegisterUser.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code in Java/Chapter01/Recipe4/src/main/java/com/packtpub/RegisterUser.java -------------------------------------------------------------------------------- /Code in Java/Chapter02/Recipe1/extensions.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code in Java/Chapter02/Recipe1/extensions.csproj -------------------------------------------------------------------------------- /Code in Java/Chapter02/Recipe1/host.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "2.0" 3 | } 4 | -------------------------------------------------------------------------------- /Code in Java/Chapter02/Recipe1/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code in Java/Chapter02/Recipe1/pom.xml -------------------------------------------------------------------------------- /Code in Java/Chapter02/Recipe1/src/main/java/com/packtpub/CreateProfilePictures.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code in Java/Chapter02/Recipe1/src/main/java/com/packtpub/CreateProfilePictures.java -------------------------------------------------------------------------------- /Code in Java/Chapter02/Recipe1/src/main/java/com/packtpub/Employee.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code in Java/Chapter02/Recipe1/src/main/java/com/packtpub/Employee.java -------------------------------------------------------------------------------- /Code in Java/Chapter02/Recipe1/src/main/java/com/packtpub/RegisterUser.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code in Java/Chapter02/Recipe1/src/main/java/com/packtpub/RegisterUser.java -------------------------------------------------------------------------------- /Code in Java/Chapter02/Recipe1/src/main/java/com/packtpub/SendNotification.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code in Java/Chapter02/Recipe1/src/main/java/com/packtpub/SendNotification.java -------------------------------------------------------------------------------- /Code in Java/Chapter02/Recipe2/extensions.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code in Java/Chapter02/Recipe2/extensions.csproj -------------------------------------------------------------------------------- /Code in Java/Chapter02/Recipe2/host.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "2.0" 3 | } 4 | -------------------------------------------------------------------------------- /Code in Java/Chapter02/Recipe2/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code in Java/Chapter02/Recipe2/pom.xml -------------------------------------------------------------------------------- /Code in Java/Chapter02/Recipe2/src/main/java/com/packtpub/CreateProfilePictures.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code in Java/Chapter02/Recipe2/src/main/java/com/packtpub/CreateProfilePictures.java -------------------------------------------------------------------------------- /Code in Java/Chapter02/Recipe2/src/main/java/com/packtpub/Employee.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code in Java/Chapter02/Recipe2/src/main/java/com/packtpub/Employee.java -------------------------------------------------------------------------------- /Code in Java/Chapter02/Recipe2/src/main/java/com/packtpub/RegisterUser.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code in Java/Chapter02/Recipe2/src/main/java/com/packtpub/RegisterUser.java -------------------------------------------------------------------------------- /Code in Java/Chapter02/Recipe2/src/main/java/com/packtpub/SendNotification.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code in Java/Chapter02/Recipe2/src/main/java/com/packtpub/SendNotification.java -------------------------------------------------------------------------------- /Code in Java/Chapter02/Recipe3/extensions.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code in Java/Chapter02/Recipe3/extensions.csproj -------------------------------------------------------------------------------- /Code in Java/Chapter02/Recipe3/host.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "2.0" 3 | } 4 | -------------------------------------------------------------------------------- /Code in Java/Chapter02/Recipe3/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code in Java/Chapter02/Recipe3/pom.xml -------------------------------------------------------------------------------- /Code in Java/Chapter02/Recipe3/src/main/java/com/packtpub/CreateProfilePictures.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code in Java/Chapter02/Recipe3/src/main/java/com/packtpub/CreateProfilePictures.java -------------------------------------------------------------------------------- /Code in Java/Chapter02/Recipe3/src/main/java/com/packtpub/Employee.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code in Java/Chapter02/Recipe3/src/main/java/com/packtpub/Employee.java -------------------------------------------------------------------------------- /Code in Java/Chapter02/Recipe3/src/main/java/com/packtpub/RegisterUser.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code in Java/Chapter02/Recipe3/src/main/java/com/packtpub/RegisterUser.java -------------------------------------------------------------------------------- /Code in Java/Chapter02/Recipe3/src/main/java/com/packtpub/SendNotification.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code in Java/Chapter02/Recipe3/src/main/java/com/packtpub/SendNotification.java -------------------------------------------------------------------------------- /Code in Java/Chapter02/Recipe4/extensions.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code in Java/Chapter02/Recipe4/extensions.csproj -------------------------------------------------------------------------------- /Code in Java/Chapter02/Recipe4/host.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "2.0" 3 | } 4 | -------------------------------------------------------------------------------- /Code in Java/Chapter02/Recipe4/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code in Java/Chapter02/Recipe4/pom.xml -------------------------------------------------------------------------------- /Code in Java/Chapter02/Recipe4/src/main/java/com/packtpub/CreateProfilePictures.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code in Java/Chapter02/Recipe4/src/main/java/com/packtpub/CreateProfilePictures.java -------------------------------------------------------------------------------- /Code in Java/Chapter02/Recipe4/src/main/java/com/packtpub/Employee.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code in Java/Chapter02/Recipe4/src/main/java/com/packtpub/Employee.java -------------------------------------------------------------------------------- /Code in Java/Chapter02/Recipe4/src/main/java/com/packtpub/RegisterUser.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code in Java/Chapter02/Recipe4/src/main/java/com/packtpub/RegisterUser.java -------------------------------------------------------------------------------- /Code in Java/Chapter02/Recipe4/src/main/java/com/packtpub/SendNotification.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code in Java/Chapter02/Recipe4/src/main/java/com/packtpub/SendNotification.java -------------------------------------------------------------------------------- /Code in Java/Chapter02/Recipe5/extensions.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code in Java/Chapter02/Recipe5/extensions.csproj -------------------------------------------------------------------------------- /Code in Java/Chapter02/Recipe5/host.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "2.0" 3 | } 4 | -------------------------------------------------------------------------------- /Code in Java/Chapter02/Recipe5/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code in Java/Chapter02/Recipe5/pom.xml -------------------------------------------------------------------------------- /Code in Java/Chapter02/Recipe5/src/main/java/com/packtpub/CreateProfilePictures.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code in Java/Chapter02/Recipe5/src/main/java/com/packtpub/CreateProfilePictures.java -------------------------------------------------------------------------------- /Code in Java/Chapter02/Recipe5/src/main/java/com/packtpub/Employee.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code in Java/Chapter02/Recipe5/src/main/java/com/packtpub/Employee.java -------------------------------------------------------------------------------- /Code in Java/Chapter02/Recipe5/src/main/java/com/packtpub/RegisterUser.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code in Java/Chapter02/Recipe5/src/main/java/com/packtpub/RegisterUser.java -------------------------------------------------------------------------------- /Code in Java/Chapter02/Recipe5/src/main/java/com/packtpub/SendNotification.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code in Java/Chapter02/Recipe5/src/main/java/com/packtpub/SendNotification.java -------------------------------------------------------------------------------- /Code in Java/Chapter03/Recipe1/extensions.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code in Java/Chapter03/Recipe1/extensions.csproj -------------------------------------------------------------------------------- /Code in Java/Chapter03/Recipe1/host.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "2.0" 3 | } 4 | -------------------------------------------------------------------------------- /Code in Java/Chapter03/Recipe1/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code in Java/Chapter03/Recipe1/pom.xml -------------------------------------------------------------------------------- /Code in Java/Chapter03/Recipe1/src/main/java/com/packtpub/CreateProfilePictures.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code in Java/Chapter03/Recipe1/src/main/java/com/packtpub/CreateProfilePictures.java -------------------------------------------------------------------------------- /Code in Java/Chapter03/Recipe1/src/main/java/com/packtpub/Employee.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code in Java/Chapter03/Recipe1/src/main/java/com/packtpub/Employee.java -------------------------------------------------------------------------------- /Code in Java/Chapter03/Recipe1/src/main/java/com/packtpub/Face.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code in Java/Chapter03/Recipe1/src/main/java/com/packtpub/Face.java -------------------------------------------------------------------------------- /Code in Java/Chapter03/Recipe1/src/main/java/com/packtpub/LocateMaleFemaleFaces.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code in Java/Chapter03/Recipe1/src/main/java/com/packtpub/LocateMaleFemaleFaces.java -------------------------------------------------------------------------------- /Code in Java/Chapter03/Recipe1/src/main/java/com/packtpub/RegisterUser.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code in Java/Chapter03/Recipe1/src/main/java/com/packtpub/RegisterUser.java -------------------------------------------------------------------------------- /Code in Java/Chapter03/Recipe1/src/main/java/com/packtpub/SendNotification.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code in Java/Chapter03/Recipe1/src/main/java/com/packtpub/SendNotification.java -------------------------------------------------------------------------------- /Code in Java/Chapter03/Recipe2/extensions.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code in Java/Chapter03/Recipe2/extensions.csproj -------------------------------------------------------------------------------- /Code in Java/Chapter03/Recipe2/host.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "2.0" 3 | } 4 | -------------------------------------------------------------------------------- /Code in Java/Chapter03/Recipe2/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code in Java/Chapter03/Recipe2/pom.xml -------------------------------------------------------------------------------- /Code in Java/Chapter03/Recipe2/src/main/java/com/packtpub/CreateProfilePictures.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code in Java/Chapter03/Recipe2/src/main/java/com/packtpub/CreateProfilePictures.java -------------------------------------------------------------------------------- /Code in Java/Chapter03/Recipe2/src/main/java/com/packtpub/Employee.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code in Java/Chapter03/Recipe2/src/main/java/com/packtpub/Employee.java -------------------------------------------------------------------------------- /Code in Java/Chapter03/Recipe2/src/main/java/com/packtpub/EmployeeInfo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code in Java/Chapter03/Recipe2/src/main/java/com/packtpub/EmployeeInfo.java -------------------------------------------------------------------------------- /Code in Java/Chapter03/Recipe2/src/main/java/com/packtpub/Face.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code in Java/Chapter03/Recipe2/src/main/java/com/packtpub/Face.java -------------------------------------------------------------------------------- /Code in Java/Chapter03/Recipe2/src/main/java/com/packtpub/LocateMaleFemaleFaces.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code in Java/Chapter03/Recipe2/src/main/java/com/packtpub/LocateMaleFemaleFaces.java -------------------------------------------------------------------------------- /Code in Java/Chapter03/Recipe2/src/main/java/com/packtpub/RegisterUser.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code in Java/Chapter03/Recipe2/src/main/java/com/packtpub/RegisterUser.java -------------------------------------------------------------------------------- /Code in Java/Chapter03/Recipe2/src/main/java/com/packtpub/SaveJSONToAzureSQLDatabase.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code in Java/Chapter03/Recipe2/src/main/java/com/packtpub/SaveJSONToAzureSQLDatabase.java -------------------------------------------------------------------------------- /Code in Java/Chapter03/Recipe2/src/main/java/com/packtpub/SendNotification.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code in Java/Chapter03/Recipe2/src/main/java/com/packtpub/SendNotification.java -------------------------------------------------------------------------------- /Code in Java/Chapter03/Recipe3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code in Java/Chapter03/Recipe3/README.md -------------------------------------------------------------------------------- /Code in Java/Chapter03/Recipe4/extensions.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code in Java/Chapter03/Recipe4/extensions.csproj -------------------------------------------------------------------------------- /Code in Java/Chapter03/Recipe4/host.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "2.0" 3 | } 4 | -------------------------------------------------------------------------------- /Code in Java/Chapter03/Recipe4/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code in Java/Chapter03/Recipe4/pom.xml -------------------------------------------------------------------------------- /Code in Java/Chapter03/Recipe4/src/main/java/com/packtpub/CreateProfilePictures.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code in Java/Chapter03/Recipe4/src/main/java/com/packtpub/CreateProfilePictures.java -------------------------------------------------------------------------------- /Code in Java/Chapter03/Recipe4/src/main/java/com/packtpub/Employee.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code in Java/Chapter03/Recipe4/src/main/java/com/packtpub/Employee.java -------------------------------------------------------------------------------- /Code in Java/Chapter03/Recipe4/src/main/java/com/packtpub/EmployeeInfo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code in Java/Chapter03/Recipe4/src/main/java/com/packtpub/EmployeeInfo.java -------------------------------------------------------------------------------- /Code in Java/Chapter03/Recipe4/src/main/java/com/packtpub/Face.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code in Java/Chapter03/Recipe4/src/main/java/com/packtpub/Face.java -------------------------------------------------------------------------------- /Code in Java/Chapter03/Recipe4/src/main/java/com/packtpub/LocateMaleFemaleFaces.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code in Java/Chapter03/Recipe4/src/main/java/com/packtpub/LocateMaleFemaleFaces.java -------------------------------------------------------------------------------- /Code in Java/Chapter03/Recipe4/src/main/java/com/packtpub/RegisterUser.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code in Java/Chapter03/Recipe4/src/main/java/com/packtpub/RegisterUser.java -------------------------------------------------------------------------------- /Code in Java/Chapter03/Recipe4/src/main/java/com/packtpub/SaveJSONToAzureSQLDatabase.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code in Java/Chapter03/Recipe4/src/main/java/com/packtpub/SaveJSONToAzureSQLDatabase.java -------------------------------------------------------------------------------- /Code in Java/Chapter03/Recipe4/src/main/java/com/packtpub/SendNotification.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code in Java/Chapter03/Recipe4/src/main/java/com/packtpub/SendNotification.java -------------------------------------------------------------------------------- /Code in Java/Chapter03/Recipe4/src/main/java/com/packtpub/TwitterMessage.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code in Java/Chapter03/Recipe4/src/main/java/com/packtpub/TwitterMessage.java -------------------------------------------------------------------------------- /Code in Java/Chapter03/Recipe4/src/main/java/com/packtpub/ValidateTwitterFollowerCount.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code in Java/Chapter03/Recipe4/src/main/java/com/packtpub/ValidateTwitterFollowerCount.java -------------------------------------------------------------------------------- /Code in Java/Chapter03/Recipe5/extensions.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code in Java/Chapter03/Recipe5/extensions.csproj -------------------------------------------------------------------------------- /Code in Java/Chapter03/Recipe5/host.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "2.0" 3 | } 4 | -------------------------------------------------------------------------------- /Code in Java/Chapter03/Recipe5/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code in Java/Chapter03/Recipe5/pom.xml -------------------------------------------------------------------------------- /Code in Java/Chapter03/Recipe5/src/main/java/com/packtpub/CookbookDataCollection.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code in Java/Chapter03/Recipe5/src/main/java/com/packtpub/CookbookDataCollection.java -------------------------------------------------------------------------------- /Code in Java/Chapter03/Recipe5/src/main/java/com/packtpub/CosmosDocument.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code in Java/Chapter03/Recipe5/src/main/java/com/packtpub/CosmosDocument.java -------------------------------------------------------------------------------- /Code in Java/Chapter03/Recipe5/src/main/java/com/packtpub/CreateProfilePictures.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code in Java/Chapter03/Recipe5/src/main/java/com/packtpub/CreateProfilePictures.java -------------------------------------------------------------------------------- /Code in Java/Chapter03/Recipe5/src/main/java/com/packtpub/Employee.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code in Java/Chapter03/Recipe5/src/main/java/com/packtpub/Employee.java -------------------------------------------------------------------------------- /Code in Java/Chapter03/Recipe5/src/main/java/com/packtpub/EmployeeInfo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code in Java/Chapter03/Recipe5/src/main/java/com/packtpub/EmployeeInfo.java -------------------------------------------------------------------------------- /Code in Java/Chapter03/Recipe5/src/main/java/com/packtpub/Face.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code in Java/Chapter03/Recipe5/src/main/java/com/packtpub/Face.java -------------------------------------------------------------------------------- /Code in Java/Chapter03/Recipe5/src/main/java/com/packtpub/LocateMaleFemaleFaces.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code in Java/Chapter03/Recipe5/src/main/java/com/packtpub/LocateMaleFemaleFaces.java -------------------------------------------------------------------------------- /Code in Java/Chapter03/Recipe5/src/main/java/com/packtpub/RegisterUser.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code in Java/Chapter03/Recipe5/src/main/java/com/packtpub/RegisterUser.java -------------------------------------------------------------------------------- /Code in Java/Chapter03/Recipe5/src/main/java/com/packtpub/SaveJSONToAzureSQLDatabase.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code in Java/Chapter03/Recipe5/src/main/java/com/packtpub/SaveJSONToAzureSQLDatabase.java -------------------------------------------------------------------------------- /Code in Java/Chapter03/Recipe5/src/main/java/com/packtpub/SendNotification.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code in Java/Chapter03/Recipe5/src/main/java/com/packtpub/SendNotification.java -------------------------------------------------------------------------------- /Code in Java/Chapter03/Recipe5/src/main/java/com/packtpub/TwitterMessage.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code in Java/Chapter03/Recipe5/src/main/java/com/packtpub/TwitterMessage.java -------------------------------------------------------------------------------- /Code in Java/Chapter03/Recipe5/src/main/java/com/packtpub/ValidateTwitterFollowerCount.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code in Java/Chapter03/Recipe5/src/main/java/com/packtpub/ValidateTwitterFollowerCount.java -------------------------------------------------------------------------------- /Code in Java/Chapter04/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code in Java/Chapter04/README.md -------------------------------------------------------------------------------- /Code in Java/Chapter05/Recipe1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code in Java/Chapter05/Recipe1/README.md -------------------------------------------------------------------------------- /Code in Java/Chapter05/Recipe2/README.md.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code in Java/Chapter05/Recipe2/README.md.txt -------------------------------------------------------------------------------- /Code in Java/Chapter05/Recipe3/extensions.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code in Java/Chapter05/Recipe3/extensions.csproj -------------------------------------------------------------------------------- /Code in Java/Chapter05/Recipe3/host.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "2.0" 3 | } 4 | -------------------------------------------------------------------------------- /Code in Java/Chapter05/Recipe3/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code in Java/Chapter05/Recipe3/pom.xml -------------------------------------------------------------------------------- /Code in Java/Chapter05/Recipe3/src/main/java/com/packtpub/CookbookDataCollection.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code in Java/Chapter05/Recipe3/src/main/java/com/packtpub/CookbookDataCollection.java -------------------------------------------------------------------------------- /Code in Java/Chapter05/Recipe3/src/main/java/com/packtpub/CosmosDocument.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code in Java/Chapter05/Recipe3/src/main/java/com/packtpub/CosmosDocument.java -------------------------------------------------------------------------------- /Code in Java/Chapter05/Recipe3/src/main/java/com/packtpub/CreateProfilePictures.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code in Java/Chapter05/Recipe3/src/main/java/com/packtpub/CreateProfilePictures.java -------------------------------------------------------------------------------- /Code in Java/Chapter05/Recipe3/src/main/java/com/packtpub/Employee.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code in Java/Chapter05/Recipe3/src/main/java/com/packtpub/Employee.java -------------------------------------------------------------------------------- /Code in Java/Chapter05/Recipe3/src/main/java/com/packtpub/EmployeeInfo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code in Java/Chapter05/Recipe3/src/main/java/com/packtpub/EmployeeInfo.java -------------------------------------------------------------------------------- /Code in Java/Chapter05/Recipe3/src/main/java/com/packtpub/Face.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code in Java/Chapter05/Recipe3/src/main/java/com/packtpub/Face.java -------------------------------------------------------------------------------- /Code in Java/Chapter05/Recipe3/src/main/java/com/packtpub/LoadTestHttpTrigger.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code in Java/Chapter05/Recipe3/src/main/java/com/packtpub/LoadTestHttpTrigger.java -------------------------------------------------------------------------------- /Code in Java/Chapter05/Recipe3/src/main/java/com/packtpub/LocateMaleFemaleFaces.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code in Java/Chapter05/Recipe3/src/main/java/com/packtpub/LocateMaleFemaleFaces.java -------------------------------------------------------------------------------- /Code in Java/Chapter05/Recipe3/src/main/java/com/packtpub/RegisterUser.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code in Java/Chapter05/Recipe3/src/main/java/com/packtpub/RegisterUser.java -------------------------------------------------------------------------------- /Code in Java/Chapter05/Recipe3/src/main/java/com/packtpub/SaveJSONToAzureSQLDatabase.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code in Java/Chapter05/Recipe3/src/main/java/com/packtpub/SaveJSONToAzureSQLDatabase.java -------------------------------------------------------------------------------- /Code in Java/Chapter05/Recipe3/src/main/java/com/packtpub/SendNotification.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code in Java/Chapter05/Recipe3/src/main/java/com/packtpub/SendNotification.java -------------------------------------------------------------------------------- /Code in Java/Chapter05/Recipe3/src/main/java/com/packtpub/TwitterMessage.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code in Java/Chapter05/Recipe3/src/main/java/com/packtpub/TwitterMessage.java -------------------------------------------------------------------------------- /Code in Java/Chapter05/Recipe3/src/main/java/com/packtpub/ValidateTwitterFollowerCount.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code in Java/Chapter05/Recipe3/src/main/java/com/packtpub/ValidateTwitterFollowerCount.java -------------------------------------------------------------------------------- /Code in Java/Chapter05/Recipe4/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code in Java/Chapter05/Recipe4/README.md -------------------------------------------------------------------------------- /Code in Java/Chapter05/Recipe5/README.md: -------------------------------------------------------------------------------- 1 | # Recipe 5 2 | No Java code is needed here -------------------------------------------------------------------------------- /Code in Java/Chapter05/Recipe6/extensions.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code in Java/Chapter05/Recipe6/extensions.csproj -------------------------------------------------------------------------------- /Code in Java/Chapter05/Recipe6/host.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "2.0" 3 | } 4 | -------------------------------------------------------------------------------- /Code in Java/Chapter05/Recipe6/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code in Java/Chapter05/Recipe6/pom.xml -------------------------------------------------------------------------------- /Code in Java/Chapter05/Recipe6/src/main/java/com/packtpub/CookbookDataCollection.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code in Java/Chapter05/Recipe6/src/main/java/com/packtpub/CookbookDataCollection.java -------------------------------------------------------------------------------- /Code in Java/Chapter05/Recipe6/src/main/java/com/packtpub/CosmosDocument.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code in Java/Chapter05/Recipe6/src/main/java/com/packtpub/CosmosDocument.java -------------------------------------------------------------------------------- /Code in Java/Chapter05/Recipe6/src/main/java/com/packtpub/CreateProfilePictures.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code in Java/Chapter05/Recipe6/src/main/java/com/packtpub/CreateProfilePictures.java -------------------------------------------------------------------------------- /Code in Java/Chapter05/Recipe6/src/main/java/com/packtpub/Employee.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code in Java/Chapter05/Recipe6/src/main/java/com/packtpub/Employee.java -------------------------------------------------------------------------------- /Code in Java/Chapter05/Recipe6/src/main/java/com/packtpub/EmployeeInfo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code in Java/Chapter05/Recipe6/src/main/java/com/packtpub/EmployeeInfo.java -------------------------------------------------------------------------------- /Code in Java/Chapter05/Recipe6/src/main/java/com/packtpub/Face.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code in Java/Chapter05/Recipe6/src/main/java/com/packtpub/Face.java -------------------------------------------------------------------------------- /Code in Java/Chapter05/Recipe6/src/main/java/com/packtpub/LoadTestHttpTrigger.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code in Java/Chapter05/Recipe6/src/main/java/com/packtpub/LoadTestHttpTrigger.java -------------------------------------------------------------------------------- /Code in Java/Chapter05/Recipe6/src/main/java/com/packtpub/LocateMaleFemaleFaces.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code in Java/Chapter05/Recipe6/src/main/java/com/packtpub/LocateMaleFemaleFaces.java -------------------------------------------------------------------------------- /Code in Java/Chapter05/Recipe6/src/main/java/com/packtpub/RegisterUser.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code in Java/Chapter05/Recipe6/src/main/java/com/packtpub/RegisterUser.java -------------------------------------------------------------------------------- /Code in Java/Chapter05/Recipe6/src/main/java/com/packtpub/SaveJSONToAzureSQLDatabase.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code in Java/Chapter05/Recipe6/src/main/java/com/packtpub/SaveJSONToAzureSQLDatabase.java -------------------------------------------------------------------------------- /Code in Java/Chapter05/Recipe6/src/main/java/com/packtpub/SendNotification.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code in Java/Chapter05/Recipe6/src/main/java/com/packtpub/SendNotification.java -------------------------------------------------------------------------------- /Code in Java/Chapter05/Recipe6/src/main/java/com/packtpub/TwitterMessage.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code in Java/Chapter05/Recipe6/src/main/java/com/packtpub/TwitterMessage.java -------------------------------------------------------------------------------- /Code in Java/Chapter05/Recipe6/src/main/java/com/packtpub/ValidateTwitterFollowerCount.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code in Java/Chapter05/Recipe6/src/main/java/com/packtpub/ValidateTwitterFollowerCount.java -------------------------------------------------------------------------------- /Code in Java/Chapter05/Recipe6/src/test/java/com/packtpub/HttpResponseMessageMock.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code in Java/Chapter05/Recipe6/src/test/java/com/packtpub/HttpResponseMessageMock.java -------------------------------------------------------------------------------- /Code in Java/Chapter05/Recipe6/src/test/java/com/packtpub/LoadTestHttpTriggerTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code in Java/Chapter05/Recipe6/src/test/java/com/packtpub/LoadTestHttpTriggerTest.java -------------------------------------------------------------------------------- /Code in Java/Chapter06/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code in Java/Chapter06/README.md -------------------------------------------------------------------------------- /Code in Java/Chapter07/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code in Java/Chapter07/README.md -------------------------------------------------------------------------------- /Code in Java/Chapter08/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code in Java/Chapter08/README.md -------------------------------------------------------------------------------- /Code in Java/Chapter09/Recipe01/extensions.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code in Java/Chapter09/Recipe01/extensions.csproj -------------------------------------------------------------------------------- /Code in Java/Chapter09/Recipe01/host.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "2.0" 3 | } 4 | -------------------------------------------------------------------------------- /Code in Java/Chapter09/Recipe01/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code in Java/Chapter09/Recipe01/pom.xml -------------------------------------------------------------------------------- /Code in Java/Chapter09/Recipe01/src/main/java/com/packtpub/BulkDeviceRegistration.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code in Java/Chapter09/Recipe01/src/main/java/com/packtpub/BulkDeviceRegistration.java -------------------------------------------------------------------------------- /Code in Java/Chapter09/Recipe01/src/main/java/com/packtpub/CookbookDataCollection.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code in Java/Chapter09/Recipe01/src/main/java/com/packtpub/CookbookDataCollection.java -------------------------------------------------------------------------------- /Code in Java/Chapter09/Recipe01/src/main/java/com/packtpub/CosmosDocument.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code in Java/Chapter09/Recipe01/src/main/java/com/packtpub/CosmosDocument.java -------------------------------------------------------------------------------- /Code in Java/Chapter09/Recipe01/src/main/java/com/packtpub/CreateProfilePictures.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code in Java/Chapter09/Recipe01/src/main/java/com/packtpub/CreateProfilePictures.java -------------------------------------------------------------------------------- /Code in Java/Chapter09/Recipe01/src/main/java/com/packtpub/Device.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code in Java/Chapter09/Recipe01/src/main/java/com/packtpub/Device.java -------------------------------------------------------------------------------- /Code in Java/Chapter09/Recipe01/src/main/java/com/packtpub/Devices.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code in Java/Chapter09/Recipe01/src/main/java/com/packtpub/Devices.java -------------------------------------------------------------------------------- /Code in Java/Chapter09/Recipe01/src/main/java/com/packtpub/Employee.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code in Java/Chapter09/Recipe01/src/main/java/com/packtpub/Employee.java -------------------------------------------------------------------------------- /Code in Java/Chapter09/Recipe01/src/main/java/com/packtpub/EmployeeInfo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code in Java/Chapter09/Recipe01/src/main/java/com/packtpub/EmployeeInfo.java -------------------------------------------------------------------------------- /Code in Java/Chapter09/Recipe01/src/main/java/com/packtpub/Face.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code in Java/Chapter09/Recipe01/src/main/java/com/packtpub/Face.java -------------------------------------------------------------------------------- /Code in Java/Chapter09/Recipe01/src/main/java/com/packtpub/LoadTestHttpTrigger.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code in Java/Chapter09/Recipe01/src/main/java/com/packtpub/LoadTestHttpTrigger.java -------------------------------------------------------------------------------- /Code in Java/Chapter09/Recipe01/src/main/java/com/packtpub/LocateMaleFemaleFaces.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code in Java/Chapter09/Recipe01/src/main/java/com/packtpub/LocateMaleFemaleFaces.java -------------------------------------------------------------------------------- /Code in Java/Chapter09/Recipe01/src/main/java/com/packtpub/RegisterUser.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code in Java/Chapter09/Recipe01/src/main/java/com/packtpub/RegisterUser.java -------------------------------------------------------------------------------- /Code in Java/Chapter09/Recipe01/src/main/java/com/packtpub/SaveJSONToAzureSQLDatabase.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code in Java/Chapter09/Recipe01/src/main/java/com/packtpub/SaveJSONToAzureSQLDatabase.java -------------------------------------------------------------------------------- /Code in Java/Chapter09/Recipe01/src/main/java/com/packtpub/SendNotification.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code in Java/Chapter09/Recipe01/src/main/java/com/packtpub/SendNotification.java -------------------------------------------------------------------------------- /Code in Java/Chapter09/Recipe01/src/main/java/com/packtpub/TwitterMessage.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code in Java/Chapter09/Recipe01/src/main/java/com/packtpub/TwitterMessage.java -------------------------------------------------------------------------------- /Code in Java/Chapter09/Recipe01/src/main/java/com/packtpub/ValidateTwitterFollowerCount.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code in Java/Chapter09/Recipe01/src/main/java/com/packtpub/ValidateTwitterFollowerCount.java -------------------------------------------------------------------------------- /Code in Java/Chapter09/Recipe01/src/test/java/com/packtpub/HttpResponseMessageMock.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code in Java/Chapter09/Recipe01/src/test/java/com/packtpub/HttpResponseMessageMock.java -------------------------------------------------------------------------------- /Code in Java/Chapter09/Recipe01/src/test/java/com/packtpub/LoadTestHttpTriggerTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code in Java/Chapter09/Recipe01/src/test/java/com/packtpub/LoadTestHttpTriggerTest.java -------------------------------------------------------------------------------- /Code in Java/Chapter09/Recipe02/AzureFunction/extensions.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code in Java/Chapter09/Recipe02/AzureFunction/extensions.csproj -------------------------------------------------------------------------------- /Code in Java/Chapter09/Recipe02/AzureFunction/host.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "2.0" 3 | } 4 | -------------------------------------------------------------------------------- /Code in Java/Chapter09/Recipe02/AzureFunction/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code in Java/Chapter09/Recipe02/AzureFunction/pom.xml -------------------------------------------------------------------------------- /Code in Java/Chapter09/Recipe02/AzureFunction/src/main/java/com/packtpub/CosmosDocument.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code in Java/Chapter09/Recipe02/AzureFunction/src/main/java/com/packtpub/CosmosDocument.java -------------------------------------------------------------------------------- /Code in Java/Chapter09/Recipe02/AzureFunction/src/main/java/com/packtpub/Device.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code in Java/Chapter09/Recipe02/AzureFunction/src/main/java/com/packtpub/Device.java -------------------------------------------------------------------------------- /Code in Java/Chapter09/Recipe02/AzureFunction/src/main/java/com/packtpub/Devices.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code in Java/Chapter09/Recipe02/AzureFunction/src/main/java/com/packtpub/Devices.java -------------------------------------------------------------------------------- /Code in Java/Chapter09/Recipe02/AzureFunction/src/main/java/com/packtpub/Employee.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code in Java/Chapter09/Recipe02/AzureFunction/src/main/java/com/packtpub/Employee.java -------------------------------------------------------------------------------- /Code in Java/Chapter09/Recipe02/AzureFunction/src/main/java/com/packtpub/EmployeeInfo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code in Java/Chapter09/Recipe02/AzureFunction/src/main/java/com/packtpub/EmployeeInfo.java -------------------------------------------------------------------------------- /Code in Java/Chapter09/Recipe02/AzureFunction/src/main/java/com/packtpub/Face.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code in Java/Chapter09/Recipe02/AzureFunction/src/main/java/com/packtpub/Face.java -------------------------------------------------------------------------------- /Code in Java/Chapter09/Recipe02/AzureFunction/src/main/java/com/packtpub/LoadTestHttpTrigger.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code in Java/Chapter09/Recipe02/AzureFunction/src/main/java/com/packtpub/LoadTestHttpTrigger.java -------------------------------------------------------------------------------- /Code in Java/Chapter09/Recipe02/AzureFunction/src/main/java/com/packtpub/ProcessData.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code in Java/Chapter09/Recipe02/AzureFunction/src/main/java/com/packtpub/ProcessData.java -------------------------------------------------------------------------------- /Code in Java/Chapter09/Recipe02/AzureFunction/src/main/java/com/packtpub/RegisterUser.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code in Java/Chapter09/Recipe02/AzureFunction/src/main/java/com/packtpub/RegisterUser.java -------------------------------------------------------------------------------- /Code in Java/Chapter09/Recipe02/AzureFunction/src/main/java/com/packtpub/SendNotification.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code in Java/Chapter09/Recipe02/AzureFunction/src/main/java/com/packtpub/SendNotification.java -------------------------------------------------------------------------------- /Code in Java/Chapter09/Recipe02/AzureFunction/src/main/java/com/packtpub/TwitterMessage.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code in Java/Chapter09/Recipe02/AzureFunction/src/main/java/com/packtpub/TwitterMessage.java -------------------------------------------------------------------------------- /Code in Java/Chapter09/Recipe02/ConsoleApp/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code in Java/Chapter09/Recipe02/ConsoleApp/pom.xml -------------------------------------------------------------------------------- /Code in Java/Chapter09/Recipe02/ConsoleApp/src/main/java/com/packtpub/CreateQueueMessages.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code in Java/Chapter09/Recipe02/ConsoleApp/src/main/java/com/packtpub/CreateQueueMessages.java -------------------------------------------------------------------------------- /Code in Java/Chapter09/Recipe03/AzureFunction/extensions.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code in Java/Chapter09/Recipe03/AzureFunction/extensions.csproj -------------------------------------------------------------------------------- /Code in Java/Chapter09/Recipe03/AzureFunction/host.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "2.0" 3 | } 4 | -------------------------------------------------------------------------------- /Code in Java/Chapter09/Recipe03/AzureFunction/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code in Java/Chapter09/Recipe03/AzureFunction/pom.xml -------------------------------------------------------------------------------- /Code in Java/Chapter09/Recipe03/AzureFunction/src/main/java/com/packtpub/CosmosDocument.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code in Java/Chapter09/Recipe03/AzureFunction/src/main/java/com/packtpub/CosmosDocument.java -------------------------------------------------------------------------------- /Code in Java/Chapter09/Recipe03/AzureFunction/src/main/java/com/packtpub/Device.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code in Java/Chapter09/Recipe03/AzureFunction/src/main/java/com/packtpub/Device.java -------------------------------------------------------------------------------- /Code in Java/Chapter09/Recipe03/AzureFunction/src/main/java/com/packtpub/Devices.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code in Java/Chapter09/Recipe03/AzureFunction/src/main/java/com/packtpub/Devices.java -------------------------------------------------------------------------------- /Code in Java/Chapter09/Recipe03/AzureFunction/src/main/java/com/packtpub/Employee.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code in Java/Chapter09/Recipe03/AzureFunction/src/main/java/com/packtpub/Employee.java -------------------------------------------------------------------------------- /Code in Java/Chapter09/Recipe03/AzureFunction/src/main/java/com/packtpub/EmployeeInfo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code in Java/Chapter09/Recipe03/AzureFunction/src/main/java/com/packtpub/EmployeeInfo.java -------------------------------------------------------------------------------- /Code in Java/Chapter09/Recipe03/AzureFunction/src/main/java/com/packtpub/EventHubTriggerJava.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code in Java/Chapter09/Recipe03/AzureFunction/src/main/java/com/packtpub/EventHubTriggerJava.java -------------------------------------------------------------------------------- /Code in Java/Chapter09/Recipe03/AzureFunction/src/main/java/com/packtpub/Face.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code in Java/Chapter09/Recipe03/AzureFunction/src/main/java/com/packtpub/Face.java -------------------------------------------------------------------------------- /Code in Java/Chapter09/Recipe03/AzureFunction/src/main/java/com/packtpub/LoadTestHttpTrigger.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code in Java/Chapter09/Recipe03/AzureFunction/src/main/java/com/packtpub/LoadTestHttpTrigger.java -------------------------------------------------------------------------------- /Code in Java/Chapter09/Recipe03/AzureFunction/src/main/java/com/packtpub/ProcessData.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code in Java/Chapter09/Recipe03/AzureFunction/src/main/java/com/packtpub/ProcessData.java -------------------------------------------------------------------------------- /Code in Java/Chapter09/Recipe03/AzureFunction/src/main/java/com/packtpub/RegisterUser.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code in Java/Chapter09/Recipe03/AzureFunction/src/main/java/com/packtpub/RegisterUser.java -------------------------------------------------------------------------------- /Code in Java/Chapter09/Recipe03/AzureFunction/src/main/java/com/packtpub/SendNotification.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code in Java/Chapter09/Recipe03/AzureFunction/src/main/java/com/packtpub/SendNotification.java -------------------------------------------------------------------------------- /Code in Java/Chapter09/Recipe03/AzureFunction/src/main/java/com/packtpub/TwitterMessage.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code in Java/Chapter09/Recipe03/AzureFunction/src/main/java/com/packtpub/TwitterMessage.java -------------------------------------------------------------------------------- /Code in Java/Chapter09/Recipe03/ConsoleApp/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code in Java/Chapter09/Recipe03/ConsoleApp/pom.xml -------------------------------------------------------------------------------- /Code in Java/Chapter09/Recipe03/ConsoleApp/src/main/java/com/packtpub/CreateQueueMessages.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code in Java/Chapter09/Recipe03/ConsoleApp/src/main/java/com/packtpub/CreateQueueMessages.java -------------------------------------------------------------------------------- /Code in Java/Chapter09/Recipe03/ConsoleApp/src/main/java/com/packtpub/EventHubApp.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code in Java/Chapter09/Recipe03/ConsoleApp/src/main/java/com/packtpub/EventHubApp.java -------------------------------------------------------------------------------- /Code in Java/Chapter09/Recipe04/extensions.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code in Java/Chapter09/Recipe04/extensions.csproj -------------------------------------------------------------------------------- /Code in Java/Chapter09/Recipe04/host.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "2.0" 3 | } 4 | -------------------------------------------------------------------------------- /Code in Java/Chapter09/Recipe04/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code in Java/Chapter09/Recipe04/pom.xml -------------------------------------------------------------------------------- /Code in Java/Chapter09/Recipe04/src/main/java/com/packtpub/BulkDeviceRegistration.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code in Java/Chapter09/Recipe04/src/main/java/com/packtpub/BulkDeviceRegistration.java -------------------------------------------------------------------------------- /Code in Java/Chapter09/Recipe04/src/main/java/com/packtpub/CookbookDataCollection.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code in Java/Chapter09/Recipe04/src/main/java/com/packtpub/CookbookDataCollection.java -------------------------------------------------------------------------------- /Code in Java/Chapter09/Recipe04/src/main/java/com/packtpub/CosmosDocument.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code in Java/Chapter09/Recipe04/src/main/java/com/packtpub/CosmosDocument.java -------------------------------------------------------------------------------- /Code in Java/Chapter09/Recipe04/src/main/java/com/packtpub/CreateProfilePictures.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code in Java/Chapter09/Recipe04/src/main/java/com/packtpub/CreateProfilePictures.java -------------------------------------------------------------------------------- /Code in Java/Chapter09/Recipe04/src/main/java/com/packtpub/Device.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code in Java/Chapter09/Recipe04/src/main/java/com/packtpub/Device.java -------------------------------------------------------------------------------- /Code in Java/Chapter09/Recipe04/src/main/java/com/packtpub/Devices.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code in Java/Chapter09/Recipe04/src/main/java/com/packtpub/Devices.java -------------------------------------------------------------------------------- /Code in Java/Chapter09/Recipe04/src/main/java/com/packtpub/Employee.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code in Java/Chapter09/Recipe04/src/main/java/com/packtpub/Employee.java -------------------------------------------------------------------------------- /Code in Java/Chapter09/Recipe04/src/main/java/com/packtpub/EmployeeInfo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code in Java/Chapter09/Recipe04/src/main/java/com/packtpub/EmployeeInfo.java -------------------------------------------------------------------------------- /Code in Java/Chapter09/Recipe04/src/main/java/com/packtpub/EventHubTriggerJava.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code in Java/Chapter09/Recipe04/src/main/java/com/packtpub/EventHubTriggerJava.java -------------------------------------------------------------------------------- /Code in Java/Chapter09/Recipe04/src/main/java/com/packtpub/Face.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code in Java/Chapter09/Recipe04/src/main/java/com/packtpub/Face.java -------------------------------------------------------------------------------- /Code in Java/Chapter09/Recipe04/src/main/java/com/packtpub/HttpAlive.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code in Java/Chapter09/Recipe04/src/main/java/com/packtpub/HttpAlive.java -------------------------------------------------------------------------------- /Code in Java/Chapter09/Recipe04/src/main/java/com/packtpub/LoadTestHttpTrigger.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code in Java/Chapter09/Recipe04/src/main/java/com/packtpub/LoadTestHttpTrigger.java -------------------------------------------------------------------------------- /Code in Java/Chapter09/Recipe04/src/main/java/com/packtpub/LocateMaleFemaleFaces.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code in Java/Chapter09/Recipe04/src/main/java/com/packtpub/LocateMaleFemaleFaces.java -------------------------------------------------------------------------------- /Code in Java/Chapter09/Recipe04/src/main/java/com/packtpub/ProcessData.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code in Java/Chapter09/Recipe04/src/main/java/com/packtpub/ProcessData.java -------------------------------------------------------------------------------- /Code in Java/Chapter09/Recipe04/src/main/java/com/packtpub/RegisterUser.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code in Java/Chapter09/Recipe04/src/main/java/com/packtpub/RegisterUser.java -------------------------------------------------------------------------------- /Code in Java/Chapter09/Recipe04/src/main/java/com/packtpub/SaveJSONToAzureSQLDatabase.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code in Java/Chapter09/Recipe04/src/main/java/com/packtpub/SaveJSONToAzureSQLDatabase.java -------------------------------------------------------------------------------- /Code in Java/Chapter09/Recipe04/src/main/java/com/packtpub/SendNotification.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code in Java/Chapter09/Recipe04/src/main/java/com/packtpub/SendNotification.java -------------------------------------------------------------------------------- /Code in Java/Chapter09/Recipe04/src/main/java/com/packtpub/TimerTriggerJava.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code in Java/Chapter09/Recipe04/src/main/java/com/packtpub/TimerTriggerJava.java -------------------------------------------------------------------------------- /Code in Java/Chapter09/Recipe04/src/main/java/com/packtpub/TwitterMessage.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code in Java/Chapter09/Recipe04/src/main/java/com/packtpub/TwitterMessage.java -------------------------------------------------------------------------------- /Code in Java/Chapter09/Recipe04/src/main/java/com/packtpub/ValidateTwitterFollowerCount.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code in Java/Chapter09/Recipe04/src/main/java/com/packtpub/ValidateTwitterFollowerCount.java -------------------------------------------------------------------------------- /Code in Java/Chapter09/Recipe04/src/test/java/com/packtpub/HttpResponseMessageMock.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code in Java/Chapter09/Recipe04/src/test/java/com/packtpub/HttpResponseMessageMock.java -------------------------------------------------------------------------------- /Code in Java/Chapter09/Recipe04/src/test/java/com/packtpub/LoadTestHttpTriggerTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code in Java/Chapter09/Recipe04/src/test/java/com/packtpub/LoadTestHttpTriggerTest.java -------------------------------------------------------------------------------- /Code in Java/Chapter09/Recipe05/extensions.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code in Java/Chapter09/Recipe05/extensions.csproj -------------------------------------------------------------------------------- /Code in Java/Chapter09/Recipe05/host.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "2.0" 3 | } 4 | -------------------------------------------------------------------------------- /Code in Java/Chapter09/Recipe05/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code in Java/Chapter09/Recipe05/pom.xml -------------------------------------------------------------------------------- /Code in Java/Chapter09/Recipe05/src/main/java/com/packtpub/BulkDeviceRegistration.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code in Java/Chapter09/Recipe05/src/main/java/com/packtpub/BulkDeviceRegistration.java -------------------------------------------------------------------------------- /Code in Java/Chapter09/Recipe05/src/main/java/com/packtpub/CookbookDataCollection.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code in Java/Chapter09/Recipe05/src/main/java/com/packtpub/CookbookDataCollection.java -------------------------------------------------------------------------------- /Code in Java/Chapter09/Recipe05/src/main/java/com/packtpub/CosmosDocument.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code in Java/Chapter09/Recipe05/src/main/java/com/packtpub/CosmosDocument.java -------------------------------------------------------------------------------- /Code in Java/Chapter09/Recipe05/src/main/java/com/packtpub/CreateProfilePictures.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code in Java/Chapter09/Recipe05/src/main/java/com/packtpub/CreateProfilePictures.java -------------------------------------------------------------------------------- /Code in Java/Chapter09/Recipe05/src/main/java/com/packtpub/Device.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code in Java/Chapter09/Recipe05/src/main/java/com/packtpub/Device.java -------------------------------------------------------------------------------- /Code in Java/Chapter09/Recipe05/src/main/java/com/packtpub/Devices.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code in Java/Chapter09/Recipe05/src/main/java/com/packtpub/Devices.java -------------------------------------------------------------------------------- /Code in Java/Chapter09/Recipe05/src/main/java/com/packtpub/Employee.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code in Java/Chapter09/Recipe05/src/main/java/com/packtpub/Employee.java -------------------------------------------------------------------------------- /Code in Java/Chapter09/Recipe05/src/main/java/com/packtpub/EmployeeInfo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code in Java/Chapter09/Recipe05/src/main/java/com/packtpub/EmployeeInfo.java -------------------------------------------------------------------------------- /Code in Java/Chapter09/Recipe05/src/main/java/com/packtpub/EventHubTriggerJava.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code in Java/Chapter09/Recipe05/src/main/java/com/packtpub/EventHubTriggerJava.java -------------------------------------------------------------------------------- /Code in Java/Chapter09/Recipe05/src/main/java/com/packtpub/Face.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code in Java/Chapter09/Recipe05/src/main/java/com/packtpub/Face.java -------------------------------------------------------------------------------- /Code in Java/Chapter09/Recipe05/src/main/java/com/packtpub/HttpAlive.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code in Java/Chapter09/Recipe05/src/main/java/com/packtpub/HttpAlive.java -------------------------------------------------------------------------------- /Code in Java/Chapter09/Recipe05/src/main/java/com/packtpub/HttpSecured.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code in Java/Chapter09/Recipe05/src/main/java/com/packtpub/HttpSecured.java -------------------------------------------------------------------------------- /Code in Java/Chapter09/Recipe05/src/main/java/com/packtpub/LoadTestHttpTrigger.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code in Java/Chapter09/Recipe05/src/main/java/com/packtpub/LoadTestHttpTrigger.java -------------------------------------------------------------------------------- /Code in Java/Chapter09/Recipe05/src/main/java/com/packtpub/LocateMaleFemaleFaces.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code in Java/Chapter09/Recipe05/src/main/java/com/packtpub/LocateMaleFemaleFaces.java -------------------------------------------------------------------------------- /Code in Java/Chapter09/Recipe05/src/main/java/com/packtpub/ProcessData.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code in Java/Chapter09/Recipe05/src/main/java/com/packtpub/ProcessData.java -------------------------------------------------------------------------------- /Code in Java/Chapter09/Recipe05/src/main/java/com/packtpub/RegisterUser.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code in Java/Chapter09/Recipe05/src/main/java/com/packtpub/RegisterUser.java -------------------------------------------------------------------------------- /Code in Java/Chapter09/Recipe05/src/main/java/com/packtpub/SaveJSONToAzureSQLDatabase.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code in Java/Chapter09/Recipe05/src/main/java/com/packtpub/SaveJSONToAzureSQLDatabase.java -------------------------------------------------------------------------------- /Code in Java/Chapter09/Recipe05/src/main/java/com/packtpub/SendNotification.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code in Java/Chapter09/Recipe05/src/main/java/com/packtpub/SendNotification.java -------------------------------------------------------------------------------- /Code in Java/Chapter09/Recipe05/src/main/java/com/packtpub/TimerTriggerJava.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code in Java/Chapter09/Recipe05/src/main/java/com/packtpub/TimerTriggerJava.java -------------------------------------------------------------------------------- /Code in Java/Chapter09/Recipe05/src/main/java/com/packtpub/TwitterMessage.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code in Java/Chapter09/Recipe05/src/main/java/com/packtpub/TwitterMessage.java -------------------------------------------------------------------------------- /Code in Java/Chapter09/Recipe05/src/main/java/com/packtpub/ValidateTwitterFollowerCount.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code in Java/Chapter09/Recipe05/src/main/java/com/packtpub/ValidateTwitterFollowerCount.java -------------------------------------------------------------------------------- /Code in Java/Chapter09/Recipe05/src/test/java/com/packtpub/HttpResponseMessageMock.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code in Java/Chapter09/Recipe05/src/test/java/com/packtpub/HttpResponseMessageMock.java -------------------------------------------------------------------------------- /Code in Java/Chapter09/Recipe05/src/test/java/com/packtpub/LoadTestHttpTriggerTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code in Java/Chapter09/Recipe05/src/test/java/com/packtpub/LoadTestHttpTriggerTest.java -------------------------------------------------------------------------------- /Code in Java/Chapter09/Recipe06/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code in Java/Chapter09/Recipe06/README.md -------------------------------------------------------------------------------- /Code in Java/Chapter09/Recipe07/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code in Java/Chapter09/Recipe07/README.md -------------------------------------------------------------------------------- /Code in Java/Chapter09/Recipe08/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code in Java/Chapter09/Recipe08/README.md -------------------------------------------------------------------------------- /Code in Java/Chapter09/Recipe09/extensions.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code in Java/Chapter09/Recipe09/extensions.csproj -------------------------------------------------------------------------------- /Code in Java/Chapter09/Recipe09/host.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "2.0" 3 | } 4 | -------------------------------------------------------------------------------- /Code in Java/Chapter09/Recipe09/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code in Java/Chapter09/Recipe09/pom.xml -------------------------------------------------------------------------------- /Code in Java/Chapter09/Recipe09/src/main/java/com/packtpub/BulkDeviceRegistration.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code in Java/Chapter09/Recipe09/src/main/java/com/packtpub/BulkDeviceRegistration.java -------------------------------------------------------------------------------- /Code in Java/Chapter09/Recipe09/src/main/java/com/packtpub/CookbookDataCollection.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code in Java/Chapter09/Recipe09/src/main/java/com/packtpub/CookbookDataCollection.java -------------------------------------------------------------------------------- /Code in Java/Chapter09/Recipe09/src/main/java/com/packtpub/CosmosDocument.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code in Java/Chapter09/Recipe09/src/main/java/com/packtpub/CosmosDocument.java -------------------------------------------------------------------------------- /Code in Java/Chapter09/Recipe09/src/main/java/com/packtpub/CreateProfilePictures.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code in Java/Chapter09/Recipe09/src/main/java/com/packtpub/CreateProfilePictures.java -------------------------------------------------------------------------------- /Code in Java/Chapter09/Recipe09/src/main/java/com/packtpub/Device.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code in Java/Chapter09/Recipe09/src/main/java/com/packtpub/Device.java -------------------------------------------------------------------------------- /Code in Java/Chapter09/Recipe09/src/main/java/com/packtpub/Devices.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code in Java/Chapter09/Recipe09/src/main/java/com/packtpub/Devices.java -------------------------------------------------------------------------------- /Code in Java/Chapter09/Recipe09/src/main/java/com/packtpub/Employee.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code in Java/Chapter09/Recipe09/src/main/java/com/packtpub/Employee.java -------------------------------------------------------------------------------- /Code in Java/Chapter09/Recipe09/src/main/java/com/packtpub/EmployeeInfo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code in Java/Chapter09/Recipe09/src/main/java/com/packtpub/EmployeeInfo.java -------------------------------------------------------------------------------- /Code in Java/Chapter09/Recipe09/src/main/java/com/packtpub/EventHubTriggerJava.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code in Java/Chapter09/Recipe09/src/main/java/com/packtpub/EventHubTriggerJava.java -------------------------------------------------------------------------------- /Code in Java/Chapter09/Recipe09/src/main/java/com/packtpub/Face.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code in Java/Chapter09/Recipe09/src/main/java/com/packtpub/Face.java -------------------------------------------------------------------------------- /Code in Java/Chapter09/Recipe09/src/main/java/com/packtpub/HttpAlive.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code in Java/Chapter09/Recipe09/src/main/java/com/packtpub/HttpAlive.java -------------------------------------------------------------------------------- /Code in Java/Chapter09/Recipe09/src/main/java/com/packtpub/HttpSecured.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code in Java/Chapter09/Recipe09/src/main/java/com/packtpub/HttpSecured.java -------------------------------------------------------------------------------- /Code in Java/Chapter09/Recipe09/src/main/java/com/packtpub/LoadTestHttpTrigger.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code in Java/Chapter09/Recipe09/src/main/java/com/packtpub/LoadTestHttpTrigger.java -------------------------------------------------------------------------------- /Code in Java/Chapter09/Recipe09/src/main/java/com/packtpub/LocateMaleFemaleFaces.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code in Java/Chapter09/Recipe09/src/main/java/com/packtpub/LocateMaleFemaleFaces.java -------------------------------------------------------------------------------- /Code in Java/Chapter09/Recipe09/src/main/java/com/packtpub/ProcessData.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code in Java/Chapter09/Recipe09/src/main/java/com/packtpub/ProcessData.java -------------------------------------------------------------------------------- /Code in Java/Chapter09/Recipe09/src/main/java/com/packtpub/RegisterUser.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code in Java/Chapter09/Recipe09/src/main/java/com/packtpub/RegisterUser.java -------------------------------------------------------------------------------- /Code in Java/Chapter09/Recipe09/src/main/java/com/packtpub/SaveJSONToAzureSQLDatabase.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code in Java/Chapter09/Recipe09/src/main/java/com/packtpub/SaveJSONToAzureSQLDatabase.java -------------------------------------------------------------------------------- /Code in Java/Chapter09/Recipe09/src/main/java/com/packtpub/SendNotification.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code in Java/Chapter09/Recipe09/src/main/java/com/packtpub/SendNotification.java -------------------------------------------------------------------------------- /Code in Java/Chapter09/Recipe09/src/main/java/com/packtpub/TimerTriggerJava.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code in Java/Chapter09/Recipe09/src/main/java/com/packtpub/TimerTriggerJava.java -------------------------------------------------------------------------------- /Code in Java/Chapter09/Recipe09/src/main/java/com/packtpub/TwitterMessage.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code in Java/Chapter09/Recipe09/src/main/java/com/packtpub/TwitterMessage.java -------------------------------------------------------------------------------- /Code in Java/Chapter09/Recipe09/src/main/java/com/packtpub/ValidateTwitterFollowerCount.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code in Java/Chapter09/Recipe09/src/main/java/com/packtpub/ValidateTwitterFollowerCount.java -------------------------------------------------------------------------------- /Code in Java/Chapter09/Recipe09/src/test/java/com/packtpub/HttpResponseMessageMock.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code in Java/Chapter09/Recipe09/src/test/java/com/packtpub/HttpResponseMessageMock.java -------------------------------------------------------------------------------- /Code in Java/Chapter09/Recipe09/src/test/java/com/packtpub/LoadTestHttpTriggerTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code in Java/Chapter09/Recipe09/src/test/java/com/packtpub/LoadTestHttpTriggerTest.java -------------------------------------------------------------------------------- /Code in Java/Chapter09/Recipe10/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code in Java/Chapter09/Recipe10/README.md -------------------------------------------------------------------------------- /Code in Java/Chapter09/Recipe11/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code in Java/Chapter09/Recipe11/README.md -------------------------------------------------------------------------------- /Code in Java/Chapter10/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code in Java/Chapter10/README.md -------------------------------------------------------------------------------- /Code in Java/Chapter11/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code in Java/Chapter11/README.md -------------------------------------------------------------------------------- /Code in Java/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/Code in Java/README.md -------------------------------------------------------------------------------- /EPUB/Azure_Serverless_Computing_Cookbook__Second_Edition.epub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/EPUB/Azure_Serverless_Computing_Cookbook__Second_Edition.epub -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/LICENSE -------------------------------------------------------------------------------- /MOBI/Azure_Serverless_Computing_Cookbook__Second_Edition.mobi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/MOBI/Azure_Serverless_Computing_Cookbook__Second_Edition.mobi -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Second-Edition/HEAD/README.md --------------------------------------------------------------------------------