├── .github └── policies │ └── resourceManagement.yml ├── .gitignore ├── .vscode └── launch.json ├── Build ├── Localize │ └── LocProject.json ├── PackageFiles │ ├── Dotnet_precompiled │ │ ├── ItemTemplates-Isolated_NetCore_v4.x.nuspec │ │ ├── ItemTemplates-Isolated_NetFx_v4.x.nuspec │ │ ├── ItemTemplates-Isolated_v3.x.nuspec │ │ ├── ItemTemplates-Isolated_v4.x.nuspec │ │ ├── ItemTemplates_v3.x.nuspec │ │ ├── ItemTemplates_v4.x.nuspec │ │ ├── ProjectTemplates-Isolated_v3.x.nuspec │ │ ├── ProjectTemplates-Isolated_v4.x.nuspec │ │ ├── ProjectTemplates_v3.x.nuspec │ │ └── ProjectTemplates_v4.x.nuspec │ └── ExtensionBundle │ │ ├── ExtensionBundlePreviewTemplates-3.x.nuspec │ │ ├── ExtensionBundlePreviewTemplates-4.x.nuspec │ │ ├── ExtensionBundleTemplates-1.x.nuspec │ │ ├── ExtensionBundleTemplates-2.x.nuspec │ │ ├── ExtensionBundleTemplates-3.x.nuspec │ │ └── ExtensionBundleTemplates-4.x.nuspec ├── gulp-utils │ └── gulp-resx-js │ │ └── index.js ├── gulpfile.js ├── package-lock.json └── package.json ├── CODEOWNERS ├── Docs ├── Actions │ ├── GetTemplateFileContent.md │ ├── README.md │ ├── ReplaceTokensInText.md │ ├── ShowMarkdownPreview.md │ ├── WriteToFile.md │ ├── actiontemplate.md │ └── appendToFile.md ├── Schema │ ├── action-schemas.json │ └── template-schema.json ├── conditionals.md └── exploded_schema.jsonc ├── Functions.Templates ├── Bindings │ ├── bindings-bundle-v4.json │ ├── bindings.json │ └── userPrompts.json ├── Documentation │ ├── ExcelIn.md │ ├── ExcelOut.md │ ├── GraphWebhookIn.md │ ├── GraphWebhookOut.md │ ├── GraphWebhookTrigger.md │ ├── OneDriveIn.md │ ├── OneDriveOut.md │ ├── OutlookOut.md │ ├── Token.md │ ├── activityTrigger.md │ ├── apiHubFileIn.md │ ├── apiHubFileOut.md │ ├── apiHubFileTrigger.md │ ├── apiHubTable.md │ ├── apiHubTableOut.md │ ├── authenticationEventsTrigger.md │ ├── blobIn.md │ ├── blobOut.md │ ├── blobTrigger.md │ ├── botOut.md │ ├── cdsIn.md │ ├── cosmosDBTrigger.md │ ├── documentDBIn.md │ ├── documentDBOut.md │ ├── entityTrigger.md │ ├── eventGridTrigger.md │ ├── eventHubOut.md │ ├── eventHubTrigger.md │ ├── httpOut.md │ ├── httpTrigger.md │ ├── ioTHubTrigger.md │ ├── kafkaOut.md │ ├── kafkaTrigger.md │ ├── manualTrigger.md │ ├── mobileTableIn.md │ ├── mobileTableOut.md │ ├── mysqlIn.md │ ├── mysqlOut.md │ ├── notificationHubOut.md │ ├── orchestrationClientIn.md │ ├── orchestrationTrigger.md │ ├── queueOut.md │ ├── queueTrigger.md │ ├── rabbitMQTrigger.md │ ├── sendGridOut.md │ ├── serviceBusOut.md │ ├── serviceBusTrigger.md │ ├── signalR.md │ ├── signalRConnectionInfo.md │ ├── sqlIn.md │ ├── sqlOut.md │ ├── sqlTrigger.md │ ├── tableIn.md │ ├── tableOut.md │ ├── timerTrigger.md │ └── twilioSmsOut.md ├── ProjectTemplate_v3.x │ ├── CSharp-Isolated │ │ ├── .template.config │ │ │ └── template.json │ │ ├── Company.FunctionApp.csproj │ │ ├── Program.cs │ │ ├── Properties │ │ │ └── launchSettings.json │ │ ├── _gitignore │ │ ├── host.json │ │ └── local.settings.json │ ├── CSharp │ │ ├── .template.config │ │ │ ├── dotnetcli.host.json │ │ │ └── template.json │ │ ├── Company.FunctionApp.csproj │ │ ├── Properties │ │ │ └── launchSettings.json │ │ ├── _gitignore │ │ ├── host.json │ │ └── local.settings.json │ └── FSharp │ │ ├── .template.config │ │ ├── dotnetcli.host.json │ │ └── template.json │ │ ├── Company.FunctionApp.fsproj │ │ ├── _gitignore │ │ ├── host.json │ │ └── local.settings.json ├── ProjectTemplate_v4.x │ ├── CSharp-Isolated │ │ ├── .template.config │ │ │ ├── GlobalUsings.cs │ │ │ └── template.json │ │ ├── Company.FunctionApp.csproj │ │ ├── Program.cs │ │ ├── Properties │ │ │ └── launchSettings.json │ │ ├── _gitignore │ │ ├── host.json │ │ └── local.settings.json │ ├── CSharp │ │ ├── .template.config │ │ │ ├── dotnetcli.host.json │ │ │ └── template.json │ │ ├── Company.FunctionApp.csproj │ │ ├── Properties │ │ │ └── launchSettings.json │ │ ├── _gitignore │ │ ├── host.json │ │ └── local.settings.json │ ├── FSharp-Isolated │ │ ├── .template.config │ │ │ └── template.json │ │ ├── Company.FunctionApp.fsproj │ │ ├── Program.fs │ │ ├── _gitignore │ │ ├── host.json │ │ └── local.settings.json │ └── FSharp │ │ ├── .template.config │ │ ├── dotnetcli.host.json │ │ └── template.json │ │ ├── Company.FunctionApp.fsproj │ │ ├── _gitignore │ │ ├── host.json │ │ └── local.settings.json ├── Resources │ ├── Resources.resx │ └── cs-CZ │ │ └── Resources │ │ └── Resources.resx ├── Resources_lcl │ ├── Id-id │ │ └── Resources.resx.lcl │ ├── cs-CZ │ │ └── Resources.resx.lcl │ ├── de-DE │ │ └── Resources.resx.lcl │ ├── es-ES │ │ └── Resources.resx.lcl │ ├── fr-FR │ │ └── Resources.resx.lcl │ ├── hu-HU │ │ └── Resources.resx.lcl │ ├── it-IT │ │ └── Resources.resx.lcl │ ├── ja-JP │ │ └── Resources.resx.lcl │ ├── ko-KR │ │ └── Resources.resx.lcl │ ├── nl-NL │ │ └── Resources.resx.lcl │ ├── pl-PL │ │ └── Resources.resx.lcl │ ├── pt-BR │ │ └── Resources.resx.lcl │ ├── pt-PT │ │ └── Resources.resx.lcl │ ├── ru-RU │ │ └── Resources.resx.lcl │ ├── sv-SE │ │ └── Resources.resx.lcl │ ├── tr-TR │ │ └── Resources.resx.lcl │ ├── zh-CN │ │ └── Resources.resx.lcl │ └── zh-TW │ │ └── Resources.resx.lcl ├── Templates-v2 │ ├── BlobTrigger-Python │ │ ├── blob_trigger_template.md │ │ ├── blueprint.py │ │ ├── blueprint_body.py │ │ ├── function_app.py │ │ ├── function_body.py │ │ └── template.json │ ├── CosmosDbTrigger-Python │ │ ├── blueprint.py │ │ ├── blueprint_body.py │ │ ├── cosmosdb_trigger_template.md │ │ ├── function_app.py │ │ ├── function_body.py │ │ └── template.json │ ├── DaprPublishOutputBinding-Python │ │ ├── blueprint.py │ │ ├── blueprint_body.py │ │ ├── dapr-publish-output_binding_template.md │ │ ├── function_app.py │ │ ├── function_body.py │ │ └── template.json │ ├── DaprServiceInvocationTrigger-Python │ │ ├── blueprint.py │ │ ├── blueprint_body.py │ │ ├── dapr_service_invocation_trigger_template.md │ │ ├── function_app.py │ │ ├── function_body.py │ │ └── template.json │ ├── DaprTopicTrigger-Python │ │ ├── blueprint.py │ │ ├── blueprint_body.py │ │ ├── dapr-topic_trigger_template.md │ │ ├── function_app.py │ │ ├── function_body.py │ │ └── template.json │ ├── DurableFunctionsEntityTrigger-Python │ │ ├── blueprint.py │ │ ├── blueprint_body.py │ │ ├── durable-entity_template.md │ │ ├── function_app.py │ │ ├── function_body.py │ │ └── template.json │ ├── DurableFunctionsOrchestration-Python │ │ ├── blueprint.py │ │ ├── blueprint_body.py │ │ ├── durable-orchestration_template.md │ │ ├── function_app.py │ │ ├── function_body.py │ │ └── template.json │ ├── EventGridBlobTrigger-Python │ │ ├── blueprint.py │ │ ├── blueprint_body.py │ │ ├── eventgrid_blob_trigger_template.md │ │ ├── function_app.py │ │ ├── function_body.py │ │ └── template.json │ ├── EventGridTrigger-Python │ │ ├── blueprint.py │ │ ├── blueprint_body.py │ │ ├── eventgrid_trigger_template.md │ │ ├── function_app.py │ │ ├── function_body.py │ │ └── template.json │ ├── EventHubTrigger-Python │ │ ├── blueprint.py │ │ ├── blueprint_body.py │ │ ├── eventhub_trigger_template.md │ │ ├── function_app.py │ │ ├── function_body.py │ │ └── template.json │ ├── HttpTrigger-Python │ │ ├── blueprint.py │ │ ├── blueprint_body.py │ │ ├── function_app.py │ │ ├── function_body.py │ │ ├── http_trigger_template.md │ │ └── template.json │ ├── OpenAI-Assistant-Python │ │ ├── blueprint.py │ │ ├── blueprint_body.py │ │ ├── function_app.py │ │ ├── function_body.py │ │ └── template.json │ ├── OpenAI-Chat-Python │ │ ├── blueprint.py │ │ ├── blueprint_body.py │ │ ├── function_app.py │ │ ├── function_body.py │ │ └── template.json │ ├── OpenAI-Embeddings-Python │ │ ├── blueprint.py │ │ ├── blueprint_body.py │ │ ├── function_app.py │ │ ├── function_body.py │ │ └── template.json │ ├── OpenAI-RAG-Python │ │ ├── blueprint.py │ │ ├── blueprint_body.py │ │ ├── function_app.py │ │ ├── function_body.py │ │ └── template.json │ ├── OpenAI-TextCompletion-Python │ │ ├── blueprint.py │ │ ├── blueprint_body.py │ │ ├── function_app.py │ │ ├── function_body.py │ │ └── template.json │ ├── QueueTrigger-Python │ │ ├── blueprint.py │ │ ├── blueprint_body.py │ │ ├── function_app.py │ │ ├── function_body.py │ │ ├── queue_trigger_template.md │ │ └── template.json │ ├── ServiceBusQueueTrigger-Python │ │ ├── blueprint.py │ │ ├── blueprint_body.py │ │ ├── function_app.py │ │ ├── function_body.py │ │ ├── servicebusqueue_trigger_template.md │ │ └── template.json │ ├── ServiceBusTopicTrigger-Python │ │ ├── blueprint.py │ │ ├── blueprint_body.py │ │ ├── function_app.py │ │ ├── function_body.py │ │ ├── servicebustopic_trigger_template.md │ │ └── template.json │ └── TimerTrigger-Python │ │ ├── blueprint.py │ │ ├── blueprint_body.py │ │ ├── function_app.py │ │ ├── function_body.py │ │ ├── template.json │ │ └── timer_trigger_template.md └── Templates │ ├── AuthenticationEventsTrigger-CSharp │ ├── .template.config │ │ ├── template.json │ │ ├── vs-2017.3.host.json │ │ └── vs-2017.3 │ │ │ ├── functionF-mac-32.png │ │ │ ├── functionF-mac-32@2x.png │ │ │ ├── functionF-mac-32~dark.png │ │ │ ├── functionF-mac-32~dark@2x.png │ │ │ ├── functionF-mac-32~dark~sel.png │ │ │ ├── functionF-mac-32~dark~sel@2x.png │ │ │ ├── functionF-mac-32~sel.png │ │ │ ├── functionF-mac-32~sel@2x.png │ │ │ └── functionF.png │ ├── AuthenticationEventsTriggerCSharp.cs │ ├── function.json │ ├── metadata.json │ ├── readme.md │ ├── run.csx │ └── sample.dat │ ├── AuthenticationEventsTrigger-JavaScript │ ├── function.json │ ├── index.js │ ├── metadata.json │ ├── readme.md │ └── sample.dat │ ├── AuthenticationEventsTrigger-Python │ ├── __init__.py │ ├── function.json │ ├── metadata.json │ ├── readme.md │ └── sample.dat │ ├── AuthenticationEventsTrigger-TypeScript │ ├── function.json │ ├── index.ts │ ├── metadata.json │ ├── readme.md │ └── sample.dat │ ├── BlobTrigger-CSharp-3.x │ ├── .template.config │ │ ├── template.json │ │ ├── vs-2017.3.host.json │ │ └── vs-2017.3 │ │ │ ├── blob-mac-32.png │ │ │ ├── blob-mac-32@2x.png │ │ │ ├── blob-mac-32~dark.png │ │ │ ├── blob-mac-32~dark@2x.png │ │ │ ├── blob-mac-32~dark~sel.png │ │ │ ├── blob-mac-32~dark~sel@2x.png │ │ │ ├── blob-mac-32~sel.png │ │ │ ├── blob-mac-32~sel@2x.png │ │ │ └── blob.png │ ├── BlobTriggerCSharp.cs │ ├── function.json │ ├── metadata.json │ ├── readme.md │ ├── run.csx │ └── sample.dat │ ├── BlobTrigger-CSharp-4.x │ ├── .template.config │ │ ├── template.json │ │ ├── vs-2017.3.host.json │ │ └── vs-2017.3 │ │ │ ├── blob-mac-32.png │ │ │ ├── blob-mac-32@2x.png │ │ │ ├── blob-mac-32~dark.png │ │ │ ├── blob-mac-32~dark@2x.png │ │ │ ├── blob-mac-32~dark~sel.png │ │ │ ├── blob-mac-32~dark~sel@2x.png │ │ │ ├── blob-mac-32~sel.png │ │ │ ├── blob-mac-32~sel@2x.png │ │ │ └── blob.png │ ├── BlobTriggerCSharp.cs │ ├── function.json │ ├── metadata.json │ ├── readme.md │ ├── run.csx │ └── sample.dat │ ├── BlobTrigger-CSharp-5.x │ ├── .template.config │ │ ├── template.json │ │ ├── vs-2017.3.host.json │ │ └── vs-2017.3 │ │ │ ├── blob-mac-32.png │ │ │ ├── blob-mac-32@2x.png │ │ │ ├── blob-mac-32~dark.png │ │ │ ├── blob-mac-32~dark@2x.png │ │ │ ├── blob-mac-32~dark~sel.png │ │ │ ├── blob-mac-32~dark~sel@2x.png │ │ │ ├── blob-mac-32~sel.png │ │ │ ├── blob-mac-32~sel@2x.png │ │ │ └── blob.png │ ├── BlobTriggerCSharp.cs │ ├── function.json │ ├── metadata.json │ ├── readme.md │ ├── run.csx │ └── sample.dat │ ├── BlobTrigger-CSharp-Isolated │ ├── .template.config │ │ ├── template.json │ │ ├── vs-2017.3.host.json │ │ └── vs-2017.3 │ │ │ ├── blob-mac-32.png │ │ │ ├── blob-mac-32@2x.png │ │ │ ├── blob-mac-32~dark.png │ │ │ ├── blob-mac-32~dark@2x.png │ │ │ ├── blob-mac-32~dark~sel.png │ │ │ ├── blob-mac-32~dark~sel@2x.png │ │ │ ├── blob-mac-32~sel.png │ │ │ ├── blob-mac-32~sel@2x.png │ │ │ └── blob.png │ └── BlobTriggerCSharp.cs │ ├── BlobTrigger-Custom │ ├── function.json │ └── metadata.json │ ├── BlobTrigger-FSharp-3.x │ ├── .template.config │ │ ├── template.json │ │ ├── vs-2017.3.host.json │ │ └── vs-2017.3 │ │ │ ├── blob-mac-32.png │ │ │ ├── blob-mac-32@2x.png │ │ │ ├── blob-mac-32~dark.png │ │ │ ├── blob-mac-32~dark@2x.png │ │ │ ├── blob-mac-32~dark~sel.png │ │ │ ├── blob-mac-32~dark~sel@2x.png │ │ │ ├── blob-mac-32~sel.png │ │ │ ├── blob-mac-32~sel@2x.png │ │ │ └── blob.png │ ├── BlobTriggerFSharp.fs │ ├── function.json │ ├── metadata.json │ ├── readme.md │ └── sample.dat │ ├── BlobTrigger-FSharp-4.x │ ├── .template.config │ │ ├── template.json │ │ ├── vs-2017.3.host.json │ │ └── vs-2017.3 │ │ │ ├── blob-mac-32.png │ │ │ ├── blob-mac-32@2x.png │ │ │ ├── blob-mac-32~dark.png │ │ │ ├── blob-mac-32~dark@2x.png │ │ │ ├── blob-mac-32~dark~sel.png │ │ │ ├── blob-mac-32~dark~sel@2x.png │ │ │ ├── blob-mac-32~sel.png │ │ │ ├── blob-mac-32~sel@2x.png │ │ │ └── blob.png │ ├── BlobTriggerFSharp.fs │ ├── function.json │ ├── metadata.json │ ├── readme.md │ └── sample.dat │ ├── BlobTrigger-FSharp-5.x │ ├── .template.config │ │ ├── template.json │ │ ├── vs-2017.3.host.json │ │ └── vs-2017.3 │ │ │ ├── blob-mac-32.png │ │ │ ├── blob-mac-32@2x.png │ │ │ ├── blob-mac-32~dark.png │ │ │ ├── blob-mac-32~dark@2x.png │ │ │ ├── blob-mac-32~dark~sel.png │ │ │ ├── blob-mac-32~dark~sel@2x.png │ │ │ ├── blob-mac-32~sel.png │ │ │ ├── blob-mac-32~sel@2x.png │ │ │ └── blob.png │ ├── BlobTriggerFSharp.fs │ ├── function.json │ ├── metadata.json │ ├── readme.md │ └── sample.dat │ ├── BlobTrigger-FSharp-Isolated │ ├── .template.config │ │ ├── template.json │ │ ├── vs-2017.3.host.json │ │ └── vs-2017.3 │ │ │ ├── blob-mac-32.png │ │ │ ├── blob-mac-32@2x.png │ │ │ ├── blob-mac-32~dark.png │ │ │ ├── blob-mac-32~dark@2x.png │ │ │ ├── blob-mac-32~dark~sel.png │ │ │ ├── blob-mac-32~dark~sel@2x.png │ │ │ ├── blob-mac-32~sel.png │ │ │ ├── blob-mac-32~sel@2x.png │ │ │ └── blob.png │ └── BlobTriggerFSharp.fs │ ├── BlobTrigger-JavaScript │ ├── function.json │ ├── index.js │ ├── metadata.json │ ├── readme.md │ └── sample.dat │ ├── BlobTrigger-PowerShell │ ├── function.json │ ├── metadata.json │ ├── readme.md │ ├── run.ps1 │ └── sample.dat │ ├── BlobTrigger-Python │ ├── __init__.py │ ├── function.json │ ├── metadata.json │ ├── readme.md │ └── sample.dat │ ├── BlobTrigger-TypeScript │ ├── function.json │ ├── index.ts │ ├── metadata.json │ ├── readme.md │ └── sample.dat │ ├── CosmosDBTrigger-CSharp-3.x │ ├── .template.config │ │ ├── template.json │ │ ├── vs-2017.3.host.json │ │ └── vs-2017.3 │ │ │ ├── cosmosdb-mac-32.png │ │ │ ├── cosmosdb-mac-32@2x.png │ │ │ ├── cosmosdb-mac-32~dark.png │ │ │ ├── cosmosdb-mac-32~dark@2x.png │ │ │ ├── cosmosdb-mac-32~dark~sel.png │ │ │ ├── cosmosdb-mac-32~dark~sel@2x.png │ │ │ ├── cosmosdb-mac-32~sel.png │ │ │ ├── cosmosdb-mac-32~sel@2x.png │ │ │ └── cosmosdb.png │ ├── CosmosDBTriggerCSharp.cs │ ├── function.json │ ├── metadata.json │ └── run.csx │ ├── CosmosDBTrigger-CSharp-4.x │ ├── .template.config │ │ ├── template.json │ │ ├── vs-2017.3.host.json │ │ └── vs-2017.3 │ │ │ ├── cosmosdb-mac-32.png │ │ │ ├── cosmosdb-mac-32@2x.png │ │ │ ├── cosmosdb-mac-32~dark.png │ │ │ ├── cosmosdb-mac-32~dark@2x.png │ │ │ ├── cosmosdb-mac-32~dark~sel.png │ │ │ ├── cosmosdb-mac-32~dark~sel@2x.png │ │ │ ├── cosmosdb-mac-32~sel.png │ │ │ ├── cosmosdb-mac-32~sel@2x.png │ │ │ └── cosmosdb.png │ ├── CosmosDBTriggerCSharp.cs │ ├── function.json │ ├── metadata.json │ └── run.csx │ ├── CosmosDBTrigger-CSharp-Isolated │ ├── .template.config │ │ ├── template.json │ │ ├── vs-2017.3.host.json │ │ └── vs-2017.3 │ │ │ ├── cosmosdb-mac-32.png │ │ │ ├── cosmosdb-mac-32@2x.png │ │ │ ├── cosmosdb-mac-32~dark.png │ │ │ ├── cosmosdb-mac-32~dark@2x.png │ │ │ ├── cosmosdb-mac-32~dark~sel.png │ │ │ ├── cosmosdb-mac-32~dark~sel@2x.png │ │ │ ├── cosmosdb-mac-32~sel.png │ │ │ ├── cosmosdb-mac-32~sel@2x.png │ │ │ └── cosmosdb.png │ └── CosmosDBTriggerCSharp.cs │ ├── CosmosDBTrigger-Custom │ ├── function.json │ └── metadata.json │ ├── CosmosDBTrigger-FSharp-Isolated │ ├── .template.config │ │ ├── template.json │ │ ├── vs-2017.3.host.json │ │ └── vs-2017.3 │ │ │ ├── cosmosdb-mac-32.png │ │ │ ├── cosmosdb-mac-32@2x.png │ │ │ ├── cosmosdb-mac-32~dark.png │ │ │ ├── cosmosdb-mac-32~dark@2x.png │ │ │ ├── cosmosdb-mac-32~dark~sel.png │ │ │ ├── cosmosdb-mac-32~dark~sel@2x.png │ │ │ ├── cosmosdb-mac-32~sel.png │ │ │ ├── cosmosdb-mac-32~sel@2x.png │ │ │ └── cosmosdb.png │ └── CosmosDBTriggerFSharp.fs │ ├── CosmosDBTrigger-FSharp │ ├── .template.config │ │ ├── template.json │ │ ├── vs-2017.3.host.json │ │ └── vs-2017.3 │ │ │ ├── cosmosdb-mac-32.png │ │ │ ├── cosmosdb-mac-32@2x.png │ │ │ ├── cosmosdb-mac-32~dark.png │ │ │ ├── cosmosdb-mac-32~dark@2x.png │ │ │ ├── cosmosdb-mac-32~dark~sel.png │ │ │ ├── cosmosdb-mac-32~dark~sel@2x.png │ │ │ ├── cosmosdb-mac-32~sel.png │ │ │ ├── cosmosdb-mac-32~sel@2x.png │ │ │ └── cosmosdb.png │ ├── CosmosDBTriggerFSharp.fs │ ├── function.json │ └── metadata.json │ ├── CosmosDBTrigger-JavaScript-4.x │ ├── function.json │ ├── index.js │ ├── metadata.json │ └── sample.dat │ ├── CosmosDBTrigger-JavaScript │ ├── function.json │ ├── index.js │ ├── metadata.json │ └── sample.dat │ ├── CosmosDBTrigger-PowerShell-4.x │ ├── function.json │ ├── metadata.json │ ├── run.ps1 │ └── sample.dat │ ├── CosmosDBTrigger-PowerShell │ ├── function.json │ ├── metadata.json │ ├── run.ps1 │ └── sample.dat │ ├── CosmosDBTrigger-Python-4.x │ ├── __init__.py │ ├── function.json │ ├── metadata.json │ └── sample.dat │ ├── CosmosDBTrigger-Python │ ├── __init__.py │ ├── function.json │ ├── metadata.json │ └── sample.dat │ ├── CosmosDBTrigger-TypeScript-4.x │ ├── function.json │ ├── index.ts │ ├── metadata.json │ └── sample.dat │ ├── CosmosDBTrigger-TypeScript │ ├── function.json │ ├── index.ts │ ├── metadata.json │ └── sample.dat │ ├── DaprPublishOutputBinding-CSharp-Isolated │ ├── .template.config │ │ ├── template.json │ │ ├── vs-2017.3.host.json │ │ └── vs-2017.3 │ │ │ ├── functionF-mac-32.png │ │ │ ├── functionF-mac-32@2x.png │ │ │ ├── functionF-mac-32~dark.png │ │ │ ├── functionF-mac-32~dark@2x.png │ │ │ ├── functionF-mac-32~dark~sel.png │ │ │ ├── functionF-mac-32~dark~sel@2x.png │ │ │ ├── functionF-mac-32~sel.png │ │ │ ├── functionF-mac-32~sel@2x.png │ │ │ └── functionF.png │ ├── DaprPublishOutputBindingCSharp.cs │ └── readme.md │ ├── DaprPublishOutputBinding-CSharp │ ├── .template.config │ │ ├── template.json │ │ ├── vs-2017.3.host.json │ │ └── vs-2017.3 │ │ │ ├── functionF-mac-32.png │ │ │ ├── functionF-mac-32@2x.png │ │ │ ├── functionF-mac-32~dark.png │ │ │ ├── functionF-mac-32~dark@2x.png │ │ │ ├── functionF-mac-32~dark~sel.png │ │ │ ├── functionF-mac-32~dark~sel@2x.png │ │ │ ├── functionF-mac-32~sel.png │ │ │ ├── functionF-mac-32~sel@2x.png │ │ │ └── functionF.png │ ├── DaprPublishOutputBindingCSharp.cs │ └── readme.md │ ├── DaprPublishOutputBinding-JavaScript │ ├── function.json │ ├── index.js │ ├── metadata.json │ └── readme.md │ ├── DaprPublishOutputBinding-PowerShell │ ├── function.json │ ├── metadata.json │ ├── readme.md │ └── run.ps1 │ ├── DaprPublishOutputBinding-Python │ ├── __init__.py │ ├── function.json │ ├── metadata.json │ └── readme.md │ ├── DaprServiceInvocationTrigger-CSharp-Isolated │ ├── .template.config │ │ ├── template.json │ │ ├── vs-2017.3.host.json │ │ └── vs-2017.3 │ │ │ ├── functionF-mac-32.png │ │ │ ├── functionF-mac-32@2x.png │ │ │ ├── functionF-mac-32~dark.png │ │ │ ├── functionF-mac-32~dark@2x.png │ │ │ ├── functionF-mac-32~dark~sel.png │ │ │ ├── functionF-mac-32~dark~sel@2x.png │ │ │ ├── functionF-mac-32~sel.png │ │ │ ├── functionF-mac-32~sel@2x.png │ │ │ └── functionF.png │ ├── DaprServiceInvocationTriggerCSharp.cs │ └── readme.md │ ├── DaprServiceInvocationTrigger-CSharp │ ├── .template.config │ │ ├── template.json │ │ ├── vs-2017.3.host.json │ │ └── vs-2017.3 │ │ │ ├── functionF-mac-32.png │ │ │ ├── functionF-mac-32@2x.png │ │ │ ├── functionF-mac-32~dark.png │ │ │ ├── functionF-mac-32~dark@2x.png │ │ │ ├── functionF-mac-32~dark~sel.png │ │ │ ├── functionF-mac-32~dark~sel@2x.png │ │ │ ├── functionF-mac-32~sel.png │ │ │ ├── functionF-mac-32~sel@2x.png │ │ │ └── functionF.png │ ├── DaprServiceInvocationTriggerCSharp.cs │ └── readme.md │ ├── DaprServiceInvocationTrigger-JavaScript │ ├── function.json │ ├── index.js │ ├── metadata.json │ └── readme.md │ ├── DaprServiceInvocationTrigger-PowerShell │ ├── function.json │ ├── metadata.json │ ├── readme.md │ └── run.ps1 │ ├── DaprServiceInvocationTrigger-Python │ ├── __init__.py │ ├── function.json │ ├── metadata.json │ └── readme.md │ ├── DaprTopicTrigger-CSharp-Isolated │ ├── .template.config │ │ ├── template.json │ │ ├── vs-2017.3.host.json │ │ └── vs-2017.3 │ │ │ ├── functionF-mac-32.png │ │ │ ├── functionF-mac-32@2x.png │ │ │ ├── functionF-mac-32~dark.png │ │ │ ├── functionF-mac-32~dark@2x.png │ │ │ ├── functionF-mac-32~dark~sel.png │ │ │ ├── functionF-mac-32~dark~sel@2x.png │ │ │ ├── functionF-mac-32~sel.png │ │ │ ├── functionF-mac-32~sel@2x.png │ │ │ └── functionF.png │ ├── DaprTopicTriggerCSharp.cs │ └── readme.md │ ├── DaprTopicTrigger-CSharp │ ├── .template.config │ │ ├── template.json │ │ ├── vs-2017.3.host.json │ │ └── vs-2017.3 │ │ │ ├── functionF-mac-32.png │ │ │ ├── functionF-mac-32@2x.png │ │ │ ├── functionF-mac-32~dark.png │ │ │ ├── functionF-mac-32~dark@2x.png │ │ │ ├── functionF-mac-32~dark~sel.png │ │ │ ├── functionF-mac-32~dark~sel@2x.png │ │ │ ├── functionF-mac-32~sel.png │ │ │ ├── functionF-mac-32~sel@2x.png │ │ │ └── functionF.png │ ├── DaprTopicTriggerCSharp.cs │ └── readme.md │ ├── DaprTopicTrigger-JavaScript │ ├── function.json │ ├── index.js │ ├── metadata.json │ └── readme.md │ ├── DaprTopicTrigger-PowerShell │ ├── function.json │ ├── metadata.json │ ├── readme.md │ └── run.ps1 │ ├── DaprTopicTrigger-Python │ ├── __init__.py │ ├── function.json │ ├── metadata.json │ └── readme.md │ ├── DurableFunctionsActivity-CSharp-1.x │ ├── function.json │ ├── metadata.json │ └── run.csx │ ├── DurableFunctionsActivity-CSharp-2.x │ ├── function.json │ ├── metadata.json │ └── run.csx │ ├── DurableFunctionsActivity-JavaScript │ ├── function.json │ ├── index.js │ └── metadata.json │ ├── DurableFunctionsActivity-PowerShell │ ├── function.json │ ├── metadata.json │ └── run.ps1 │ ├── DurableFunctionsActivity-Python │ ├── __init__.py │ ├── function.json │ └── metadata.json │ ├── DurableFunctionsActivity-TypeScript │ ├── function.json │ ├── index.ts │ └── metadata.json │ ├── DurableFunctionsEntity-JavaScript │ ├── function.json │ ├── index.js │ └── metadata.json │ ├── DurableFunctionsEntity-Python │ ├── __init__.py │ ├── function.json │ └── metadata.json │ ├── DurableFunctionsEntity-TypeScript │ ├── function.json │ ├── index.ts │ └── metadata.json │ ├── DurableFunctionsEntityClass-CSharp-2.x │ ├── function.json │ ├── metadata.json │ └── run.csx │ ├── DurableFunctionsEntityFunction-CSharp-2.x │ ├── function.json │ ├── metadata.json │ └── run.csx │ ├── DurableFunctionsEntityHttp-CSharp-2.x │ ├── .template.config │ │ ├── template.json │ │ ├── vs-2017.3.host.json │ │ └── vs-2017.3 │ │ │ ├── functionF-mac-32.png │ │ │ ├── functionF-mac-32@2x.png │ │ │ ├── functionF-mac-32~dark.png │ │ │ ├── functionF-mac-32~dark@2x.png │ │ │ ├── functionF-mac-32~dark~sel.png │ │ │ ├── functionF-mac-32~dark~sel@2x.png │ │ │ ├── functionF-mac-32~sel.png │ │ │ ├── functionF-mac-32~sel@2x.png │ │ │ └── functionF.png │ ├── DurableFunctionsEntityHttpCSharp.cs │ ├── function.json │ └── metadata.json │ ├── DurableFunctionsEntityHttpStart-CSharp-2.x │ ├── function.json │ ├── metadata.json │ └── run.csx │ ├── DurableFunctionsEntityHttpStart-JavaScript │ ├── function.json │ ├── index.js │ └── metadata.json │ ├── DurableFunctionsEntityHttpStart-TypeScript │ ├── function.json │ ├── index.ts │ └── metadata.json │ ├── DurableFunctionsHttpStart-CSharp-1.x │ ├── function.json │ ├── metadata.json │ └── run.csx │ ├── DurableFunctionsHttpStart-CSharp-2.x │ ├── function.json │ ├── metadata.json │ └── run.csx │ ├── DurableFunctionsHttpStart-CSharp │ ├── function.json │ ├── metadata.json │ └── run.csx │ ├── DurableFunctionsHttpStart-JavaScript │ ├── function.json │ ├── index.js │ └── metadata.json │ ├── DurableFunctionsHttpStart-PowerShell-1.x │ ├── function.json │ ├── metadata.json │ └── run.ps1 │ ├── DurableFunctionsHttpStart-PowerShell-2.x │ ├── function.json │ ├── metadata.json │ └── run.ps1 │ ├── DurableFunctionsHttpStart-Python-1.x │ ├── __init__.py │ ├── function.json │ └── metadata.json │ ├── DurableFunctionsHttpStart-Python-2.x │ ├── __init__.py │ ├── function.json │ └── metadata.json │ ├── DurableFunctionsHttpStart-TypeScript │ ├── function.json │ ├── index.ts │ └── metadata.json │ ├── DurableFunctionsOrchestration-CSharp-1.x │ ├── .template.config │ │ ├── template.json │ │ ├── vs-2017.3.host.json │ │ └── vs-2017.3 │ │ │ ├── functionF-mac-32.png │ │ │ ├── functionF-mac-32@2x.png │ │ │ ├── functionF-mac-32~dark.png │ │ │ ├── functionF-mac-32~dark@2x.png │ │ │ ├── functionF-mac-32~dark~sel.png │ │ │ ├── functionF-mac-32~dark~sel@2x.png │ │ │ ├── functionF-mac-32~sel.png │ │ │ ├── functionF-mac-32~sel@2x.png │ │ │ └── functionF.png │ ├── DurableFunctionsOrchestrationCSharp.cs │ ├── function.json │ └── metadata.json │ ├── DurableFunctionsOrchestration-CSharp-2.x │ ├── .template.config │ │ ├── template.json │ │ ├── vs-2017.3.host.json │ │ └── vs-2017.3 │ │ │ ├── functionF-mac-32.png │ │ │ ├── functionF-mac-32@2x.png │ │ │ ├── functionF-mac-32~dark.png │ │ │ ├── functionF-mac-32~dark@2x.png │ │ │ ├── functionF-mac-32~dark~sel.png │ │ │ ├── functionF-mac-32~dark~sel@2x.png │ │ │ ├── functionF-mac-32~sel.png │ │ │ ├── functionF-mac-32~sel@2x.png │ │ │ └── functionF.png │ ├── DurableFunctionsOrchestrationCSharp.cs │ ├── function.json │ └── metadata.json │ ├── DurableFunctionsOrchestration-CSharp-Isolated │ ├── .template.config │ │ ├── template.json │ │ ├── vs-2017.3.host.json │ │ └── vs-2017.3 │ │ │ ├── functionF-mac-32.png │ │ │ ├── functionF-mac-32@2x.png │ │ │ ├── functionF-mac-32~dark.png │ │ │ ├── functionF-mac-32~dark@2x.png │ │ │ ├── functionF-mac-32~dark~sel.png │ │ │ ├── functionF-mac-32~dark~sel@2x.png │ │ │ ├── functionF-mac-32~sel.png │ │ │ ├── functionF-mac-32~sel@2x.png │ │ │ └── functionF.png │ └── DurableFunctionsOrchestrationCSharp.cs │ ├── DurableFunctionsOrchestrator-CSharp-1.x │ ├── function.json │ ├── metadata.json │ └── run.csx │ ├── DurableFunctionsOrchestrator-CSharp-2.x │ ├── function.json │ ├── metadata.json │ └── run.csx │ ├── DurableFunctionsOrchestrator-CSharp │ ├── function.json │ ├── metadata.json │ └── run.csx │ ├── DurableFunctionsOrchestrator-JavaScript │ ├── function.json │ ├── index.js │ └── metadata.json │ ├── DurableFunctionsOrchestrator-PowerShell-1.x │ ├── function.json │ ├── metadata.json │ └── run.ps1 │ ├── DurableFunctionsOrchestrator-PowerShell-2.x │ ├── function.json │ ├── metadata.json │ └── run.ps1 │ ├── DurableFunctionsOrchestrator-Python-1.x │ ├── __init__.py │ ├── function.json │ └── metadata.json │ ├── DurableFunctionsOrchestrator-Python-2.x │ ├── __init__.py │ ├── function.json │ └── metadata.json │ ├── DurableFunctionsOrchestrator-TypeScript │ ├── function.json │ ├── index.ts │ └── metadata.json │ ├── EdgeHubTrigger-CSharp │ ├── .template.config │ │ ├── template.json │ │ ├── vs-2017.3.host.json │ │ └── vs-2017.3 │ │ │ ├── eventhub-mac-32.png │ │ │ ├── eventhub-mac-32@2x.png │ │ │ ├── eventhub-mac-32~dark.png │ │ │ ├── eventhub-mac-32~dark@2x.png │ │ │ ├── eventhub-mac-32~dark~sel.png │ │ │ ├── eventhub-mac-32~dark~sel@2x.png │ │ │ ├── eventhub-mac-32~sel.png │ │ │ ├── eventhub-mac-32~sel@2x.png │ │ │ └── eventhub.png │ └── EdgeHubTriggerCSharp.cs │ ├── EventGridBlobTrigger-CSharp-Isolated-6.x │ ├── .template.config │ │ ├── template.json │ │ ├── vs-2017.3.host.json │ │ └── vs-2017.3 │ │ │ ├── blob-mac-32.png │ │ │ ├── blob-mac-32@2x.png │ │ │ ├── blob-mac-32~dark.png │ │ │ ├── blob-mac-32~dark@2x.png │ │ │ ├── blob-mac-32~dark~sel.png │ │ │ ├── blob-mac-32~dark~sel@2x.png │ │ │ ├── blob-mac-32~sel.png │ │ │ ├── blob-mac-32~sel@2x.png │ │ │ └── blob.png │ └── EventGridBlobTriggerCSharp.cs │ ├── EventGridBlobTrigger-JavaScript │ ├── function.json │ ├── index.js │ └── metadata.json │ ├── EventGridBlobTrigger-PowerShell │ ├── function.json │ ├── metadata.json │ ├── readme.md │ ├── run.ps1 │ └── sample.dat │ ├── EventGridBlobTrigger-Python │ ├── __init__.py │ ├── function.json │ ├── metadata.json │ ├── readme.md │ └── sample.dat │ ├── EventGridBlobTrigger-TypeScript │ ├── function.json │ ├── index.ts │ ├── metadata.json │ ├── readme.md │ └── sample.dat │ ├── EventGridCloudEventTrigger-CSharp-3.x │ ├── .template.config │ │ ├── template.json │ │ ├── vs-2017.3.host.json │ │ └── vs-2017.3 │ │ │ ├── eventGrid-mac-32.png │ │ │ ├── eventGrid-mac-32@2x.png │ │ │ ├── eventGrid-mac-32~dark.png │ │ │ ├── eventGrid-mac-32~dark@2x.png │ │ │ ├── eventGrid-mac-32~dark~sel.png │ │ │ ├── eventGrid-mac-32~dark~sel@2x.png │ │ │ ├── eventGrid-mac-32~sel.png │ │ │ ├── eventGrid-mac-32~sel@2x.png │ │ │ └── eventGrid.png │ ├── EventGridCloudEventTriggerCSharp.cs │ ├── function.json │ ├── metadata.json │ ├── run.csx │ └── sample.dat │ ├── EventGridCloudEventTrigger-FSharp │ ├── .template.config │ │ ├── template.json │ │ ├── vs-2017.3.host.json │ │ └── vs-2017.3 │ │ │ ├── eventGrid-mac-32.png │ │ │ ├── eventGrid-mac-32@2x.png │ │ │ ├── eventGrid-mac-32~dark.png │ │ │ ├── eventGrid-mac-32~dark@2x.png │ │ │ ├── eventGrid-mac-32~dark~sel.png │ │ │ ├── eventGrid-mac-32~dark~sel@2x.png │ │ │ ├── eventGrid-mac-32~sel.png │ │ │ ├── eventGrid-mac-32~sel@2x.png │ │ │ └── eventGrid.png │ ├── EventGridCloudEventTriggerFSharp.fs │ └── sample.dat │ ├── EventGridTrigger-CSharp-2.x │ ├── .template.config │ │ ├── template.json │ │ ├── vs-2017.3.host.json │ │ └── vs-2017.3 │ │ │ ├── eventGrid-mac-32.png │ │ │ ├── eventGrid-mac-32@2x.png │ │ │ ├── eventGrid-mac-32~dark.png │ │ │ ├── eventGrid-mac-32~dark@2x.png │ │ │ ├── eventGrid-mac-32~dark~sel.png │ │ │ ├── eventGrid-mac-32~dark~sel@2x.png │ │ │ ├── eventGrid-mac-32~sel.png │ │ │ ├── eventGrid-mac-32~sel@2x.png │ │ │ └── eventGrid.png │ ├── EventGridTriggerCSharp.cs │ ├── function.json │ ├── metadata.json │ ├── run.csx │ └── sample.dat │ ├── EventGridTrigger-CSharp-3.x │ ├── .template.config │ │ ├── template.json │ │ ├── vs-2017.3.host.json │ │ └── vs-2017.3 │ │ │ ├── eventGrid-mac-32.png │ │ │ ├── eventGrid-mac-32@2x.png │ │ │ ├── eventGrid-mac-32~dark.png │ │ │ ├── eventGrid-mac-32~dark@2x.png │ │ │ ├── eventGrid-mac-32~dark~sel.png │ │ │ ├── eventGrid-mac-32~dark~sel@2x.png │ │ │ ├── eventGrid-mac-32~sel.png │ │ │ ├── eventGrid-mac-32~sel@2x.png │ │ │ └── eventGrid.png │ ├── EventGridTriggerCSharp.cs │ ├── function.json │ ├── metadata.json │ ├── run.csx │ └── sample.dat │ ├── EventGridTrigger-CSharp-Isolated │ ├── .template.config │ │ ├── template.json │ │ ├── vs-2017.3.host.json │ │ └── vs-2017.3 │ │ │ ├── eventGrid-mac-32.png │ │ │ ├── eventGrid-mac-32@2x.png │ │ │ ├── eventGrid-mac-32~dark.png │ │ │ ├── eventGrid-mac-32~dark@2x.png │ │ │ ├── eventGrid-mac-32~dark~sel.png │ │ │ ├── eventGrid-mac-32~dark~sel@2x.png │ │ │ ├── eventGrid-mac-32~sel.png │ │ │ ├── eventGrid-mac-32~sel@2x.png │ │ │ └── eventGrid.png │ └── EventGridTriggerCSharp.cs │ ├── EventGridTrigger-Custom │ ├── function.json │ └── metadata.json │ ├── EventGridTrigger-FSharp-3.x │ ├── .template.config │ │ ├── template.json │ │ ├── vs-2017.3.host.json │ │ └── vs-2017.3 │ │ │ ├── eventGrid-mac-32.png │ │ │ ├── eventGrid-mac-32@2x.png │ │ │ ├── eventGrid-mac-32~dark.png │ │ │ ├── eventGrid-mac-32~dark@2x.png │ │ │ ├── eventGrid-mac-32~dark~sel.png │ │ │ ├── eventGrid-mac-32~dark~sel@2x.png │ │ │ ├── eventGrid-mac-32~sel.png │ │ │ ├── eventGrid-mac-32~sel@2x.png │ │ │ └── eventGrid.png │ ├── EventGridTriggerFSharp.fs │ ├── function.json │ ├── metadata.json │ └── sample.dat │ ├── EventGridTrigger-FSharp-Isolated │ ├── .template.config │ │ ├── template.json │ │ ├── vs-2017.3.host.json │ │ └── vs-2017.3 │ │ │ ├── eventGrid-mac-32.png │ │ │ ├── eventGrid-mac-32@2x.png │ │ │ ├── eventGrid-mac-32~dark.png │ │ │ ├── eventGrid-mac-32~dark@2x.png │ │ │ ├── eventGrid-mac-32~dark~sel.png │ │ │ ├── eventGrid-mac-32~dark~sel@2x.png │ │ │ ├── eventGrid-mac-32~sel.png │ │ │ ├── eventGrid-mac-32~sel@2x.png │ │ │ └── eventGrid.png │ └── EventGridTriggerFSharp.fs │ ├── EventGridTrigger-FSharp │ ├── .template.config │ │ ├── template.json │ │ ├── vs-2017.3.host.json │ │ └── vs-2017.3 │ │ │ ├── eventGrid-mac-32.png │ │ │ ├── eventGrid-mac-32@2x.png │ │ │ ├── eventGrid-mac-32~dark.png │ │ │ ├── eventGrid-mac-32~dark@2x.png │ │ │ ├── eventGrid-mac-32~dark~sel.png │ │ │ ├── eventGrid-mac-32~dark~sel@2x.png │ │ │ ├── eventGrid-mac-32~sel.png │ │ │ ├── eventGrid-mac-32~sel@2x.png │ │ │ └── eventGrid.png │ ├── EventGridTriggerFSharp.fs │ ├── function.json │ ├── metadata.json │ └── sample.dat │ ├── EventGridTrigger-JavaScript │ ├── function.json │ ├── index.js │ ├── metadata.json │ └── sample.dat │ ├── EventGridTrigger-PowerShell │ ├── function.json │ ├── metadata.json │ ├── run.ps1 │ └── sample.dat │ ├── EventGridTrigger-Python │ ├── __init__.py │ ├── function.json │ ├── metadata.json │ └── sample.dat │ ├── EventGridTrigger-TypeScript │ ├── function.json │ ├── index.ts │ ├── metadata.json │ └── sample.dat │ ├── EventHubTrigger-CSharp-3.x │ ├── EventHubTriggerCSharp.csx │ ├── function.json │ ├── metadata.json │ └── sample.dat │ ├── EventHubTrigger-CSharp-4.x │ ├── .template.config │ │ ├── template.json │ │ ├── vs-2017.3.host.json │ │ └── vs-2017.3 │ │ │ ├── eventhub-mac-32.png │ │ │ ├── eventhub-mac-32@2x.png │ │ │ ├── eventhub-mac-32~dark.png │ │ │ ├── eventhub-mac-32~dark@2x.png │ │ │ ├── eventhub-mac-32~dark~sel.png │ │ │ ├── eventhub-mac-32~dark~sel@2x.png │ │ │ ├── eventhub-mac-32~sel.png │ │ │ ├── eventhub-mac-32~sel@2x.png │ │ │ └── eventhub.png │ ├── EventHubTriggerCSharp.cs │ ├── function.json │ ├── metadata.json │ ├── run.csx │ └── sample.dat │ ├── EventHubTrigger-CSharp-5.x │ ├── .template.config │ │ ├── template.json │ │ ├── vs-2017.3.host.json │ │ └── vs-2017.3 │ │ │ ├── eventhub-mac-32.png │ │ │ ├── eventhub-mac-32@2x.png │ │ │ ├── eventhub-mac-32~dark.png │ │ │ ├── eventhub-mac-32~dark@2x.png │ │ │ ├── eventhub-mac-32~dark~sel.png │ │ │ ├── eventhub-mac-32~dark~sel@2x.png │ │ │ ├── eventhub-mac-32~sel.png │ │ │ ├── eventhub-mac-32~sel@2x.png │ │ │ └── eventhub.png │ ├── EventHubTriggerCSharp.cs │ ├── function.json │ ├── metadata.json │ ├── run.csx │ └── sample.dat │ ├── EventHubTrigger-CSharp-6.x │ ├── .template.config │ │ ├── template.json │ │ ├── vs-2017.3.host.json │ │ └── vs-2017.3 │ │ │ ├── eventhub-mac-32.png │ │ │ ├── eventhub-mac-32@2x.png │ │ │ ├── eventhub-mac-32~dark.png │ │ │ ├── eventhub-mac-32~dark@2x.png │ │ │ ├── eventhub-mac-32~dark~sel.png │ │ │ ├── eventhub-mac-32~dark~sel@2x.png │ │ │ ├── eventhub-mac-32~sel.png │ │ │ ├── eventhub-mac-32~sel@2x.png │ │ │ └── eventhub.png │ ├── EventHubTriggerCSharp.cs │ ├── function.json │ ├── metadata.json │ ├── run.csx │ └── sample.dat │ ├── EventHubTrigger-CSharp-Isolated │ ├── .template.config │ │ ├── template.json │ │ ├── vs-2017.3.host.json │ │ └── vs-2017.3 │ │ │ ├── eventhub-mac-32.png │ │ │ ├── eventhub-mac-32@2x.png │ │ │ ├── eventhub-mac-32~dark.png │ │ │ ├── eventhub-mac-32~dark@2x.png │ │ │ ├── eventhub-mac-32~dark~sel.png │ │ │ ├── eventhub-mac-32~dark~sel@2x.png │ │ │ ├── eventhub-mac-32~sel.png │ │ │ ├── eventhub-mac-32~sel@2x.png │ │ │ └── eventhub.png │ └── EventHubTriggerCSharp.cs │ ├── EventHubTrigger-Custom │ ├── function.json │ └── metadata.json │ ├── EventHubTrigger-FSharp-5.x │ ├── .template.config │ │ ├── template.json │ │ ├── vs-2017.3.host.json │ │ └── vs-2017.3 │ │ │ ├── eventhub-mac-32.png │ │ │ ├── eventhub-mac-32@2x.png │ │ │ ├── eventhub-mac-32~dark.png │ │ │ ├── eventhub-mac-32~dark@2x.png │ │ │ ├── eventhub-mac-32~dark~sel.png │ │ │ ├── eventhub-mac-32~dark~sel@2x.png │ │ │ ├── eventhub-mac-32~sel.png │ │ │ ├── eventhub-mac-32~sel@2x.png │ │ │ └── eventhub.png │ ├── EventHubTriggerFSharp.fs │ ├── function.json │ ├── metadata.json │ └── sample.dat │ ├── EventHubTrigger-FSharp-Isolated │ ├── .template.config │ │ ├── template.json │ │ ├── vs-2017.3.host.json │ │ └── vs-2017.3 │ │ │ ├── eventhub-mac-32.png │ │ │ ├── eventhub-mac-32@2x.png │ │ │ ├── eventhub-mac-32~dark.png │ │ │ ├── eventhub-mac-32~dark@2x.png │ │ │ ├── eventhub-mac-32~dark~sel.png │ │ │ ├── eventhub-mac-32~dark~sel@2x.png │ │ │ ├── eventhub-mac-32~sel.png │ │ │ ├── eventhub-mac-32~sel@2x.png │ │ │ └── eventhub.png │ └── EventHubTriggerFSharp.fs │ ├── EventHubTrigger-FSharp │ ├── .template.config │ │ ├── template.json │ │ ├── vs-2017.3.host.json │ │ └── vs-2017.3 │ │ │ ├── eventhub-mac-32.png │ │ │ ├── eventhub-mac-32@2x.png │ │ │ ├── eventhub-mac-32~dark.png │ │ │ ├── eventhub-mac-32~dark@2x.png │ │ │ ├── eventhub-mac-32~dark~sel.png │ │ │ ├── eventhub-mac-32~dark~sel@2x.png │ │ │ ├── eventhub-mac-32~sel.png │ │ │ ├── eventhub-mac-32~sel@2x.png │ │ │ └── eventhub.png │ ├── EventHubTriggerFSharp.fs │ ├── function.json │ ├── metadata.json │ └── sample.dat │ ├── EventHubTrigger-JavaScript │ ├── function.json │ ├── index.js │ ├── metadata.json │ └── sample.dat │ ├── EventHubTrigger-PowerShell │ ├── function.json │ ├── metadata.json │ ├── run.ps1 │ └── sample.dat │ ├── EventHubTrigger-Python │ ├── __init__.py │ ├── function.json │ ├── metadata.json │ └── sample.dat │ ├── EventHubTrigger-TypeScript │ ├── function.json │ ├── index.ts │ ├── metadata.json │ └── sample.dat │ ├── HttpTrigger-CSharp-Isolated-NetCore │ ├── .template.config │ │ ├── template.json │ │ ├── vs-2017.3.host.json │ │ └── vs-2017.3 │ │ │ ├── httpTrigger-mac-32.png │ │ │ ├── httpTrigger-mac-32@2x.png │ │ │ ├── httpTrigger-mac-32~dark.png │ │ │ ├── httpTrigger-mac-32~dark@2x.png │ │ │ ├── httpTrigger-mac-32~dark~sel.png │ │ │ ├── httpTrigger-mac-32~dark~sel@2x.png │ │ │ ├── httpTrigger-mac-32~sel.png │ │ │ ├── httpTrigger-mac-32~sel@2x.png │ │ │ └── httpTrigger.png │ └── HttpTriggerCSharp.cs │ ├── HttpTrigger-CSharp-Isolated-NetFx │ ├── .template.config │ │ ├── template.json │ │ ├── vs-2017.3.host.json │ │ └── vs-2017.3 │ │ │ ├── httpTrigger-mac-32.png │ │ │ ├── httpTrigger-mac-32@2x.png │ │ │ ├── httpTrigger-mac-32~dark.png │ │ │ ├── httpTrigger-mac-32~dark@2x.png │ │ │ ├── httpTrigger-mac-32~dark~sel.png │ │ │ ├── httpTrigger-mac-32~dark~sel@2x.png │ │ │ ├── httpTrigger-mac-32~sel.png │ │ │ ├── httpTrigger-mac-32~sel@2x.png │ │ │ └── httpTrigger.png │ └── HttpTriggerCSharp.cs │ ├── HttpTrigger-CSharp-Isolated │ ├── .template.config │ │ ├── template.json │ │ ├── vs-2017.3.host.json │ │ └── vs-2017.3 │ │ │ ├── httpTrigger-mac-32.png │ │ │ ├── httpTrigger-mac-32@2x.png │ │ │ ├── httpTrigger-mac-32~dark.png │ │ │ ├── httpTrigger-mac-32~dark@2x.png │ │ │ ├── httpTrigger-mac-32~dark~sel.png │ │ │ ├── httpTrigger-mac-32~dark~sel@2x.png │ │ │ ├── httpTrigger-mac-32~sel.png │ │ │ ├── httpTrigger-mac-32~sel@2x.png │ │ │ └── httpTrigger.png │ └── HttpTriggerCSharp.cs │ ├── HttpTrigger-CSharp │ ├── .template.config │ │ ├── template.json │ │ ├── vs-2017.3.host.json │ │ └── vs-2017.3 │ │ │ ├── httpTrigger-mac-32.png │ │ │ ├── httpTrigger-mac-32@2x.png │ │ │ ├── httpTrigger-mac-32~dark.png │ │ │ ├── httpTrigger-mac-32~dark@2x.png │ │ │ ├── httpTrigger-mac-32~dark~sel.png │ │ │ ├── httpTrigger-mac-32~dark~sel@2x.png │ │ │ ├── httpTrigger-mac-32~sel.png │ │ │ ├── httpTrigger-mac-32~sel@2x.png │ │ │ └── httpTrigger.png │ ├── HttpTriggerCSharp.cs │ ├── function.json │ ├── metadata.json │ ├── readme.md │ ├── run.csx │ └── sample.dat │ ├── HttpTrigger-Custom │ ├── function.json │ └── metadata.json │ ├── HttpTrigger-FSharp-Isolated │ ├── .template.config │ │ ├── template.json │ │ ├── vs-2017.3.host.json │ │ └── vs-2017.3 │ │ │ ├── httpTrigger-mac-32.png │ │ │ ├── httpTrigger-mac-32@2x.png │ │ │ ├── httpTrigger-mac-32~dark.png │ │ │ ├── httpTrigger-mac-32~dark@2x.png │ │ │ ├── httpTrigger-mac-32~dark~sel.png │ │ │ ├── httpTrigger-mac-32~dark~sel@2x.png │ │ │ ├── httpTrigger-mac-32~sel.png │ │ │ ├── httpTrigger-mac-32~sel@2x.png │ │ │ └── httpTrigger.png │ └── HttpTriggerFSharp.fs │ ├── HttpTrigger-FSharp │ ├── .template.config │ │ ├── template.json │ │ ├── vs-2017.3.host.json │ │ └── vs-2017.3 │ │ │ ├── httpTrigger-mac-32.png │ │ │ ├── httpTrigger-mac-32@2x.png │ │ │ ├── httpTrigger-mac-32~dark.png │ │ │ ├── httpTrigger-mac-32~dark@2x.png │ │ │ ├── httpTrigger-mac-32~dark~sel.png │ │ │ ├── httpTrigger-mac-32~dark~sel@2x.png │ │ │ ├── httpTrigger-mac-32~sel.png │ │ │ ├── httpTrigger-mac-32~sel@2x.png │ │ │ └── httpTrigger.png │ ├── HttpTriggerFSharp.fs │ ├── function.json │ ├── metadata.json │ ├── readme.md │ └── sample.dat │ ├── HttpTrigger-JavaScript │ ├── function.json │ ├── index.js │ ├── metadata.json │ └── sample.dat │ ├── HttpTrigger-PowerShell │ ├── function.json │ ├── metadata.json │ ├── run.ps1 │ └── sample.dat │ ├── HttpTrigger-Python │ ├── __init__.py │ ├── function.json │ ├── metadata.json │ └── sample.dat │ ├── HttpTrigger-TypeScript │ ├── function.json │ ├── index.ts │ ├── metadata.json │ └── sample.dat │ ├── HttpTriggerWithOpenAPI-CSharp │ ├── .template.config │ │ ├── template.json │ │ ├── vs-2017.3.host.json │ │ └── vs-2017.3 │ │ │ ├── httpTrigger-mac-32.png │ │ │ ├── httpTrigger-mac-32@2x.png │ │ │ ├── httpTrigger-mac-32~dark.png │ │ │ ├── httpTrigger-mac-32~dark@2x.png │ │ │ ├── httpTrigger-mac-32~dark~sel.png │ │ │ ├── httpTrigger-mac-32~dark~sel@2x.png │ │ │ ├── httpTrigger-mac-32~sel.png │ │ │ ├── httpTrigger-mac-32~sel@2x.png │ │ │ └── httpTrigger.png │ ├── HttpTriggerWithOpenAPICSharp.cs │ ├── function.json │ ├── metadata.json │ ├── readme.md │ └── sample.dat │ ├── IoTHubTrigger-CSharp │ ├── .template.config │ │ ├── template.json │ │ ├── vs-2017.3.host.json │ │ └── vs-2017.3 │ │ │ ├── eventhub-mac-32.png │ │ │ ├── eventhub-mac-32@2x.png │ │ │ ├── eventhub-mac-32~dark.png │ │ │ ├── eventhub-mac-32~dark@2x.png │ │ │ ├── eventhub-mac-32~dark~sel.png │ │ │ ├── eventhub-mac-32~dark~sel@2x.png │ │ │ ├── eventhub-mac-32~sel.png │ │ │ ├── eventhub-mac-32~sel@2x.png │ │ │ └── eventhub.png │ ├── IotHubTriggerCSharp.cs │ ├── function.json │ ├── metadata.json │ ├── run.csx │ └── sample.dat │ ├── IoTHubTrigger-Custom │ ├── function.json │ └── metadata.json │ ├── IoTHubTrigger-JavaScript │ ├── function.json │ ├── index.js │ ├── metadata.json │ └── sample.dat │ ├── IoTHubTrigger-PowerShell │ ├── function.json │ ├── metadata.json │ ├── run.ps1 │ └── sample.dat │ ├── IoTHubTrigger-TypeScript │ ├── function.json │ ├── index.ts │ ├── metadata.json │ └── sample.dat │ ├── KafkaOutput-CSharp │ ├── .template.config │ │ ├── template.json │ │ ├── vs-2017.3.host.json │ │ └── vs-2017.3 │ │ │ ├── functionF-mac-32.png │ │ │ ├── functionF-mac-32@2x.png │ │ │ ├── functionF-mac-32~dark.png │ │ │ ├── functionF-mac-32~dark@2x.png │ │ │ ├── functionF-mac-32~dark~sel.png │ │ │ ├── functionF-mac-32~dark~sel@2x.png │ │ │ ├── functionF-mac-32~sel.png │ │ │ ├── functionF-mac-32~sel@2x.png │ │ │ └── functionF.png │ ├── KafkaOutputCSharp.cs │ ├── function.json │ ├── metadata.json │ ├── readme.md │ ├── run.csx │ └── sample.dat │ ├── KafkaOutput-JavaScript │ ├── function.json │ ├── index.js │ ├── metadata.json │ ├── readme.md │ └── sample.dat │ ├── KafkaOutput-PowerShell │ ├── function.json │ ├── metadata.json │ ├── readme.md │ ├── run.ps1 │ └── sample.dat │ ├── KafkaOutput-Python │ ├── __init__.py │ ├── function.json │ ├── metadata.json │ ├── readme.md │ └── sample.dat │ ├── KafkaOutput-TypeScript │ ├── function.json │ ├── index.ts │ ├── metadata.json │ ├── readme.md │ └── sample.dat │ ├── KafkaTrigger-CSharp │ ├── .template.config │ │ ├── template.json │ │ ├── vs-2017.3.host.json │ │ └── vs-2017.3 │ │ │ ├── functionF-mac-32.png │ │ │ ├── functionF-mac-32@2x.png │ │ │ ├── functionF-mac-32~dark.png │ │ │ ├── functionF-mac-32~dark@2x.png │ │ │ ├── functionF-mac-32~dark~sel.png │ │ │ ├── functionF-mac-32~dark~sel@2x.png │ │ │ ├── functionF-mac-32~sel.png │ │ │ ├── functionF-mac-32~sel@2x.png │ │ │ └── functionF.png │ ├── KafkaTriggerCSharp.cs │ ├── function.json │ ├── metadata.json │ ├── readme.md │ ├── run.csx │ └── sample.dat │ ├── KafkaTrigger-Custom │ ├── function.json │ └── metadata.json │ ├── KafkaTrigger-JavaScript │ ├── function.json │ ├── index.js │ ├── metadata.json │ ├── readme.md │ └── sample.dat │ ├── KafkaTrigger-PowerShell │ ├── function.json │ ├── metadata.json │ ├── readme.md │ ├── run.ps1 │ └── sample.dat │ ├── KafkaTrigger-Python │ ├── __init__.py │ ├── function.json │ ├── metadata.json │ ├── readme.md │ └── sample.dat │ ├── KafkaTrigger-TypeScript │ ├── function.json │ ├── index.ts │ ├── metadata.json │ ├── readme.md │ └── sample.dat │ ├── KustoInputBinding-CSharp-Isolated │ ├── .template.config │ │ ├── template.json │ │ ├── vs-2017.3.host.json │ │ └── vs-2017.3 │ │ │ ├── functionF-mac-32.png │ │ │ ├── functionF-mac-32@2x.png │ │ │ ├── functionF-mac-32~dark.png │ │ │ ├── functionF-mac-32~dark@2x.png │ │ │ ├── functionF-mac-32~dark~sel.png │ │ │ ├── functionF-mac-32~dark~sel@2x.png │ │ │ ├── functionF-mac-32~sel.png │ │ │ ├── functionF-mac-32~sel@2x.png │ │ │ └── functionF.png │ └── KustoInputBindingIsolated.cs │ ├── KustoInputBinding-CSharp │ ├── .template.config │ │ ├── template.json │ │ ├── vs-2017.3.host.json │ │ └── vs-2017.3 │ │ │ ├── functionF-mac-32.png │ │ │ ├── functionF-mac-32@2x.png │ │ │ ├── functionF-mac-32~dark.png │ │ │ ├── functionF-mac-32~dark@2x.png │ │ │ ├── functionF-mac-32~dark~sel.png │ │ │ ├── functionF-mac-32~dark~sel@2x.png │ │ │ ├── functionF-mac-32~sel.png │ │ │ ├── functionF-mac-32~sel@2x.png │ │ │ └── functionF.png │ ├── KustoInputBindingCSharp.cs │ └── readme.md │ ├── KustoInputBinding-JavaScript │ ├── function.json │ ├── index.js │ ├── metadata.json │ └── readme.md │ ├── KustoInputBinding-Python │ ├── __init__.py │ ├── function.json │ ├── metadata.json │ └── readme.md │ ├── KustoOutputBinding-CSharp-Isolated │ ├── .template.config │ │ ├── template.json │ │ ├── vs-2017.3.host.json │ │ └── vs-2017.3 │ │ │ ├── functionF-mac-32.png │ │ │ ├── functionF-mac-32@2x.png │ │ │ ├── functionF-mac-32~dark.png │ │ │ ├── functionF-mac-32~dark@2x.png │ │ │ ├── functionF-mac-32~dark~sel.png │ │ │ ├── functionF-mac-32~dark~sel@2x.png │ │ │ ├── functionF-mac-32~sel.png │ │ │ ├── functionF-mac-32~sel@2x.png │ │ │ └── functionF.png │ └── KustoOutputBindingIsolated.cs │ ├── KustoOutputBinding-CSharp │ ├── .template.config │ │ ├── template.json │ │ ├── vs-2017.3.host.json │ │ └── vs-2017.3 │ │ │ ├── functionF-mac-32.png │ │ │ ├── functionF-mac-32@2x.png │ │ │ ├── functionF-mac-32~dark.png │ │ │ ├── functionF-mac-32~dark@2x.png │ │ │ ├── functionF-mac-32~dark~sel.png │ │ │ ├── functionF-mac-32~dark~sel@2x.png │ │ │ ├── functionF-mac-32~sel.png │ │ │ ├── functionF-mac-32~sel@2x.png │ │ │ └── functionF.png │ ├── KustoOutputBindingCSharp.cs │ └── readme.md │ ├── KustoOutputBinding-JavaScript │ ├── function.json │ ├── index.js │ ├── metadata.json │ └── readme.md │ ├── KustoOutputBinding-Python │ ├── __init__.py │ ├── function.json │ ├── metadata.json │ └── readme.md │ ├── MySqlInputBinding-CSharp-Isolated │ ├── .template.config │ │ ├── template.json │ │ ├── vs-2017.3.host.json │ │ └── vs-2017.3 │ │ │ ├── functionF-mac-32.png │ │ │ ├── functionF-mac-32@2x.png │ │ │ ├── functionF-mac-32~dark.png │ │ │ ├── functionF-mac-32~dark@2x.png │ │ │ ├── functionF-mac-32~dark~sel.png │ │ │ ├── functionF-mac-32~dark~sel@2x.png │ │ │ ├── functionF-mac-32~sel.png │ │ │ ├── functionF-mac-32~sel@2x.png │ │ │ └── functionF.png │ └── MySqlInputBindingHttpTriggerCSharp.cs │ ├── MySqlInputBinding-CSharp │ ├── .template.config │ │ ├── template.json │ │ ├── vs-2017.3.host.json │ │ └── vs-2017.3 │ │ │ ├── functionF-mac-32.png │ │ │ ├── functionF-mac-32@2x.png │ │ │ ├── functionF-mac-32~dark.png │ │ │ ├── functionF-mac-32~dark@2x.png │ │ │ ├── functionF-mac-32~dark~sel.png │ │ │ ├── functionF-mac-32~dark~sel@2x.png │ │ │ ├── functionF-mac-32~sel.png │ │ │ ├── functionF-mac-32~sel@2x.png │ │ │ └── functionF.png │ ├── MySqlInputBindingCSharp.cs │ ├── function.json │ ├── metadata.json │ └── readme.md │ ├── MySqlInputBinding-JavaScript │ ├── function.json │ ├── index.js │ ├── metadata.json │ └── readme.md │ ├── MySqlInputBinding-PowerShell │ ├── function.json │ ├── metadata.json │ ├── readme.md │ └── run.ps1 │ ├── MySqlInputBinding-Python │ ├── __init__.py │ ├── function.json │ ├── metadata.json │ └── readme.md │ ├── MySqlInputBinding-Typescript │ ├── function.json │ ├── index.ts │ ├── metadata.json │ └── readme.md │ ├── MySqlOutputBinding-CSharp-Isolated │ ├── .template.config │ │ ├── template.json │ │ ├── vs-2017.3.host.json │ │ └── vs-2017.3 │ │ │ ├── functionF-mac-32.png │ │ │ ├── functionF-mac-32@2x.png │ │ │ ├── functionF-mac-32~dark.png │ │ │ ├── functionF-mac-32~dark@2x.png │ │ │ ├── functionF-mac-32~dark~sel.png │ │ │ ├── functionF-mac-32~dark~sel@2x.png │ │ │ ├── functionF-mac-32~sel.png │ │ │ ├── functionF-mac-32~sel@2x.png │ │ │ └── functionF.png │ └── MySqlOutputBindingHttpTriggerCSharp.cs │ ├── MySqlOutputBinding-CSharp │ ├── .template.config │ │ ├── template.json │ │ ├── vs-2017.3.host.json │ │ └── vs-2017.3 │ │ │ ├── functionF-mac-32.png │ │ │ ├── functionF-mac-32@2x.png │ │ │ ├── functionF-mac-32~dark.png │ │ │ ├── functionF-mac-32~dark@2x.png │ │ │ ├── functionF-mac-32~dark~sel.png │ │ │ ├── functionF-mac-32~dark~sel@2x.png │ │ │ ├── functionF-mac-32~sel.png │ │ │ ├── functionF-mac-32~sel@2x.png │ │ │ └── functionF.png │ ├── MySqlOutputBindingCSharp.cs │ ├── function.json │ ├── metadata.json │ └── readme.md │ ├── MySqlOutputBinding-JavaScript │ ├── function.json │ ├── index.js │ ├── metadata.json │ └── readme.md │ ├── MySqlOutputBinding-PowerShell │ ├── function.json │ ├── metadata.json │ ├── readme.md │ └── run.ps1 │ ├── MySqlOutputBinding-Python │ ├── __init__.py │ ├── function.json │ ├── metadata.json │ └── readme.md │ ├── MySqlOutputBinding-Typescript │ ├── function.json │ ├── index.ts │ ├── metadata.json │ └── readme.md │ ├── QueueTrigger-CSharp-3.x │ ├── .template.config │ │ ├── template.json │ │ ├── vs-2017.3.host.json │ │ └── vs-2017.3 │ │ │ ├── queue-mac-32.png │ │ │ ├── queue-mac-32@2x.png │ │ │ ├── queue-mac-32~dark.png │ │ │ ├── queue-mac-32~dark@2x.png │ │ │ ├── queue-mac-32~dark~sel.png │ │ │ ├── queue-mac-32~dark~sel@2x.png │ │ │ ├── queue-mac-32~sel.png │ │ │ ├── queue-mac-32~sel@2x.png │ │ │ └── queue.png │ ├── QueueTriggerCSharp.cs │ ├── function.json │ ├── metadata.json │ ├── readme.md │ ├── run.csx │ └── sample.dat │ ├── QueueTrigger-CSharp-4.x │ ├── .template.config │ │ ├── template.json │ │ ├── vs-2017.3.host.json │ │ └── vs-2017.3 │ │ │ ├── queue-mac-32.png │ │ │ ├── queue-mac-32@2x.png │ │ │ ├── queue-mac-32~dark.png │ │ │ ├── queue-mac-32~dark@2x.png │ │ │ ├── queue-mac-32~dark~sel.png │ │ │ ├── queue-mac-32~dark~sel@2x.png │ │ │ ├── queue-mac-32~sel.png │ │ │ ├── queue-mac-32~sel@2x.png │ │ │ └── queue.png │ ├── QueueTriggerCSharp.cs │ ├── function.json │ ├── metadata.json │ ├── readme.md │ ├── run.csx │ └── sample.dat │ ├── QueueTrigger-CSharp-5.x │ ├── .template.config │ │ ├── template.json │ │ ├── vs-2017.3.host.json │ │ └── vs-2017.3 │ │ │ ├── queue-mac-32.png │ │ │ ├── queue-mac-32@2x.png │ │ │ ├── queue-mac-32~dark.png │ │ │ ├── queue-mac-32~dark@2x.png │ │ │ ├── queue-mac-32~dark~sel.png │ │ │ ├── queue-mac-32~dark~sel@2x.png │ │ │ ├── queue-mac-32~sel.png │ │ │ ├── queue-mac-32~sel@2x.png │ │ │ └── queue.png │ ├── QueueTriggerCSharp.cs │ ├── function.json │ ├── metadata.json │ ├── readme.md │ ├── run.csx │ └── sample.dat │ ├── QueueTrigger-CSharp-Isolated │ ├── .template.config │ │ ├── template.json │ │ ├── vs-2017.3.host.json │ │ └── vs-2017.3 │ │ │ ├── queue-mac-32.png │ │ │ ├── queue-mac-32@2x.png │ │ │ ├── queue-mac-32~dark.png │ │ │ ├── queue-mac-32~dark@2x.png │ │ │ ├── queue-mac-32~dark~sel.png │ │ │ ├── queue-mac-32~dark~sel@2x.png │ │ │ ├── queue-mac-32~sel.png │ │ │ ├── queue-mac-32~sel@2x.png │ │ │ └── queue.png │ └── QueueTriggerCSharp.cs │ ├── QueueTrigger-Custom │ ├── function.json │ └── metadata.json │ ├── QueueTrigger-FSharp-3.x │ ├── .template.config │ │ ├── template.json │ │ ├── vs-2017.3.host.json │ │ └── vs-2017.3 │ │ │ ├── queue-mac-32.png │ │ │ ├── queue-mac-32@2x.png │ │ │ ├── queue-mac-32~dark.png │ │ │ ├── queue-mac-32~dark@2x.png │ │ │ ├── queue-mac-32~dark~sel.png │ │ │ ├── queue-mac-32~dark~sel@2x.png │ │ │ ├── queue-mac-32~sel.png │ │ │ ├── queue-mac-32~sel@2x.png │ │ │ └── queue.png │ ├── QueueTriggerFSharp.fs │ ├── function.json │ └── metadata.json │ ├── QueueTrigger-FSharp-4.x │ ├── .template.config │ │ ├── template.json │ │ ├── vs-2017.3.host.json │ │ └── vs-2017.3 │ │ │ ├── queue-mac-32.png │ │ │ ├── queue-mac-32@2x.png │ │ │ ├── queue-mac-32~dark.png │ │ │ ├── queue-mac-32~dark@2x.png │ │ │ ├── queue-mac-32~dark~sel.png │ │ │ ├── queue-mac-32~dark~sel@2x.png │ │ │ ├── queue-mac-32~sel.png │ │ │ ├── queue-mac-32~sel@2x.png │ │ │ └── queue.png │ ├── QueueTriggerFSharp.fs │ ├── function.json │ └── readme.md │ ├── QueueTrigger-FSharp-5.x │ ├── .template.config │ │ ├── template.json │ │ ├── vs-2017.3.host.json │ │ └── vs-2017.3 │ │ │ ├── queue-mac-32.png │ │ │ ├── queue-mac-32@2x.png │ │ │ ├── queue-mac-32~dark.png │ │ │ ├── queue-mac-32~dark@2x.png │ │ │ ├── queue-mac-32~dark~sel.png │ │ │ ├── queue-mac-32~dark~sel@2x.png │ │ │ ├── queue-mac-32~sel.png │ │ │ ├── queue-mac-32~sel@2x.png │ │ │ └── queue.png │ ├── QueueTriggerFSharp.fs │ └── readme.md │ ├── QueueTrigger-FSharp-Isolated │ ├── .template.config │ │ ├── template.json │ │ ├── vs-2017.3.host.json │ │ └── vs-2017.3 │ │ │ ├── queue-mac-32.png │ │ │ ├── queue-mac-32@2x.png │ │ │ ├── queue-mac-32~dark.png │ │ │ ├── queue-mac-32~dark@2x.png │ │ │ ├── queue-mac-32~dark~sel.png │ │ │ ├── queue-mac-32~dark~sel@2x.png │ │ │ ├── queue-mac-32~sel.png │ │ │ ├── queue-mac-32~sel@2x.png │ │ │ └── queue.png │ └── QueueTriggerFSharp.fs │ ├── QueueTrigger-JavaScript │ ├── function.json │ ├── index.js │ ├── metadata.json │ ├── readme.md │ └── sample.dat │ ├── QueueTrigger-PowerShell │ ├── function.json │ ├── metadata.json │ ├── readme.md │ ├── run.ps1 │ └── sample.dat │ ├── QueueTrigger-Python │ ├── __init__.py │ ├── function.json │ ├── metadata.json │ ├── readme.md │ └── sample.dat │ ├── QueueTrigger-TypeScript │ ├── function.json │ ├── index.ts │ ├── metadata.json │ ├── readme.md │ └── sample.dat │ ├── RabbitMQTrigger-CSharp-Isolated │ ├── .template.config │ │ ├── template.json │ │ ├── vs-2017.3.host.json │ │ └── vs-2017.3 │ │ │ ├── functionF-mac-32.png │ │ │ ├── functionF-mac-32@2x.png │ │ │ ├── functionF-mac-32~dark.png │ │ │ ├── functionF-mac-32~dark@2x.png │ │ │ ├── functionF-mac-32~dark~sel.png │ │ │ ├── functionF-mac-32~dark~sel@2x.png │ │ │ ├── functionF-mac-32~sel.png │ │ │ ├── functionF-mac-32~sel@2x.png │ │ │ └── functionF.png │ ├── RabbitMQTriggerCSharp.cs │ └── readme.md │ ├── RabbitMQTrigger-CSharp │ ├── .template.config │ │ ├── template.json │ │ ├── vs-2017.3.host.json │ │ └── vs-2017.3 │ │ │ ├── functionF-mac-32.png │ │ │ ├── functionF-mac-32@2x.png │ │ │ ├── functionF-mac-32~dark.png │ │ │ ├── functionF-mac-32~dark@2x.png │ │ │ ├── functionF-mac-32~dark~sel.png │ │ │ ├── functionF-mac-32~dark~sel@2x.png │ │ │ ├── functionF-mac-32~sel.png │ │ │ ├── functionF-mac-32~sel@2x.png │ │ │ └── functionF.png │ ├── RabbitMQTriggerCSharp.cs │ ├── function.json │ ├── metadata.json │ ├── readme.md │ ├── run.csx │ └── sample.dat │ ├── RabbitMQTrigger-Custom │ ├── function.json │ └── metadata.json │ ├── RabbitMQTrigger-JavaScript │ ├── function.json │ ├── index.js │ ├── metadata.json │ ├── readme.md │ └── sample.dat │ ├── RabbitMQTrigger-PowerShell │ ├── function.json │ ├── metadata.json │ ├── readme.md │ ├── run.ps1 │ └── sample.dat │ ├── RabbitMQTrigger-Python │ ├── __init__.py │ ├── function.json │ ├── metadata.json │ ├── readme.md │ └── sample.dat │ ├── RabbitMQTrigger-TypeScript │ ├── function.json │ ├── index.ts │ ├── metadata.json │ ├── readme.md │ └── sample.dat │ ├── ScheduledMail-CSharp │ ├── function.json │ ├── metadata.json │ └── run.csx │ ├── SendGrid-CSharp-3.x │ ├── .template.config │ │ ├── template.json │ │ ├── vs-2017.3.host.json │ │ └── vs-2017.3 │ │ │ ├── functionF-mac-32.png │ │ │ ├── functionF-mac-32@2x.png │ │ │ ├── functionF-mac-32~dark.png │ │ │ ├── functionF-mac-32~dark@2x.png │ │ │ ├── functionF-mac-32~dark~sel.png │ │ │ ├── functionF-mac-32~dark~sel@2x.png │ │ │ ├── functionF-mac-32~sel.png │ │ │ ├── functionF-mac-32~sel@2x.png │ │ │ └── functionF.png │ ├── SendGridCSharp.cs │ ├── function.json │ ├── metadata.json │ ├── run.csx │ └── sample.dat │ ├── SendGrid-Custom │ ├── function.json │ └── metadata.json │ ├── SendGrid-JavaScript │ ├── function.json │ ├── index.js │ ├── metadata.json │ └── sample.dat │ ├── SendGrid-PowerShell │ ├── function.json │ ├── metadata.json │ ├── run.ps1 │ └── sample.dat │ ├── SendGrid-TypeScript │ ├── function.json │ ├── index.ts │ ├── metadata.json │ └── sample.dat │ ├── ServiceBusQueueTrigger-CSharp-5.x │ ├── .template.config │ │ ├── template.json │ │ ├── vs-2017.3.host.json │ │ └── vs-2017.3 │ │ │ ├── servicebus-mac-32.png │ │ │ ├── servicebus-mac-32@2x.png │ │ │ ├── servicebus-mac-32~dark.png │ │ │ ├── servicebus-mac-32~dark@2x.png │ │ │ ├── servicebus-mac-32~dark~sel.png │ │ │ ├── servicebus-mac-32~dark~sel@2x.png │ │ │ ├── servicebus-mac-32~sel.png │ │ │ ├── servicebus-mac-32~sel@2x.png │ │ │ └── servicebus.png │ ├── ServiceBusQueueTriggerCSharp.cs │ ├── function.json │ ├── metadata.json │ ├── run.csx │ └── sample.dat │ ├── ServiceBusQueueTrigger-CSharp-Isolated │ ├── .template.config │ │ ├── template.json │ │ ├── vs-2017.3.host.json │ │ └── vs-2017.3 │ │ │ ├── servicebus-mac-32.png │ │ │ ├── servicebus-mac-32@2x.png │ │ │ ├── servicebus-mac-32~dark.png │ │ │ ├── servicebus-mac-32~dark@2x.png │ │ │ ├── servicebus-mac-32~dark~sel.png │ │ │ ├── servicebus-mac-32~dark~sel@2x.png │ │ │ ├── servicebus-mac-32~sel.png │ │ │ ├── servicebus-mac-32~sel@2x.png │ │ │ └── servicebus.png │ └── ServiceBusQueueTriggerCSharp.cs │ ├── ServiceBusQueueTrigger-CSharp │ ├── .template.config │ │ ├── template.json │ │ ├── vs-2017.3.host.json │ │ └── vs-2017.3 │ │ │ ├── servicebus-mac-32.png │ │ │ ├── servicebus-mac-32@2x.png │ │ │ ├── servicebus-mac-32~dark.png │ │ │ ├── servicebus-mac-32~dark@2x.png │ │ │ ├── servicebus-mac-32~dark~sel.png │ │ │ ├── servicebus-mac-32~dark~sel@2x.png │ │ │ ├── servicebus-mac-32~sel.png │ │ │ ├── servicebus-mac-32~sel@2x.png │ │ │ └── servicebus.png │ ├── ServiceBusQueueTriggerCSharp.cs │ ├── function.json │ ├── metadata.json │ ├── run.csx │ └── sample.dat │ ├── ServiceBusQueueTrigger-Custom │ ├── function.json │ └── metadata.json │ ├── ServiceBusQueueTrigger-JavaScript │ ├── function.json │ ├── index.js │ ├── metadata.json │ └── sample.dat │ ├── ServiceBusQueueTrigger-PowerShell │ ├── function.json │ ├── metadata.json │ ├── run.ps1 │ └── sample.dat │ ├── ServiceBusQueueTrigger-Python │ ├── __init__.py │ ├── function.json │ ├── metadata.json │ └── sample.dat │ ├── ServiceBusQueueTrigger-TypeScript │ ├── function.json │ ├── index.ts │ ├── metadata.json │ └── sample.dat │ ├── ServiceBusTopicTrigger-CSharp-5.x │ ├── .template.config │ │ ├── template.json │ │ ├── vs-2017.3.host.json │ │ └── vs-2017.3 │ │ │ ├── servicebus-mac-32.png │ │ │ ├── servicebus-mac-32@2x.png │ │ │ ├── servicebus-mac-32~dark.png │ │ │ ├── servicebus-mac-32~dark@2x.png │ │ │ ├── servicebus-mac-32~dark~sel.png │ │ │ ├── servicebus-mac-32~dark~sel@2x.png │ │ │ ├── servicebus-mac-32~sel.png │ │ │ ├── servicebus-mac-32~sel@2x.png │ │ │ └── servicebus.png │ ├── ServiceBusTopicTriggerCSharp.cs │ ├── function.json │ ├── metadata.json │ ├── run.csx │ └── sample.dat │ ├── ServiceBusTopicTrigger-CSharp-Isolated │ ├── .template.config │ │ ├── template.json │ │ ├── vs-2017.3.host.json │ │ └── vs-2017.3 │ │ │ ├── servicebus-mac-32.png │ │ │ ├── servicebus-mac-32@2x.png │ │ │ ├── servicebus-mac-32~dark.png │ │ │ ├── servicebus-mac-32~dark@2x.png │ │ │ ├── servicebus-mac-32~dark~sel.png │ │ │ ├── servicebus-mac-32~dark~sel@2x.png │ │ │ ├── servicebus-mac-32~sel.png │ │ │ ├── servicebus-mac-32~sel@2x.png │ │ │ └── servicebus.png │ └── ServiceBusTopicTriggerCSharp.cs │ ├── ServiceBusTopicTrigger-CSharp │ ├── .template.config │ │ ├── template.json │ │ ├── vs-2017.3.host.json │ │ └── vs-2017.3 │ │ │ ├── servicebus-mac-32.png │ │ │ ├── servicebus-mac-32@2x.png │ │ │ ├── servicebus-mac-32~dark.png │ │ │ ├── servicebus-mac-32~dark@2x.png │ │ │ ├── servicebus-mac-32~dark~sel.png │ │ │ ├── servicebus-mac-32~dark~sel@2x.png │ │ │ ├── servicebus-mac-32~sel.png │ │ │ ├── servicebus-mac-32~sel@2x.png │ │ │ └── servicebus.png │ ├── ServiceBusTopicTriggerCSharp.cs │ ├── function.json │ ├── metadata.json │ ├── run.csx │ └── sample.dat │ ├── ServiceBusTopicTrigger-Custom │ ├── function.json │ └── metadata.json │ ├── ServiceBusTopicTrigger-JavaScript │ ├── function.json │ ├── index.js │ ├── metadata.json │ └── sample.dat │ ├── ServiceBusTopicTrigger-PowerShell │ ├── function.json │ ├── metadata.json │ ├── run.ps1 │ └── sample.dat │ ├── ServiceBusTopicTrigger-Python │ ├── README.md │ ├── __init__.py │ ├── function.json │ ├── metadata.json │ └── sample.dat │ ├── ServiceBusTopicTrigger-TypeScript │ ├── function.json │ ├── index.ts │ ├── metadata.json │ └── sample.dat │ ├── SignalRConnectionInfoHttpTrigger-CSharp-Isolated │ ├── .template.config │ │ ├── template.json │ │ ├── vs-2017.3.host.json │ │ └── vs-2017.3 │ │ │ ├── functionF-mac-32.png │ │ │ ├── functionF-mac-32@2x.png │ │ │ ├── functionF-mac-32~dark.png │ │ │ ├── functionF-mac-32~dark@2x.png │ │ │ ├── functionF-mac-32~dark~sel.png │ │ │ ├── functionF-mac-32~dark~sel@2x.png │ │ │ ├── functionF-mac-32~sel.png │ │ │ ├── functionF-mac-32~sel@2x.png │ │ │ └── functionF.png │ └── SignalRConnectionInfoHttpTriggerCSharp.cs │ ├── SignalRConnectionInfoHttpTrigger-CSharp │ ├── .template.config │ │ ├── template.json │ │ ├── vs-2017.3.host.json │ │ └── vs-2017.3 │ │ │ ├── functionF-mac-32.png │ │ │ ├── functionF-mac-32@2x.png │ │ │ ├── functionF-mac-32~dark.png │ │ │ ├── functionF-mac-32~dark@2x.png │ │ │ ├── functionF-mac-32~dark~sel.png │ │ │ ├── functionF-mac-32~dark~sel@2x.png │ │ │ ├── functionF-mac-32~sel.png │ │ │ ├── functionF-mac-32~sel@2x.png │ │ │ └── functionF.png │ ├── SignalRConnectionInfoHttpTriggerCSharp.cs │ ├── function.json │ ├── metadata.json │ ├── run.csx │ └── sample.dat │ ├── SignalRConnectionInfoHttpTrigger-Custom │ ├── function.json │ └── metadata.json │ ├── SignalRConnectionInfoHttpTrigger-JavaScript │ ├── function.json │ ├── index.js │ ├── metadata.json │ └── sample.dat │ ├── SignalRConnectionInfoHttpTrigger-PowerShell │ ├── function.json │ ├── metadata.json │ ├── run.ps1 │ └── sample.dat │ ├── SignalRConnectionInfoHttpTrigger-TypeScript │ ├── function.json │ ├── index.ts │ ├── metadata.json │ └── sample.dat │ ├── SqlInputBinding-CSharp-Isolated │ ├── .template.config │ │ ├── template.json │ │ ├── vs-2017.3.host.json │ │ └── vs-2017.3 │ │ │ ├── functionF-mac-32.png │ │ │ ├── functionF-mac-32@2x.png │ │ │ ├── functionF-mac-32~dark.png │ │ │ ├── functionF-mac-32~dark@2x.png │ │ │ ├── functionF-mac-32~dark~sel.png │ │ │ ├── functionF-mac-32~dark~sel@2x.png │ │ │ ├── functionF-mac-32~sel.png │ │ │ ├── functionF-mac-32~sel@2x.png │ │ │ └── functionF.png │ └── SqlInputBindingHttpTriggerCSharp.cs │ ├── SqlInputBinding-CSharp │ ├── .template.config │ │ ├── template.json │ │ ├── vs-2017.3.host.json │ │ └── vs-2017.3 │ │ │ ├── functionF-mac-32.png │ │ │ ├── functionF-mac-32@2x.png │ │ │ ├── functionF-mac-32~dark.png │ │ │ ├── functionF-mac-32~dark@2x.png │ │ │ ├── functionF-mac-32~dark~sel.png │ │ │ ├── functionF-mac-32~dark~sel@2x.png │ │ │ ├── functionF-mac-32~sel.png │ │ │ ├── functionF-mac-32~sel@2x.png │ │ │ └── functionF.png │ ├── SqlInputBindingCSharp.cs │ ├── function.json │ ├── metadata.json │ └── readme.md │ ├── SqlInputBinding-JavaScript │ ├── function.json │ ├── index.js │ ├── metadata.json │ └── readme.md │ ├── SqlInputBinding-PowerShell │ ├── function.json │ ├── metadata.json │ ├── readme.md │ └── run.ps1 │ ├── SqlInputBinding-Python │ ├── __init__.py │ ├── function.json │ ├── metadata.json │ └── readme.md │ ├── SqlInputBinding-Typescript │ ├── function.json │ ├── index.ts │ ├── metadata.json │ └── readme.md │ ├── SqlOutputBinding-CSharp-Isolated │ ├── .template.config │ │ ├── template.json │ │ ├── vs-2017.3.host.json │ │ └── vs-2017.3 │ │ │ ├── functionF-mac-32.png │ │ │ ├── functionF-mac-32@2x.png │ │ │ ├── functionF-mac-32~dark.png │ │ │ ├── functionF-mac-32~dark@2x.png │ │ │ ├── functionF-mac-32~dark~sel.png │ │ │ ├── functionF-mac-32~dark~sel@2x.png │ │ │ ├── functionF-mac-32~sel.png │ │ │ ├── functionF-mac-32~sel@2x.png │ │ │ └── functionF.png │ └── SqlOutputBindingHttpTriggerCSharp.cs │ ├── SqlOutputBinding-CSharp │ ├── .template.config │ │ ├── template.json │ │ ├── vs-2017.3.host.json │ │ └── vs-2017.3 │ │ │ ├── functionF-mac-32.png │ │ │ ├── functionF-mac-32@2x.png │ │ │ ├── functionF-mac-32~dark.png │ │ │ ├── functionF-mac-32~dark@2x.png │ │ │ ├── functionF-mac-32~dark~sel.png │ │ │ ├── functionF-mac-32~dark~sel@2x.png │ │ │ ├── functionF-mac-32~sel.png │ │ │ ├── functionF-mac-32~sel@2x.png │ │ │ └── functionF.png │ ├── SqlOutputBindingCSharp.cs │ ├── function.json │ ├── metadata.json │ └── readme.md │ ├── SqlOutputBinding-JavaScript │ ├── function.json │ ├── index.js │ ├── metadata.json │ └── readme.md │ ├── SqlOutputBinding-PowerShell │ ├── function.json │ ├── metadata.json │ ├── readme.md │ └── run.ps1 │ ├── SqlOutputBinding-Python │ ├── __init__.py │ ├── function.json │ ├── metadata.json │ └── readme.md │ ├── SqlOutputBinding-Typescript │ ├── function.json │ ├── index.ts │ ├── metadata.json │ └── readme.md │ ├── SqlTrigger-CSharp-Isolated │ ├── .template.config │ │ ├── template.json │ │ ├── vs-2017.3.host.json │ │ └── vs-2017.3 │ │ │ ├── functionF-mac-32.png │ │ │ ├── functionF-mac-32@2x.png │ │ │ ├── functionF-mac-32~dark.png │ │ │ ├── functionF-mac-32~dark@2x.png │ │ │ ├── functionF-mac-32~dark~sel.png │ │ │ ├── functionF-mac-32~dark~sel@2x.png │ │ │ ├── functionF-mac-32~sel.png │ │ │ ├── functionF-mac-32~sel@2x.png │ │ │ └── functionF.png │ └── SqlTriggerBindingCSharp.cs │ ├── SqlTrigger-CSharp │ ├── .template.config │ │ ├── template.json │ │ ├── vs-2017.3.host.json │ │ └── vs-2017.3 │ │ │ ├── functionF-mac-32.png │ │ │ ├── functionF-mac-32@2x.png │ │ │ ├── functionF-mac-32~dark.png │ │ │ ├── functionF-mac-32~dark@2x.png │ │ │ ├── functionF-mac-32~dark~sel.png │ │ │ ├── functionF-mac-32~dark~sel@2x.png │ │ │ ├── functionF-mac-32~sel.png │ │ │ ├── functionF-mac-32~sel@2x.png │ │ │ └── functionF.png │ ├── SqlTriggerBindingCSharp.cs │ ├── function.json │ ├── metadata.json │ └── readme.md │ ├── SqlTrigger-JavaScript │ ├── function.json │ ├── index.js │ ├── metadata.json │ └── readme.md │ ├── SqlTrigger-PowerShell │ ├── function.json │ ├── metadata.json │ ├── readme.md │ └── run.ps1 │ ├── SqlTrigger-Python │ ├── __init__.py │ ├── function.json │ ├── metadata.json │ └── readme.md │ ├── SqlTrigger-Typescript │ ├── function.json │ ├── index.ts │ ├── metadata.json │ └── readme.md │ ├── TimerTrigger-CSharp-Isolated │ ├── .template.config │ │ ├── template.json │ │ ├── vs-2017.3.host.json │ │ └── vs-2017.3 │ │ │ ├── timer-mac-32.png │ │ │ ├── timer-mac-32@2x.png │ │ │ ├── timer-mac-32~dark.png │ │ │ ├── timer-mac-32~dark@2x.png │ │ │ ├── timer-mac-32~dark~sel.png │ │ │ ├── timer-mac-32~dark~sel@2x.png │ │ │ ├── timer-mac-32~sel.png │ │ │ ├── timer-mac-32~sel@2x.png │ │ │ └── timer.png │ ├── TimerTriggerCSharp.cs │ └── readme.md │ ├── TimerTrigger-CSharp │ ├── .template.config │ │ ├── template.json │ │ ├── vs-2017.3.host.json │ │ └── vs-2017.3 │ │ │ ├── timer-mac-32.png │ │ │ ├── timer-mac-32@2x.png │ │ │ ├── timer-mac-32~dark.png │ │ │ ├── timer-mac-32~dark@2x.png │ │ │ ├── timer-mac-32~dark~sel.png │ │ │ ├── timer-mac-32~dark~sel@2x.png │ │ │ ├── timer-mac-32~sel.png │ │ │ ├── timer-mac-32~sel@2x.png │ │ │ └── timer.png │ ├── TimerTriggerCSharp.cs │ ├── function.json │ ├── metadata.json │ ├── readme.md │ ├── run.csx │ └── sample.dat │ ├── TimerTrigger-Custom │ ├── function.json │ └── metadata.json │ ├── TimerTrigger-FSharp-Isolated │ ├── .template.config │ │ ├── template.json │ │ ├── vs-2017.3.host.json │ │ └── vs-2017.3 │ │ │ ├── timer-mac-32.png │ │ │ ├── timer-mac-32@2x.png │ │ │ ├── timer-mac-32~dark.png │ │ │ ├── timer-mac-32~dark@2x.png │ │ │ ├── timer-mac-32~dark~sel.png │ │ │ ├── timer-mac-32~dark~sel@2x.png │ │ │ ├── timer-mac-32~sel.png │ │ │ ├── timer-mac-32~sel@2x.png │ │ │ └── timer.png │ ├── TimerTriggerFSharp.fs │ └── readme.md │ ├── TimerTrigger-FSharp │ ├── .template.config │ │ ├── template.json │ │ ├── vs-2017.3.host.json │ │ └── vs-2017.3 │ │ │ ├── timer-mac-32.png │ │ │ ├── timer-mac-32@2x.png │ │ │ ├── timer-mac-32~dark.png │ │ │ ├── timer-mac-32~dark@2x.png │ │ │ ├── timer-mac-32~dark~sel.png │ │ │ ├── timer-mac-32~dark~sel@2x.png │ │ │ ├── timer-mac-32~sel.png │ │ │ ├── timer-mac-32~sel@2x.png │ │ │ └── timer.png │ ├── TimerTriggerFSharp.fs │ ├── function.json │ ├── metadata.json │ ├── readme.md │ └── sample.dat │ ├── TimerTrigger-JavaScript │ ├── function.json │ ├── index.js │ ├── metadata.json │ ├── readme.md │ └── sample.dat │ ├── TimerTrigger-PowerShell │ ├── function.json │ ├── metadata.json │ ├── readme.md │ ├── run.ps1 │ └── sample.dat │ ├── TimerTrigger-Python │ ├── __init__.py │ ├── function.json │ ├── metadata.json │ ├── readme.md │ └── sample.dat │ └── TimerTrigger-TypeScript │ ├── function.json │ ├── index.ts │ ├── metadata.json │ └── readme.md ├── LICENSE.txt ├── README.md ├── SECURITY.md ├── Tools ├── CheckResourceStrings │ ├── CheckResourceStrings.sln │ └── CheckResourceStrings │ │ ├── CheckResourceStrings.csproj │ │ ├── FunctionsConstants.cs │ │ ├── Helper.cs │ │ ├── Program.cs │ │ ├── Properties │ │ └── launchSettings.json │ │ └── ResourceStringsObj.cs └── UpdateTemplatePackages.ps1 ├── eng ├── ci │ └── templates │ │ └── jobs │ │ ├── build.yml │ │ └── localization.yml ├── code-mirror.yml ├── official-build.yml └── public-build.yml └── package-lock.json /.gitignore: -------------------------------------------------------------------------------- 1 | .vs 2 | *.zip 3 | .vscode 4 | *.nupkg 5 | templates.json 6 | bin 7 | .idea 8 | 9 | obj 10 | Publish 11 | 12 | *.user 13 | *.suo 14 | *.cscfg 15 | *.Cache 16 | 17 | /packages 18 | **/node_modules 19 | /.output 20 | nuget.exe 21 | 22 | .env 23 | /Gulp/node_modules -------------------------------------------------------------------------------- /CODEOWNERS: -------------------------------------------------------------------------------- 1 | # See https://help.github.com/articles/about-codeowners/ 2 | # for more info about CODEOWNERS file 3 | # 4 | # It uses the same pattern rule for gitignore file 5 | # https://git-scm.com/docs/gitignore#_pattern_format 6 | # 7 | 8 | * @azure/azure-functions-extensions-bundle-admins 9 | -------------------------------------------------------------------------------- /Functions.Templates/Documentation/apiHubFileTrigger.md: -------------------------------------------------------------------------------- 1 | This feature is experimental. Docs will be coming soon! -------------------------------------------------------------------------------- /Functions.Templates/Documentation/authenticationEventsTrigger.md: -------------------------------------------------------------------------------- 1 | #### This feature is experimental. Docs will be coming soon! -------------------------------------------------------------------------------- /Functions.Templates/Documentation/botOut.md: -------------------------------------------------------------------------------- 1 | This feature is experimental. Docs will be coming soon! -------------------------------------------------------------------------------- /Functions.Templates/Documentation/entityTrigger.md: -------------------------------------------------------------------------------- 1 | #### Settings 2 | 3 | - `entity`: (optional) the name of the entity. If not specified uses the Function name. You use the entity name to start the given Function from an orchestration client -------------------------------------------------------------------------------- /Functions.Templates/Documentation/eventGridTrigger.md: -------------------------------------------------------------------------------- 1 | This feature is experimental. Docs will be coming soon! -------------------------------------------------------------------------------- /Functions.Templates/Documentation/orchestrationClientIn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-templates/44b0e29d1905fe518b0278445bb561556d1011f6/Functions.Templates/Documentation/orchestrationClientIn.md -------------------------------------------------------------------------------- /Functions.Templates/ProjectTemplate_v3.x/CSharp-Isolated/Properties/launchSettings.json: -------------------------------------------------------------------------------- 1 | { 2 | "profiles": { 3 | "Company.FunctionApp": { 4 | "commandName": "Project", 5 | "commandLineArgs": "--port 7071", 6 | "launchBrowser": false 7 | } 8 | } 9 | } -------------------------------------------------------------------------------- /Functions.Templates/ProjectTemplate_v3.x/CSharp-Isolated/local.settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "IsEncrypted": false, 3 | "Values": { 4 | "AzureWebJobsStorage": "AzureWebJobsStorageConnectionStringValue", 5 | "FUNCTIONS_WORKER_RUNTIME": "dotnet-isolated" 6 | } 7 | } -------------------------------------------------------------------------------- /Functions.Templates/ProjectTemplate_v3.x/CSharp/.template.config/dotnetcli.host.json: -------------------------------------------------------------------------------- 1 | { 2 | 3 | } -------------------------------------------------------------------------------- /Functions.Templates/ProjectTemplate_v3.x/CSharp/Properties/launchSettings.json: -------------------------------------------------------------------------------- 1 | { 2 | "profiles": { 3 | "Company.FunctionApp": { 4 | "commandName": "Project", 5 | "commandLineArgs": "--port 7071", 6 | "launchBrowser": false 7 | } 8 | } 9 | } -------------------------------------------------------------------------------- /Functions.Templates/ProjectTemplate_v3.x/CSharp/local.settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "IsEncrypted": false, 3 | "Values": { 4 | "AzureWebJobsStorage": "AzureWebJobsStorageConnectionStringValue", 5 | "FUNCTIONS_WORKER_RUNTIME": "dotnet" 6 | } 7 | } -------------------------------------------------------------------------------- /Functions.Templates/ProjectTemplate_v3.x/FSharp/.template.config/dotnetcli.host.json: -------------------------------------------------------------------------------- 1 | { 2 | 3 | } -------------------------------------------------------------------------------- /Functions.Templates/ProjectTemplate_v3.x/FSharp/local.settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "IsEncrypted": false, 3 | "Values": { 4 | "AzureWebJobsStorage": "AzureWebJobsStorageConnectionStringValue", 5 | "FUNCTIONS_WORKER_RUNTIME": "dotnet" 6 | } 7 | } -------------------------------------------------------------------------------- /Functions.Templates/ProjectTemplate_v4.x/CSharp-Isolated/.template.config/GlobalUsings.cs: -------------------------------------------------------------------------------- 1 | global using Microsoft.Azure.Functions.Worker; 2 | global using Microsoft.Azure.Functions.Worker.Http; 3 | global using Microsoft.Extensions.Hosting; 4 | global using Microsoft.Extensions.Logging; 5 | global using System.Net; 6 | -------------------------------------------------------------------------------- /Functions.Templates/ProjectTemplate_v4.x/CSharp-Isolated/Properties/launchSettings.json: -------------------------------------------------------------------------------- 1 | { 2 | "profiles": { 3 | "Company.FunctionApp": { 4 | "commandName": "Project", 5 | "commandLineArgs": "--port 7071", 6 | "launchBrowser": false 7 | } 8 | } 9 | } -------------------------------------------------------------------------------- /Functions.Templates/ProjectTemplate_v4.x/CSharp-Isolated/local.settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "IsEncrypted": false, 3 | "Values": { 4 | "AzureWebJobsStorage": "AzureWebJobsStorageConnectionStringValue", 5 | "FUNCTIONS_WORKER_RUNTIME": "dotnet-isolated" 6 | } 7 | } -------------------------------------------------------------------------------- /Functions.Templates/ProjectTemplate_v4.x/CSharp/.template.config/dotnetcli.host.json: -------------------------------------------------------------------------------- 1 | { 2 | 3 | } -------------------------------------------------------------------------------- /Functions.Templates/ProjectTemplate_v4.x/CSharp/Properties/launchSettings.json: -------------------------------------------------------------------------------- 1 | { 2 | "profiles": { 3 | "Company.FunctionApp": { 4 | "commandName": "Project", 5 | "commandLineArgs": "--port 7071", 6 | "launchBrowser": false 7 | } 8 | } 9 | } -------------------------------------------------------------------------------- /Functions.Templates/ProjectTemplate_v4.x/FSharp-Isolated/local.settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "IsEncrypted": false, 3 | "Values": { 4 | "AzureWebJobsStorage": "AzureWebJobsStorageConnectionStringValue", 5 | "FUNCTIONS_WORKER_RUNTIME": "dotnet-isolated" 6 | } 7 | } -------------------------------------------------------------------------------- /Functions.Templates/ProjectTemplate_v4.x/FSharp/.template.config/dotnetcli.host.json: -------------------------------------------------------------------------------- 1 | { 2 | 3 | } -------------------------------------------------------------------------------- /Functions.Templates/Templates-v2/EventGridTrigger-Python/blueprint_body.py: -------------------------------------------------------------------------------- 1 | @$(BLUEPRINT_FILENAME).event_grid_trigger(arg_name="azeventgrid") 2 | def $(FUNCTION_NAME_INPUT)(azeventgrid: func.EventGridEvent): 3 | logging.info('Python EventGrid trigger processed an event') 4 | -------------------------------------------------------------------------------- /Functions.Templates/Templates-v2/EventGridTrigger-Python/function_body.py: -------------------------------------------------------------------------------- 1 | @app.event_grid_trigger(arg_name="azeventgrid") 2 | def $(FUNCTION_NAME_INPUT)(azeventgrid: func.EventGridEvent): 3 | logging.info('Python EventGrid trigger processed an event') 4 | -------------------------------------------------------------------------------- /Functions.Templates/Templates/AuthenticationEventsTrigger-CSharp/.template.config/vs-2017.3/functionF.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-templates/44b0e29d1905fe518b0278445bb561556d1011f6/Functions.Templates/Templates/AuthenticationEventsTrigger-CSharp/.template.config/vs-2017.3/functionF.png -------------------------------------------------------------------------------- /Functions.Templates/Templates/AuthenticationEventsTrigger-CSharp/function.json: -------------------------------------------------------------------------------- 1 | { 2 | "bindings": [ 3 | { 4 | "type": "authenticationEventsTrigger", 5 | "name": "request", 6 | "direction": "in" 7 | } 8 | ] 9 | } 10 | -------------------------------------------------------------------------------- /Functions.Templates/Templates/AuthenticationEventsTrigger-CSharp/readme.md: -------------------------------------------------------------------------------- 1 | # AuthenticationEvents Trigger - CSharp 2 | 3 | Triggers for Azure AD Authentication event custom extensions. Lets you focus on your business logic. 4 | -------------------------------------------------------------------------------- /Functions.Templates/Templates/AuthenticationEventsTrigger-JavaScript/function.json: -------------------------------------------------------------------------------- 1 | { 2 | "bindings": [ 3 | { 4 | "type": "authenticationEventsTrigger", 5 | "name": "onTokenIssuanceStartRequest", 6 | "direction": "in" 7 | } 8 | ] 9 | } 10 | -------------------------------------------------------------------------------- /Functions.Templates/Templates/AuthenticationEventsTrigger-JavaScript/readme.md: -------------------------------------------------------------------------------- 1 | # AuthenticationEvents Trigger - CSharp 2 | 3 | Triggers for Azure AD Authentication event custom extensions. Lets you focus on your business logic. 4 | -------------------------------------------------------------------------------- /Functions.Templates/Templates/AuthenticationEventsTrigger-Python/readme.md: -------------------------------------------------------------------------------- 1 | # AuthenticationEvents Trigger - CSharp 2 | 3 | Triggers for Azure AD Authentication event custom extensions. Lets you focus on your business logic. 4 | -------------------------------------------------------------------------------- /Functions.Templates/Templates/AuthenticationEventsTrigger-TypeScript/function.json: -------------------------------------------------------------------------------- 1 | { 2 | "bindings": [ 3 | { 4 | "type": "authenticationEventsTrigger", 5 | "name": "onTokenIssuanceStartRequest", 6 | "direction": "in" 7 | } 8 | ] 9 | } 10 | -------------------------------------------------------------------------------- /Functions.Templates/Templates/AuthenticationEventsTrigger-TypeScript/readme.md: -------------------------------------------------------------------------------- 1 | # AuthenticationEvents Trigger - CSharp 2 | 3 | Triggers for Azure AD Authentication event custom extensions. Lets you focus on your business logic. 4 | -------------------------------------------------------------------------------- /Functions.Templates/Templates/BlobTrigger-CSharp-3.x/.template.config/vs-2017.3/blob-mac-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-templates/44b0e29d1905fe518b0278445bb561556d1011f6/Functions.Templates/Templates/BlobTrigger-CSharp-3.x/.template.config/vs-2017.3/blob-mac-32.png -------------------------------------------------------------------------------- /Functions.Templates/Templates/BlobTrigger-CSharp-3.x/.template.config/vs-2017.3/blob-mac-32@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-templates/44b0e29d1905fe518b0278445bb561556d1011f6/Functions.Templates/Templates/BlobTrigger-CSharp-3.x/.template.config/vs-2017.3/blob-mac-32@2x.png -------------------------------------------------------------------------------- /Functions.Templates/Templates/BlobTrigger-CSharp-3.x/.template.config/vs-2017.3/blob-mac-32~dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-templates/44b0e29d1905fe518b0278445bb561556d1011f6/Functions.Templates/Templates/BlobTrigger-CSharp-3.x/.template.config/vs-2017.3/blob-mac-32~dark.png -------------------------------------------------------------------------------- /Functions.Templates/Templates/BlobTrigger-CSharp-3.x/.template.config/vs-2017.3/blob-mac-32~dark@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-templates/44b0e29d1905fe518b0278445bb561556d1011f6/Functions.Templates/Templates/BlobTrigger-CSharp-3.x/.template.config/vs-2017.3/blob-mac-32~dark@2x.png -------------------------------------------------------------------------------- /Functions.Templates/Templates/BlobTrigger-CSharp-3.x/.template.config/vs-2017.3/blob-mac-32~dark~sel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-templates/44b0e29d1905fe518b0278445bb561556d1011f6/Functions.Templates/Templates/BlobTrigger-CSharp-3.x/.template.config/vs-2017.3/blob-mac-32~dark~sel.png -------------------------------------------------------------------------------- /Functions.Templates/Templates/BlobTrigger-CSharp-3.x/.template.config/vs-2017.3/blob-mac-32~dark~sel@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-templates/44b0e29d1905fe518b0278445bb561556d1011f6/Functions.Templates/Templates/BlobTrigger-CSharp-3.x/.template.config/vs-2017.3/blob-mac-32~dark~sel@2x.png -------------------------------------------------------------------------------- /Functions.Templates/Templates/BlobTrigger-CSharp-3.x/.template.config/vs-2017.3/blob-mac-32~sel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-templates/44b0e29d1905fe518b0278445bb561556d1011f6/Functions.Templates/Templates/BlobTrigger-CSharp-3.x/.template.config/vs-2017.3/blob-mac-32~sel.png -------------------------------------------------------------------------------- /Functions.Templates/Templates/BlobTrigger-CSharp-3.x/.template.config/vs-2017.3/blob-mac-32~sel@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-templates/44b0e29d1905fe518b0278445bb561556d1011f6/Functions.Templates/Templates/BlobTrigger-CSharp-3.x/.template.config/vs-2017.3/blob-mac-32~sel@2x.png -------------------------------------------------------------------------------- /Functions.Templates/Templates/BlobTrigger-CSharp-3.x/.template.config/vs-2017.3/blob.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-templates/44b0e29d1905fe518b0278445bb561556d1011f6/Functions.Templates/Templates/BlobTrigger-CSharp-3.x/.template.config/vs-2017.3/blob.png -------------------------------------------------------------------------------- /Functions.Templates/Templates/BlobTrigger-CSharp-3.x/run.csx: -------------------------------------------------------------------------------- 1 | public static void Run(Stream myBlob, string name, ILogger log) 2 | { 3 | log.LogInformation($"C# Blob trigger function Processed blob\n Name:{name} \n Size: {myBlob.Length} Bytes"); 4 | } 5 | -------------------------------------------------------------------------------- /Functions.Templates/Templates/BlobTrigger-CSharp-3.x/sample.dat: -------------------------------------------------------------------------------- 1 | samples-workitems/workitem.txt -------------------------------------------------------------------------------- /Functions.Templates/Templates/BlobTrigger-CSharp-4.x/.template.config/vs-2017.3/blob-mac-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-templates/44b0e29d1905fe518b0278445bb561556d1011f6/Functions.Templates/Templates/BlobTrigger-CSharp-4.x/.template.config/vs-2017.3/blob-mac-32.png -------------------------------------------------------------------------------- /Functions.Templates/Templates/BlobTrigger-CSharp-4.x/.template.config/vs-2017.3/blob-mac-32@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-templates/44b0e29d1905fe518b0278445bb561556d1011f6/Functions.Templates/Templates/BlobTrigger-CSharp-4.x/.template.config/vs-2017.3/blob-mac-32@2x.png -------------------------------------------------------------------------------- /Functions.Templates/Templates/BlobTrigger-CSharp-4.x/.template.config/vs-2017.3/blob-mac-32~dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-templates/44b0e29d1905fe518b0278445bb561556d1011f6/Functions.Templates/Templates/BlobTrigger-CSharp-4.x/.template.config/vs-2017.3/blob-mac-32~dark.png -------------------------------------------------------------------------------- /Functions.Templates/Templates/BlobTrigger-CSharp-4.x/.template.config/vs-2017.3/blob-mac-32~dark@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-templates/44b0e29d1905fe518b0278445bb561556d1011f6/Functions.Templates/Templates/BlobTrigger-CSharp-4.x/.template.config/vs-2017.3/blob-mac-32~dark@2x.png -------------------------------------------------------------------------------- /Functions.Templates/Templates/BlobTrigger-CSharp-4.x/.template.config/vs-2017.3/blob-mac-32~dark~sel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-templates/44b0e29d1905fe518b0278445bb561556d1011f6/Functions.Templates/Templates/BlobTrigger-CSharp-4.x/.template.config/vs-2017.3/blob-mac-32~dark~sel.png -------------------------------------------------------------------------------- /Functions.Templates/Templates/BlobTrigger-CSharp-4.x/.template.config/vs-2017.3/blob-mac-32~dark~sel@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-templates/44b0e29d1905fe518b0278445bb561556d1011f6/Functions.Templates/Templates/BlobTrigger-CSharp-4.x/.template.config/vs-2017.3/blob-mac-32~dark~sel@2x.png -------------------------------------------------------------------------------- /Functions.Templates/Templates/BlobTrigger-CSharp-4.x/.template.config/vs-2017.3/blob-mac-32~sel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-templates/44b0e29d1905fe518b0278445bb561556d1011f6/Functions.Templates/Templates/BlobTrigger-CSharp-4.x/.template.config/vs-2017.3/blob-mac-32~sel.png -------------------------------------------------------------------------------- /Functions.Templates/Templates/BlobTrigger-CSharp-4.x/.template.config/vs-2017.3/blob-mac-32~sel@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-templates/44b0e29d1905fe518b0278445bb561556d1011f6/Functions.Templates/Templates/BlobTrigger-CSharp-4.x/.template.config/vs-2017.3/blob-mac-32~sel@2x.png -------------------------------------------------------------------------------- /Functions.Templates/Templates/BlobTrigger-CSharp-4.x/.template.config/vs-2017.3/blob.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-templates/44b0e29d1905fe518b0278445bb561556d1011f6/Functions.Templates/Templates/BlobTrigger-CSharp-4.x/.template.config/vs-2017.3/blob.png -------------------------------------------------------------------------------- /Functions.Templates/Templates/BlobTrigger-CSharp-4.x/run.csx: -------------------------------------------------------------------------------- 1 | public static void Run(Stream myBlob, string name, ILogger log) 2 | { 3 | log.LogInformation($"C# Blob trigger function Processed blob\n Name:{name} \n Size: {myBlob.Length} Bytes"); 4 | } 5 | -------------------------------------------------------------------------------- /Functions.Templates/Templates/BlobTrigger-CSharp-4.x/sample.dat: -------------------------------------------------------------------------------- 1 | samples-workitems/workitem.txt -------------------------------------------------------------------------------- /Functions.Templates/Templates/BlobTrigger-CSharp-5.x/.template.config/vs-2017.3/blob-mac-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-templates/44b0e29d1905fe518b0278445bb561556d1011f6/Functions.Templates/Templates/BlobTrigger-CSharp-5.x/.template.config/vs-2017.3/blob-mac-32.png -------------------------------------------------------------------------------- /Functions.Templates/Templates/BlobTrigger-CSharp-5.x/.template.config/vs-2017.3/blob-mac-32@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-templates/44b0e29d1905fe518b0278445bb561556d1011f6/Functions.Templates/Templates/BlobTrigger-CSharp-5.x/.template.config/vs-2017.3/blob-mac-32@2x.png -------------------------------------------------------------------------------- /Functions.Templates/Templates/BlobTrigger-CSharp-5.x/.template.config/vs-2017.3/blob-mac-32~dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-templates/44b0e29d1905fe518b0278445bb561556d1011f6/Functions.Templates/Templates/BlobTrigger-CSharp-5.x/.template.config/vs-2017.3/blob-mac-32~dark.png -------------------------------------------------------------------------------- /Functions.Templates/Templates/BlobTrigger-CSharp-5.x/.template.config/vs-2017.3/blob-mac-32~dark@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-templates/44b0e29d1905fe518b0278445bb561556d1011f6/Functions.Templates/Templates/BlobTrigger-CSharp-5.x/.template.config/vs-2017.3/blob-mac-32~dark@2x.png -------------------------------------------------------------------------------- /Functions.Templates/Templates/BlobTrigger-CSharp-5.x/.template.config/vs-2017.3/blob-mac-32~dark~sel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-templates/44b0e29d1905fe518b0278445bb561556d1011f6/Functions.Templates/Templates/BlobTrigger-CSharp-5.x/.template.config/vs-2017.3/blob-mac-32~dark~sel.png -------------------------------------------------------------------------------- /Functions.Templates/Templates/BlobTrigger-CSharp-5.x/.template.config/vs-2017.3/blob-mac-32~dark~sel@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-templates/44b0e29d1905fe518b0278445bb561556d1011f6/Functions.Templates/Templates/BlobTrigger-CSharp-5.x/.template.config/vs-2017.3/blob-mac-32~dark~sel@2x.png -------------------------------------------------------------------------------- /Functions.Templates/Templates/BlobTrigger-CSharp-5.x/.template.config/vs-2017.3/blob-mac-32~sel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-templates/44b0e29d1905fe518b0278445bb561556d1011f6/Functions.Templates/Templates/BlobTrigger-CSharp-5.x/.template.config/vs-2017.3/blob-mac-32~sel.png -------------------------------------------------------------------------------- /Functions.Templates/Templates/BlobTrigger-CSharp-5.x/.template.config/vs-2017.3/blob-mac-32~sel@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-templates/44b0e29d1905fe518b0278445bb561556d1011f6/Functions.Templates/Templates/BlobTrigger-CSharp-5.x/.template.config/vs-2017.3/blob-mac-32~sel@2x.png -------------------------------------------------------------------------------- /Functions.Templates/Templates/BlobTrigger-CSharp-5.x/.template.config/vs-2017.3/blob.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-templates/44b0e29d1905fe518b0278445bb561556d1011f6/Functions.Templates/Templates/BlobTrigger-CSharp-5.x/.template.config/vs-2017.3/blob.png -------------------------------------------------------------------------------- /Functions.Templates/Templates/BlobTrigger-CSharp-5.x/run.csx: -------------------------------------------------------------------------------- 1 | public static void Run(Stream myBlob, string name, ILogger log) 2 | { 3 | log.LogInformation($"C# Blob trigger function Processed blob\n Name:{name} \n Size: {myBlob.Length} Bytes"); 4 | } 5 | -------------------------------------------------------------------------------- /Functions.Templates/Templates/BlobTrigger-CSharp-5.x/sample.dat: -------------------------------------------------------------------------------- 1 | samples-workitems/workitem.txt -------------------------------------------------------------------------------- /Functions.Templates/Templates/BlobTrigger-CSharp-Isolated/.template.config/vs-2017.3/blob-mac-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-templates/44b0e29d1905fe518b0278445bb561556d1011f6/Functions.Templates/Templates/BlobTrigger-CSharp-Isolated/.template.config/vs-2017.3/blob-mac-32.png -------------------------------------------------------------------------------- /Functions.Templates/Templates/BlobTrigger-CSharp-Isolated/.template.config/vs-2017.3/blob-mac-32@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-templates/44b0e29d1905fe518b0278445bb561556d1011f6/Functions.Templates/Templates/BlobTrigger-CSharp-Isolated/.template.config/vs-2017.3/blob-mac-32@2x.png -------------------------------------------------------------------------------- /Functions.Templates/Templates/BlobTrigger-CSharp-Isolated/.template.config/vs-2017.3/blob-mac-32~dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-templates/44b0e29d1905fe518b0278445bb561556d1011f6/Functions.Templates/Templates/BlobTrigger-CSharp-Isolated/.template.config/vs-2017.3/blob-mac-32~dark.png -------------------------------------------------------------------------------- /Functions.Templates/Templates/BlobTrigger-CSharp-Isolated/.template.config/vs-2017.3/blob-mac-32~dark@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-templates/44b0e29d1905fe518b0278445bb561556d1011f6/Functions.Templates/Templates/BlobTrigger-CSharp-Isolated/.template.config/vs-2017.3/blob-mac-32~dark@2x.png -------------------------------------------------------------------------------- /Functions.Templates/Templates/BlobTrigger-CSharp-Isolated/.template.config/vs-2017.3/blob-mac-32~dark~sel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-templates/44b0e29d1905fe518b0278445bb561556d1011f6/Functions.Templates/Templates/BlobTrigger-CSharp-Isolated/.template.config/vs-2017.3/blob-mac-32~dark~sel.png -------------------------------------------------------------------------------- /Functions.Templates/Templates/BlobTrigger-CSharp-Isolated/.template.config/vs-2017.3/blob-mac-32~sel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-templates/44b0e29d1905fe518b0278445bb561556d1011f6/Functions.Templates/Templates/BlobTrigger-CSharp-Isolated/.template.config/vs-2017.3/blob-mac-32~sel.png -------------------------------------------------------------------------------- /Functions.Templates/Templates/BlobTrigger-CSharp-Isolated/.template.config/vs-2017.3/blob-mac-32~sel@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-templates/44b0e29d1905fe518b0278445bb561556d1011f6/Functions.Templates/Templates/BlobTrigger-CSharp-Isolated/.template.config/vs-2017.3/blob-mac-32~sel@2x.png -------------------------------------------------------------------------------- /Functions.Templates/Templates/BlobTrigger-CSharp-Isolated/.template.config/vs-2017.3/blob.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-templates/44b0e29d1905fe518b0278445bb561556d1011f6/Functions.Templates/Templates/BlobTrigger-CSharp-Isolated/.template.config/vs-2017.3/blob.png -------------------------------------------------------------------------------- /Functions.Templates/Templates/BlobTrigger-FSharp-3.x/.template.config/vs-2017.3/blob-mac-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-templates/44b0e29d1905fe518b0278445bb561556d1011f6/Functions.Templates/Templates/BlobTrigger-FSharp-3.x/.template.config/vs-2017.3/blob-mac-32.png -------------------------------------------------------------------------------- /Functions.Templates/Templates/BlobTrigger-FSharp-3.x/.template.config/vs-2017.3/blob-mac-32@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-templates/44b0e29d1905fe518b0278445bb561556d1011f6/Functions.Templates/Templates/BlobTrigger-FSharp-3.x/.template.config/vs-2017.3/blob-mac-32@2x.png -------------------------------------------------------------------------------- /Functions.Templates/Templates/BlobTrigger-FSharp-3.x/.template.config/vs-2017.3/blob-mac-32~dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-templates/44b0e29d1905fe518b0278445bb561556d1011f6/Functions.Templates/Templates/BlobTrigger-FSharp-3.x/.template.config/vs-2017.3/blob-mac-32~dark.png -------------------------------------------------------------------------------- /Functions.Templates/Templates/BlobTrigger-FSharp-3.x/.template.config/vs-2017.3/blob-mac-32~dark@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-templates/44b0e29d1905fe518b0278445bb561556d1011f6/Functions.Templates/Templates/BlobTrigger-FSharp-3.x/.template.config/vs-2017.3/blob-mac-32~dark@2x.png -------------------------------------------------------------------------------- /Functions.Templates/Templates/BlobTrigger-FSharp-3.x/.template.config/vs-2017.3/blob-mac-32~dark~sel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-templates/44b0e29d1905fe518b0278445bb561556d1011f6/Functions.Templates/Templates/BlobTrigger-FSharp-3.x/.template.config/vs-2017.3/blob-mac-32~dark~sel.png -------------------------------------------------------------------------------- /Functions.Templates/Templates/BlobTrigger-FSharp-3.x/.template.config/vs-2017.3/blob-mac-32~dark~sel@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-templates/44b0e29d1905fe518b0278445bb561556d1011f6/Functions.Templates/Templates/BlobTrigger-FSharp-3.x/.template.config/vs-2017.3/blob-mac-32~dark~sel@2x.png -------------------------------------------------------------------------------- /Functions.Templates/Templates/BlobTrigger-FSharp-3.x/.template.config/vs-2017.3/blob-mac-32~sel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-templates/44b0e29d1905fe518b0278445bb561556d1011f6/Functions.Templates/Templates/BlobTrigger-FSharp-3.x/.template.config/vs-2017.3/blob-mac-32~sel.png -------------------------------------------------------------------------------- /Functions.Templates/Templates/BlobTrigger-FSharp-3.x/.template.config/vs-2017.3/blob-mac-32~sel@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-templates/44b0e29d1905fe518b0278445bb561556d1011f6/Functions.Templates/Templates/BlobTrigger-FSharp-3.x/.template.config/vs-2017.3/blob-mac-32~sel@2x.png -------------------------------------------------------------------------------- /Functions.Templates/Templates/BlobTrigger-FSharp-3.x/.template.config/vs-2017.3/blob.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-templates/44b0e29d1905fe518b0278445bb561556d1011f6/Functions.Templates/Templates/BlobTrigger-FSharp-3.x/.template.config/vs-2017.3/blob.png -------------------------------------------------------------------------------- /Functions.Templates/Templates/BlobTrigger-FSharp-3.x/sample.dat: -------------------------------------------------------------------------------- 1 | samples-workitems/workitem.txt -------------------------------------------------------------------------------- /Functions.Templates/Templates/BlobTrigger-FSharp-4.x/.template.config/vs-2017.3/blob-mac-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-templates/44b0e29d1905fe518b0278445bb561556d1011f6/Functions.Templates/Templates/BlobTrigger-FSharp-4.x/.template.config/vs-2017.3/blob-mac-32.png -------------------------------------------------------------------------------- /Functions.Templates/Templates/BlobTrigger-FSharp-4.x/.template.config/vs-2017.3/blob-mac-32@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-templates/44b0e29d1905fe518b0278445bb561556d1011f6/Functions.Templates/Templates/BlobTrigger-FSharp-4.x/.template.config/vs-2017.3/blob-mac-32@2x.png -------------------------------------------------------------------------------- /Functions.Templates/Templates/BlobTrigger-FSharp-4.x/.template.config/vs-2017.3/blob-mac-32~dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-templates/44b0e29d1905fe518b0278445bb561556d1011f6/Functions.Templates/Templates/BlobTrigger-FSharp-4.x/.template.config/vs-2017.3/blob-mac-32~dark.png -------------------------------------------------------------------------------- /Functions.Templates/Templates/BlobTrigger-FSharp-4.x/.template.config/vs-2017.3/blob-mac-32~dark@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-templates/44b0e29d1905fe518b0278445bb561556d1011f6/Functions.Templates/Templates/BlobTrigger-FSharp-4.x/.template.config/vs-2017.3/blob-mac-32~dark@2x.png -------------------------------------------------------------------------------- /Functions.Templates/Templates/BlobTrigger-FSharp-4.x/.template.config/vs-2017.3/blob-mac-32~dark~sel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-templates/44b0e29d1905fe518b0278445bb561556d1011f6/Functions.Templates/Templates/BlobTrigger-FSharp-4.x/.template.config/vs-2017.3/blob-mac-32~dark~sel.png -------------------------------------------------------------------------------- /Functions.Templates/Templates/BlobTrigger-FSharp-4.x/.template.config/vs-2017.3/blob-mac-32~dark~sel@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-templates/44b0e29d1905fe518b0278445bb561556d1011f6/Functions.Templates/Templates/BlobTrigger-FSharp-4.x/.template.config/vs-2017.3/blob-mac-32~dark~sel@2x.png -------------------------------------------------------------------------------- /Functions.Templates/Templates/BlobTrigger-FSharp-4.x/.template.config/vs-2017.3/blob-mac-32~sel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-templates/44b0e29d1905fe518b0278445bb561556d1011f6/Functions.Templates/Templates/BlobTrigger-FSharp-4.x/.template.config/vs-2017.3/blob-mac-32~sel.png -------------------------------------------------------------------------------- /Functions.Templates/Templates/BlobTrigger-FSharp-4.x/.template.config/vs-2017.3/blob-mac-32~sel@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-templates/44b0e29d1905fe518b0278445bb561556d1011f6/Functions.Templates/Templates/BlobTrigger-FSharp-4.x/.template.config/vs-2017.3/blob-mac-32~sel@2x.png -------------------------------------------------------------------------------- /Functions.Templates/Templates/BlobTrigger-FSharp-4.x/.template.config/vs-2017.3/blob.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-templates/44b0e29d1905fe518b0278445bb561556d1011f6/Functions.Templates/Templates/BlobTrigger-FSharp-4.x/.template.config/vs-2017.3/blob.png -------------------------------------------------------------------------------- /Functions.Templates/Templates/BlobTrigger-FSharp-4.x/sample.dat: -------------------------------------------------------------------------------- 1 | samples-workitems/workitem.txt -------------------------------------------------------------------------------- /Functions.Templates/Templates/BlobTrigger-FSharp-5.x/.template.config/vs-2017.3/blob-mac-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-templates/44b0e29d1905fe518b0278445bb561556d1011f6/Functions.Templates/Templates/BlobTrigger-FSharp-5.x/.template.config/vs-2017.3/blob-mac-32.png -------------------------------------------------------------------------------- /Functions.Templates/Templates/BlobTrigger-FSharp-5.x/.template.config/vs-2017.3/blob-mac-32@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-templates/44b0e29d1905fe518b0278445bb561556d1011f6/Functions.Templates/Templates/BlobTrigger-FSharp-5.x/.template.config/vs-2017.3/blob-mac-32@2x.png -------------------------------------------------------------------------------- /Functions.Templates/Templates/BlobTrigger-FSharp-5.x/.template.config/vs-2017.3/blob-mac-32~dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-templates/44b0e29d1905fe518b0278445bb561556d1011f6/Functions.Templates/Templates/BlobTrigger-FSharp-5.x/.template.config/vs-2017.3/blob-mac-32~dark.png -------------------------------------------------------------------------------- /Functions.Templates/Templates/BlobTrigger-FSharp-5.x/.template.config/vs-2017.3/blob-mac-32~dark@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-templates/44b0e29d1905fe518b0278445bb561556d1011f6/Functions.Templates/Templates/BlobTrigger-FSharp-5.x/.template.config/vs-2017.3/blob-mac-32~dark@2x.png -------------------------------------------------------------------------------- /Functions.Templates/Templates/BlobTrigger-FSharp-5.x/.template.config/vs-2017.3/blob-mac-32~dark~sel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-templates/44b0e29d1905fe518b0278445bb561556d1011f6/Functions.Templates/Templates/BlobTrigger-FSharp-5.x/.template.config/vs-2017.3/blob-mac-32~dark~sel.png -------------------------------------------------------------------------------- /Functions.Templates/Templates/BlobTrigger-FSharp-5.x/.template.config/vs-2017.3/blob-mac-32~dark~sel@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-templates/44b0e29d1905fe518b0278445bb561556d1011f6/Functions.Templates/Templates/BlobTrigger-FSharp-5.x/.template.config/vs-2017.3/blob-mac-32~dark~sel@2x.png -------------------------------------------------------------------------------- /Functions.Templates/Templates/BlobTrigger-FSharp-5.x/.template.config/vs-2017.3/blob-mac-32~sel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-templates/44b0e29d1905fe518b0278445bb561556d1011f6/Functions.Templates/Templates/BlobTrigger-FSharp-5.x/.template.config/vs-2017.3/blob-mac-32~sel.png -------------------------------------------------------------------------------- /Functions.Templates/Templates/BlobTrigger-FSharp-5.x/.template.config/vs-2017.3/blob-mac-32~sel@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-templates/44b0e29d1905fe518b0278445bb561556d1011f6/Functions.Templates/Templates/BlobTrigger-FSharp-5.x/.template.config/vs-2017.3/blob-mac-32~sel@2x.png -------------------------------------------------------------------------------- /Functions.Templates/Templates/BlobTrigger-FSharp-5.x/.template.config/vs-2017.3/blob.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-templates/44b0e29d1905fe518b0278445bb561556d1011f6/Functions.Templates/Templates/BlobTrigger-FSharp-5.x/.template.config/vs-2017.3/blob.png -------------------------------------------------------------------------------- /Functions.Templates/Templates/BlobTrigger-FSharp-5.x/sample.dat: -------------------------------------------------------------------------------- 1 | samples-workitems/workitem.txt -------------------------------------------------------------------------------- /Functions.Templates/Templates/BlobTrigger-FSharp-Isolated/.template.config/vs-2017.3/blob-mac-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-templates/44b0e29d1905fe518b0278445bb561556d1011f6/Functions.Templates/Templates/BlobTrigger-FSharp-Isolated/.template.config/vs-2017.3/blob-mac-32.png -------------------------------------------------------------------------------- /Functions.Templates/Templates/BlobTrigger-FSharp-Isolated/.template.config/vs-2017.3/blob-mac-32@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-templates/44b0e29d1905fe518b0278445bb561556d1011f6/Functions.Templates/Templates/BlobTrigger-FSharp-Isolated/.template.config/vs-2017.3/blob-mac-32@2x.png -------------------------------------------------------------------------------- /Functions.Templates/Templates/BlobTrigger-FSharp-Isolated/.template.config/vs-2017.3/blob-mac-32~dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-templates/44b0e29d1905fe518b0278445bb561556d1011f6/Functions.Templates/Templates/BlobTrigger-FSharp-Isolated/.template.config/vs-2017.3/blob-mac-32~dark.png -------------------------------------------------------------------------------- /Functions.Templates/Templates/BlobTrigger-FSharp-Isolated/.template.config/vs-2017.3/blob-mac-32~dark@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-templates/44b0e29d1905fe518b0278445bb561556d1011f6/Functions.Templates/Templates/BlobTrigger-FSharp-Isolated/.template.config/vs-2017.3/blob-mac-32~dark@2x.png -------------------------------------------------------------------------------- /Functions.Templates/Templates/BlobTrigger-FSharp-Isolated/.template.config/vs-2017.3/blob-mac-32~dark~sel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-templates/44b0e29d1905fe518b0278445bb561556d1011f6/Functions.Templates/Templates/BlobTrigger-FSharp-Isolated/.template.config/vs-2017.3/blob-mac-32~dark~sel.png -------------------------------------------------------------------------------- /Functions.Templates/Templates/BlobTrigger-FSharp-Isolated/.template.config/vs-2017.3/blob-mac-32~sel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-templates/44b0e29d1905fe518b0278445bb561556d1011f6/Functions.Templates/Templates/BlobTrigger-FSharp-Isolated/.template.config/vs-2017.3/blob-mac-32~sel.png -------------------------------------------------------------------------------- /Functions.Templates/Templates/BlobTrigger-FSharp-Isolated/.template.config/vs-2017.3/blob-mac-32~sel@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-templates/44b0e29d1905fe518b0278445bb561556d1011f6/Functions.Templates/Templates/BlobTrigger-FSharp-Isolated/.template.config/vs-2017.3/blob-mac-32~sel@2x.png -------------------------------------------------------------------------------- /Functions.Templates/Templates/BlobTrigger-FSharp-Isolated/.template.config/vs-2017.3/blob.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-templates/44b0e29d1905fe518b0278445bb561556d1011f6/Functions.Templates/Templates/BlobTrigger-FSharp-Isolated/.template.config/vs-2017.3/blob.png -------------------------------------------------------------------------------- /Functions.Templates/Templates/BlobTrigger-JavaScript/index.js: -------------------------------------------------------------------------------- 1 | module.exports = async function (context, myBlob) { 2 | context.log("JavaScript blob trigger function processed blob \n Blob:", context.bindingData.blobTrigger, "\n Blob Size:", myBlob.length, "Bytes"); 3 | }; -------------------------------------------------------------------------------- /Functions.Templates/Templates/BlobTrigger-JavaScript/sample.dat: -------------------------------------------------------------------------------- 1 | samples-workitems/workitem.txt -------------------------------------------------------------------------------- /Functions.Templates/Templates/BlobTrigger-PowerShell/sample.dat: -------------------------------------------------------------------------------- 1 | samples-workitems/workitem.txt -------------------------------------------------------------------------------- /Functions.Templates/Templates/BlobTrigger-Python/sample.dat: -------------------------------------------------------------------------------- 1 | samples-workitems/workitem.txt -------------------------------------------------------------------------------- /Functions.Templates/Templates/BlobTrigger-TypeScript/sample.dat: -------------------------------------------------------------------------------- 1 | samples-workitems/workitem.txt -------------------------------------------------------------------------------- /Functions.Templates/Templates/CosmosDBTrigger-CSharp-3.x/.template.config/vs-2017.3/cosmosdb-mac-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-templates/44b0e29d1905fe518b0278445bb561556d1011f6/Functions.Templates/Templates/CosmosDBTrigger-CSharp-3.x/.template.config/vs-2017.3/cosmosdb-mac-32.png -------------------------------------------------------------------------------- /Functions.Templates/Templates/CosmosDBTrigger-CSharp-3.x/.template.config/vs-2017.3/cosmosdb-mac-32@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-templates/44b0e29d1905fe518b0278445bb561556d1011f6/Functions.Templates/Templates/CosmosDBTrigger-CSharp-3.x/.template.config/vs-2017.3/cosmosdb-mac-32@2x.png -------------------------------------------------------------------------------- /Functions.Templates/Templates/CosmosDBTrigger-CSharp-3.x/.template.config/vs-2017.3/cosmosdb-mac-32~dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-templates/44b0e29d1905fe518b0278445bb561556d1011f6/Functions.Templates/Templates/CosmosDBTrigger-CSharp-3.x/.template.config/vs-2017.3/cosmosdb-mac-32~dark.png -------------------------------------------------------------------------------- /Functions.Templates/Templates/CosmosDBTrigger-CSharp-3.x/.template.config/vs-2017.3/cosmosdb-mac-32~sel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-templates/44b0e29d1905fe518b0278445bb561556d1011f6/Functions.Templates/Templates/CosmosDBTrigger-CSharp-3.x/.template.config/vs-2017.3/cosmosdb-mac-32~sel.png -------------------------------------------------------------------------------- /Functions.Templates/Templates/CosmosDBTrigger-CSharp-3.x/.template.config/vs-2017.3/cosmosdb-mac-32~sel@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-templates/44b0e29d1905fe518b0278445bb561556d1011f6/Functions.Templates/Templates/CosmosDBTrigger-CSharp-3.x/.template.config/vs-2017.3/cosmosdb-mac-32~sel@2x.png -------------------------------------------------------------------------------- /Functions.Templates/Templates/CosmosDBTrigger-CSharp-3.x/.template.config/vs-2017.3/cosmosdb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-templates/44b0e29d1905fe518b0278445bb561556d1011f6/Functions.Templates/Templates/CosmosDBTrigger-CSharp-3.x/.template.config/vs-2017.3/cosmosdb.png -------------------------------------------------------------------------------- /Functions.Templates/Templates/CosmosDBTrigger-CSharp-4.x/.template.config/vs-2017.3/cosmosdb-mac-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-templates/44b0e29d1905fe518b0278445bb561556d1011f6/Functions.Templates/Templates/CosmosDBTrigger-CSharp-4.x/.template.config/vs-2017.3/cosmosdb-mac-32.png -------------------------------------------------------------------------------- /Functions.Templates/Templates/CosmosDBTrigger-CSharp-4.x/.template.config/vs-2017.3/cosmosdb-mac-32@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-templates/44b0e29d1905fe518b0278445bb561556d1011f6/Functions.Templates/Templates/CosmosDBTrigger-CSharp-4.x/.template.config/vs-2017.3/cosmosdb-mac-32@2x.png -------------------------------------------------------------------------------- /Functions.Templates/Templates/CosmosDBTrigger-CSharp-4.x/.template.config/vs-2017.3/cosmosdb-mac-32~dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-templates/44b0e29d1905fe518b0278445bb561556d1011f6/Functions.Templates/Templates/CosmosDBTrigger-CSharp-4.x/.template.config/vs-2017.3/cosmosdb-mac-32~dark.png -------------------------------------------------------------------------------- /Functions.Templates/Templates/CosmosDBTrigger-CSharp-4.x/.template.config/vs-2017.3/cosmosdb-mac-32~sel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-templates/44b0e29d1905fe518b0278445bb561556d1011f6/Functions.Templates/Templates/CosmosDBTrigger-CSharp-4.x/.template.config/vs-2017.3/cosmosdb-mac-32~sel.png -------------------------------------------------------------------------------- /Functions.Templates/Templates/CosmosDBTrigger-CSharp-4.x/.template.config/vs-2017.3/cosmosdb-mac-32~sel@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-templates/44b0e29d1905fe518b0278445bb561556d1011f6/Functions.Templates/Templates/CosmosDBTrigger-CSharp-4.x/.template.config/vs-2017.3/cosmosdb-mac-32~sel@2x.png -------------------------------------------------------------------------------- /Functions.Templates/Templates/CosmosDBTrigger-CSharp-4.x/.template.config/vs-2017.3/cosmosdb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-templates/44b0e29d1905fe518b0278445bb561556d1011f6/Functions.Templates/Templates/CosmosDBTrigger-CSharp-4.x/.template.config/vs-2017.3/cosmosdb.png -------------------------------------------------------------------------------- /Functions.Templates/Templates/CosmosDBTrigger-CSharp-Isolated/.template.config/vs-2017.3/cosmosdb-mac-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-templates/44b0e29d1905fe518b0278445bb561556d1011f6/Functions.Templates/Templates/CosmosDBTrigger-CSharp-Isolated/.template.config/vs-2017.3/cosmosdb-mac-32.png -------------------------------------------------------------------------------- /Functions.Templates/Templates/CosmosDBTrigger-CSharp-Isolated/.template.config/vs-2017.3/cosmosdb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-templates/44b0e29d1905fe518b0278445bb561556d1011f6/Functions.Templates/Templates/CosmosDBTrigger-CSharp-Isolated/.template.config/vs-2017.3/cosmosdb.png -------------------------------------------------------------------------------- /Functions.Templates/Templates/CosmosDBTrigger-FSharp-Isolated/.template.config/vs-2017.3/cosmosdb-mac-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-templates/44b0e29d1905fe518b0278445bb561556d1011f6/Functions.Templates/Templates/CosmosDBTrigger-FSharp-Isolated/.template.config/vs-2017.3/cosmosdb-mac-32.png -------------------------------------------------------------------------------- /Functions.Templates/Templates/CosmosDBTrigger-FSharp-Isolated/.template.config/vs-2017.3/cosmosdb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-templates/44b0e29d1905fe518b0278445bb561556d1011f6/Functions.Templates/Templates/CosmosDBTrigger-FSharp-Isolated/.template.config/vs-2017.3/cosmosdb.png -------------------------------------------------------------------------------- /Functions.Templates/Templates/CosmosDBTrigger-FSharp/.template.config/vs-2017.3/cosmosdb-mac-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-templates/44b0e29d1905fe518b0278445bb561556d1011f6/Functions.Templates/Templates/CosmosDBTrigger-FSharp/.template.config/vs-2017.3/cosmosdb-mac-32.png -------------------------------------------------------------------------------- /Functions.Templates/Templates/CosmosDBTrigger-FSharp/.template.config/vs-2017.3/cosmosdb-mac-32@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-templates/44b0e29d1905fe518b0278445bb561556d1011f6/Functions.Templates/Templates/CosmosDBTrigger-FSharp/.template.config/vs-2017.3/cosmosdb-mac-32@2x.png -------------------------------------------------------------------------------- /Functions.Templates/Templates/CosmosDBTrigger-FSharp/.template.config/vs-2017.3/cosmosdb-mac-32~dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-templates/44b0e29d1905fe518b0278445bb561556d1011f6/Functions.Templates/Templates/CosmosDBTrigger-FSharp/.template.config/vs-2017.3/cosmosdb-mac-32~dark.png -------------------------------------------------------------------------------- /Functions.Templates/Templates/CosmosDBTrigger-FSharp/.template.config/vs-2017.3/cosmosdb-mac-32~dark@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-templates/44b0e29d1905fe518b0278445bb561556d1011f6/Functions.Templates/Templates/CosmosDBTrigger-FSharp/.template.config/vs-2017.3/cosmosdb-mac-32~dark@2x.png -------------------------------------------------------------------------------- /Functions.Templates/Templates/CosmosDBTrigger-FSharp/.template.config/vs-2017.3/cosmosdb-mac-32~dark~sel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-templates/44b0e29d1905fe518b0278445bb561556d1011f6/Functions.Templates/Templates/CosmosDBTrigger-FSharp/.template.config/vs-2017.3/cosmosdb-mac-32~dark~sel.png -------------------------------------------------------------------------------- /Functions.Templates/Templates/CosmosDBTrigger-FSharp/.template.config/vs-2017.3/cosmosdb-mac-32~sel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-templates/44b0e29d1905fe518b0278445bb561556d1011f6/Functions.Templates/Templates/CosmosDBTrigger-FSharp/.template.config/vs-2017.3/cosmosdb-mac-32~sel.png -------------------------------------------------------------------------------- /Functions.Templates/Templates/CosmosDBTrigger-FSharp/.template.config/vs-2017.3/cosmosdb-mac-32~sel@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-templates/44b0e29d1905fe518b0278445bb561556d1011f6/Functions.Templates/Templates/CosmosDBTrigger-FSharp/.template.config/vs-2017.3/cosmosdb-mac-32~sel@2x.png -------------------------------------------------------------------------------- /Functions.Templates/Templates/CosmosDBTrigger-FSharp/.template.config/vs-2017.3/cosmosdb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-templates/44b0e29d1905fe518b0278445bb561556d1011f6/Functions.Templates/Templates/CosmosDBTrigger-FSharp/.template.config/vs-2017.3/cosmosdb.png -------------------------------------------------------------------------------- /Functions.Templates/Templates/CosmosDBTrigger-JavaScript-4.x/index.js: -------------------------------------------------------------------------------- 1 | module.exports = async function (context, documents) { 2 | if (!!documents && documents.length > 0) { 3 | context.log('Document Id: ', documents[0].id); 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /Functions.Templates/Templates/CosmosDBTrigger-JavaScript-4.x/sample.dat: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "id": "sample" 4 | } 5 | ] -------------------------------------------------------------------------------- /Functions.Templates/Templates/CosmosDBTrigger-JavaScript/sample.dat: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "id": "sample" 4 | } 5 | ] -------------------------------------------------------------------------------- /Functions.Templates/Templates/CosmosDBTrigger-PowerShell-4.x/run.ps1: -------------------------------------------------------------------------------- 1 | # Input bindings are passed in via param block. 2 | param($Documents, $TriggerMetadata) 3 | 4 | if ($Documents.Count -gt 0) { 5 | Write-Host "Document Id: $($Documents[0].id)" 6 | } 7 | -------------------------------------------------------------------------------- /Functions.Templates/Templates/CosmosDBTrigger-PowerShell-4.x/sample.dat: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "id": "sample" 4 | } 5 | ] 6 | -------------------------------------------------------------------------------- /Functions.Templates/Templates/CosmosDBTrigger-PowerShell/sample.dat: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "id": "sample" 4 | } 5 | ] 6 | -------------------------------------------------------------------------------- /Functions.Templates/Templates/CosmosDBTrigger-Python-4.x/__init__.py: -------------------------------------------------------------------------------- 1 | import logging 2 | 3 | from azure.functions import DocumentList 4 | 5 | 6 | def main(documents: DocumentList) -> str: 7 | if documents: 8 | logging.info('Document id: %s', documents[0]['id']) 9 | -------------------------------------------------------------------------------- /Functions.Templates/Templates/CosmosDBTrigger-Python-4.x/sample.dat: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "id": "sample" 4 | } 5 | ] -------------------------------------------------------------------------------- /Functions.Templates/Templates/CosmosDBTrigger-Python/sample.dat: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "id": "sample" 4 | } 5 | ] -------------------------------------------------------------------------------- /Functions.Templates/Templates/CosmosDBTrigger-TypeScript-4.x/sample.dat: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "id": "sample" 4 | } 5 | ] -------------------------------------------------------------------------------- /Functions.Templates/Templates/CosmosDBTrigger-TypeScript/sample.dat: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "id": "sample" 4 | } 5 | ] -------------------------------------------------------------------------------- /Functions.Templates/Templates/DaprPublishOutputBinding-CSharp/.template.config/vs-2017.3/functionF-mac-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-templates/44b0e29d1905fe518b0278445bb561556d1011f6/Functions.Templates/Templates/DaprPublishOutputBinding-CSharp/.template.config/vs-2017.3/functionF-mac-32.png -------------------------------------------------------------------------------- /Functions.Templates/Templates/DaprPublishOutputBinding-CSharp/.template.config/vs-2017.3/functionF.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-templates/44b0e29d1905fe518b0278445bb561556d1011f6/Functions.Templates/Templates/DaprPublishOutputBinding-CSharp/.template.config/vs-2017.3/functionF.png -------------------------------------------------------------------------------- /Functions.Templates/Templates/DaprServiceInvocationTrigger-CSharp/.template.config/vs-2017.3/functionF.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-templates/44b0e29d1905fe518b0278445bb561556d1011f6/Functions.Templates/Templates/DaprServiceInvocationTrigger-CSharp/.template.config/vs-2017.3/functionF.png -------------------------------------------------------------------------------- /Functions.Templates/Templates/DaprServiceInvocationTrigger-JavaScript/function.json: -------------------------------------------------------------------------------- 1 | { 2 | "bindings": [ 3 | { 4 | "type": "daprServiceInvocationTrigger", 5 | "name": "payload", 6 | "direction": "in" 7 | } 8 | ] 9 | } -------------------------------------------------------------------------------- /Functions.Templates/Templates/DaprServiceInvocationTrigger-PowerShell/function.json: -------------------------------------------------------------------------------- 1 | { 2 | "bindings": [ 3 | { 4 | "type": "daprServiceInvocationTrigger", 5 | "name": "payload", 6 | "direction": "in" 7 | } 8 | ] 9 | } -------------------------------------------------------------------------------- /Functions.Templates/Templates/DaprServiceInvocationTrigger-Python/function.json: -------------------------------------------------------------------------------- 1 | { 2 | "bindings": [ 3 | { 4 | "type": "daprServiceInvocationTrigger", 5 | "name": "payload", 6 | "direction": "in" 7 | } 8 | ] 9 | } -------------------------------------------------------------------------------- /Functions.Templates/Templates/DaprTopicTrigger-CSharp-Isolated/.template.config/vs-2017.3/functionF-mac-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-templates/44b0e29d1905fe518b0278445bb561556d1011f6/Functions.Templates/Templates/DaprTopicTrigger-CSharp-Isolated/.template.config/vs-2017.3/functionF-mac-32.png -------------------------------------------------------------------------------- /Functions.Templates/Templates/DaprTopicTrigger-CSharp-Isolated/.template.config/vs-2017.3/functionF.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-templates/44b0e29d1905fe518b0278445bb561556d1011f6/Functions.Templates/Templates/DaprTopicTrigger-CSharp-Isolated/.template.config/vs-2017.3/functionF.png -------------------------------------------------------------------------------- /Functions.Templates/Templates/DaprTopicTrigger-CSharp/.template.config/vs-2017.3/functionF-mac-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-templates/44b0e29d1905fe518b0278445bb561556d1011f6/Functions.Templates/Templates/DaprTopicTrigger-CSharp/.template.config/vs-2017.3/functionF-mac-32.png -------------------------------------------------------------------------------- /Functions.Templates/Templates/DaprTopicTrigger-CSharp/.template.config/vs-2017.3/functionF-mac-32@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-templates/44b0e29d1905fe518b0278445bb561556d1011f6/Functions.Templates/Templates/DaprTopicTrigger-CSharp/.template.config/vs-2017.3/functionF-mac-32@2x.png -------------------------------------------------------------------------------- /Functions.Templates/Templates/DaprTopicTrigger-CSharp/.template.config/vs-2017.3/functionF-mac-32~dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-templates/44b0e29d1905fe518b0278445bb561556d1011f6/Functions.Templates/Templates/DaprTopicTrigger-CSharp/.template.config/vs-2017.3/functionF-mac-32~dark.png -------------------------------------------------------------------------------- /Functions.Templates/Templates/DaprTopicTrigger-CSharp/.template.config/vs-2017.3/functionF-mac-32~dark@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-templates/44b0e29d1905fe518b0278445bb561556d1011f6/Functions.Templates/Templates/DaprTopicTrigger-CSharp/.template.config/vs-2017.3/functionF-mac-32~dark@2x.png -------------------------------------------------------------------------------- /Functions.Templates/Templates/DaprTopicTrigger-CSharp/.template.config/vs-2017.3/functionF-mac-32~dark~sel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-templates/44b0e29d1905fe518b0278445bb561556d1011f6/Functions.Templates/Templates/DaprTopicTrigger-CSharp/.template.config/vs-2017.3/functionF-mac-32~dark~sel.png -------------------------------------------------------------------------------- /Functions.Templates/Templates/DaprTopicTrigger-CSharp/.template.config/vs-2017.3/functionF-mac-32~sel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-templates/44b0e29d1905fe518b0278445bb561556d1011f6/Functions.Templates/Templates/DaprTopicTrigger-CSharp/.template.config/vs-2017.3/functionF-mac-32~sel.png -------------------------------------------------------------------------------- /Functions.Templates/Templates/DaprTopicTrigger-CSharp/.template.config/vs-2017.3/functionF-mac-32~sel@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-templates/44b0e29d1905fe518b0278445bb561556d1011f6/Functions.Templates/Templates/DaprTopicTrigger-CSharp/.template.config/vs-2017.3/functionF-mac-32~sel@2x.png -------------------------------------------------------------------------------- /Functions.Templates/Templates/DaprTopicTrigger-CSharp/.template.config/vs-2017.3/functionF.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-templates/44b0e29d1905fe518b0278445bb561556d1011f6/Functions.Templates/Templates/DaprTopicTrigger-CSharp/.template.config/vs-2017.3/functionF.png -------------------------------------------------------------------------------- /Functions.Templates/Templates/DurableFunctionsActivity-CSharp-1.x/function.json: -------------------------------------------------------------------------------- 1 | { 2 | "bindings": [ 3 | { 4 | "name": "name", 5 | "type": "activityTrigger", 6 | "direction": "in" 7 | } 8 | ] 9 | } -------------------------------------------------------------------------------- /Functions.Templates/Templates/DurableFunctionsActivity-CSharp-2.x/function.json: -------------------------------------------------------------------------------- 1 | { 2 | "bindings": [ 3 | { 4 | "name": "name", 5 | "type": "activityTrigger", 6 | "direction": "in" 7 | } 8 | ] 9 | } -------------------------------------------------------------------------------- /Functions.Templates/Templates/DurableFunctionsActivity-JavaScript/function.json: -------------------------------------------------------------------------------- 1 | { 2 | "bindings": [ 3 | { 4 | "name": "name", 5 | "type": "activityTrigger", 6 | "direction": "in" 7 | } 8 | ] 9 | } -------------------------------------------------------------------------------- /Functions.Templates/Templates/DurableFunctionsActivity-PowerShell/function.json: -------------------------------------------------------------------------------- 1 | { 2 | "bindings": [ 3 | { 4 | "name": "name", 5 | "type": "activityTrigger", 6 | "direction": "in" 7 | } 8 | ] 9 | } 10 | -------------------------------------------------------------------------------- /Functions.Templates/Templates/DurableFunctionsActivity-PowerShell/run.ps1: -------------------------------------------------------------------------------- 1 | param($name) 2 | 3 | "Hello $name!" 4 | -------------------------------------------------------------------------------- /Functions.Templates/Templates/DurableFunctionsActivity-Python/function.json: -------------------------------------------------------------------------------- 1 | { 2 | "scriptFile": "__init__.py", 3 | "bindings": [ 4 | { 5 | "name": "name", 6 | "type": "activityTrigger", 7 | "direction": "in" 8 | } 9 | ] 10 | } -------------------------------------------------------------------------------- /Functions.Templates/Templates/DurableFunctionsActivity-TypeScript/function.json: -------------------------------------------------------------------------------- 1 | { 2 | "bindings": [ 3 | { 4 | "name": "name", 5 | "type": "activityTrigger", 6 | "direction": "in" 7 | } 8 | ] 9 | } -------------------------------------------------------------------------------- /Functions.Templates/Templates/DurableFunctionsEntity-JavaScript/function.json: -------------------------------------------------------------------------------- 1 | { 2 | "bindings": [ 3 | { 4 | "name": "context", 5 | "type": "entityTrigger", 6 | "direction": "in" 7 | } 8 | ] 9 | } -------------------------------------------------------------------------------- /Functions.Templates/Templates/DurableFunctionsEntity-Python/function.json: -------------------------------------------------------------------------------- 1 | { 2 | "scriptFile": "__init__.py", 3 | "bindings": [ 4 | { 5 | "name": "context", 6 | "type": "entityTrigger", 7 | "direction": "in" 8 | } 9 | ] 10 | } -------------------------------------------------------------------------------- /Functions.Templates/Templates/DurableFunctionsEntity-TypeScript/function.json: -------------------------------------------------------------------------------- 1 | { 2 | "bindings": [ 3 | { 4 | "name": "context", 5 | "type": "entityTrigger", 6 | "direction": "in" 7 | } 8 | ] 9 | } -------------------------------------------------------------------------------- /Functions.Templates/Templates/DurableFunctionsEntityClass-CSharp-2.x/function.json: -------------------------------------------------------------------------------- 1 | { 2 | "bindings": [ 3 | { 4 | "name": "context", 5 | "type": "entityTrigger", 6 | "direction": "in" 7 | } 8 | ] 9 | } -------------------------------------------------------------------------------- /Functions.Templates/Templates/DurableFunctionsEntityFunction-CSharp-2.x/function.json: -------------------------------------------------------------------------------- 1 | { 2 | "bindings": [ 3 | { 4 | "name": "context", 5 | "type": "entityTrigger", 6 | "direction": "in" 7 | } 8 | ] 9 | } -------------------------------------------------------------------------------- /Functions.Templates/Templates/DurableFunctionsEntityHttp-CSharp-2.x/.template.config/vs-2017.3/functionF.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-templates/44b0e29d1905fe518b0278445bb561556d1011f6/Functions.Templates/Templates/DurableFunctionsEntityHttp-CSharp-2.x/.template.config/vs-2017.3/functionF.png -------------------------------------------------------------------------------- /Functions.Templates/Templates/DurableFunctionsOrchestration-CSharp-1.x/function.json: -------------------------------------------------------------------------------- 1 | { 2 | "bindings": [ 3 | { 4 | "name": "context", 5 | "type": "orchestrationTrigger", 6 | "direction": "in" 7 | } 8 | ] 9 | } -------------------------------------------------------------------------------- /Functions.Templates/Templates/DurableFunctionsOrchestration-CSharp-2.x/function.json: -------------------------------------------------------------------------------- 1 | { 2 | "bindings": [ 3 | { 4 | "name": "context", 5 | "type": "orchestrationTrigger", 6 | "direction": "in" 7 | } 8 | ] 9 | } -------------------------------------------------------------------------------- /Functions.Templates/Templates/DurableFunctionsOrchestrator-CSharp-1.x/function.json: -------------------------------------------------------------------------------- 1 | { 2 | "bindings": [ 3 | { 4 | "name": "context", 5 | "type": "orchestrationTrigger", 6 | "direction": "in" 7 | } 8 | ] 9 | } -------------------------------------------------------------------------------- /Functions.Templates/Templates/DurableFunctionsOrchestrator-CSharp-2.x/function.json: -------------------------------------------------------------------------------- 1 | { 2 | "bindings": [ 3 | { 4 | "name": "context", 5 | "type": "orchestrationTrigger", 6 | "direction": "in" 7 | } 8 | ] 9 | } -------------------------------------------------------------------------------- /Functions.Templates/Templates/DurableFunctionsOrchestrator-CSharp/function.json: -------------------------------------------------------------------------------- 1 | { 2 | "bindings": [ 3 | { 4 | "name": "context", 5 | "type": "orchestrationTrigger", 6 | "direction": "in" 7 | } 8 | ] 9 | } -------------------------------------------------------------------------------- /Functions.Templates/Templates/DurableFunctionsOrchestrator-JavaScript/function.json: -------------------------------------------------------------------------------- 1 | { 2 | "bindings": [ 3 | { 4 | "name": "context", 5 | "type": "orchestrationTrigger", 6 | "direction": "in" 7 | } 8 | ] 9 | } -------------------------------------------------------------------------------- /Functions.Templates/Templates/DurableFunctionsOrchestrator-PowerShell-1.x/function.json: -------------------------------------------------------------------------------- 1 | { 2 | "bindings": [ 3 | { 4 | "name": "Context", 5 | "type": "orchestrationTrigger", 6 | "direction": "in" 7 | } 8 | ] 9 | } 10 | -------------------------------------------------------------------------------- /Functions.Templates/Templates/DurableFunctionsOrchestrator-PowerShell-2.x/function.json: -------------------------------------------------------------------------------- 1 | { 2 | "bindings": [ 3 | { 4 | "name": "Context", 5 | "type": "orchestrationTrigger", 6 | "direction": "in" 7 | } 8 | ] 9 | } 10 | -------------------------------------------------------------------------------- /Functions.Templates/Templates/DurableFunctionsOrchestrator-Python-1.x/function.json: -------------------------------------------------------------------------------- 1 | { 2 | "scriptFile": "__init__.py", 3 | "bindings": [ 4 | { 5 | "name": "context", 6 | "type": "orchestrationTrigger", 7 | "direction": "in" 8 | } 9 | ] 10 | } -------------------------------------------------------------------------------- /Functions.Templates/Templates/DurableFunctionsOrchestrator-Python-2.x/function.json: -------------------------------------------------------------------------------- 1 | { 2 | "scriptFile": "__init__.py", 3 | "bindings": [ 4 | { 5 | "name": "context", 6 | "type": "orchestrationTrigger", 7 | "direction": "in" 8 | } 9 | ] 10 | } -------------------------------------------------------------------------------- /Functions.Templates/Templates/DurableFunctionsOrchestrator-TypeScript/function.json: -------------------------------------------------------------------------------- 1 | { 2 | "bindings": [ 3 | { 4 | "name": "context", 5 | "type": "orchestrationTrigger", 6 | "direction": "in" 7 | } 8 | ] 9 | } -------------------------------------------------------------------------------- /Functions.Templates/Templates/EdgeHubTrigger-CSharp/.template.config/vs-2017.3/eventhub-mac-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-templates/44b0e29d1905fe518b0278445bb561556d1011f6/Functions.Templates/Templates/EdgeHubTrigger-CSharp/.template.config/vs-2017.3/eventhub-mac-32.png -------------------------------------------------------------------------------- /Functions.Templates/Templates/EdgeHubTrigger-CSharp/.template.config/vs-2017.3/eventhub-mac-32@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-templates/44b0e29d1905fe518b0278445bb561556d1011f6/Functions.Templates/Templates/EdgeHubTrigger-CSharp/.template.config/vs-2017.3/eventhub-mac-32@2x.png -------------------------------------------------------------------------------- /Functions.Templates/Templates/EdgeHubTrigger-CSharp/.template.config/vs-2017.3/eventhub-mac-32~dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-templates/44b0e29d1905fe518b0278445bb561556d1011f6/Functions.Templates/Templates/EdgeHubTrigger-CSharp/.template.config/vs-2017.3/eventhub-mac-32~dark.png -------------------------------------------------------------------------------- /Functions.Templates/Templates/EdgeHubTrigger-CSharp/.template.config/vs-2017.3/eventhub-mac-32~dark@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-templates/44b0e29d1905fe518b0278445bb561556d1011f6/Functions.Templates/Templates/EdgeHubTrigger-CSharp/.template.config/vs-2017.3/eventhub-mac-32~dark@2x.png -------------------------------------------------------------------------------- /Functions.Templates/Templates/EdgeHubTrigger-CSharp/.template.config/vs-2017.3/eventhub-mac-32~dark~sel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-templates/44b0e29d1905fe518b0278445bb561556d1011f6/Functions.Templates/Templates/EdgeHubTrigger-CSharp/.template.config/vs-2017.3/eventhub-mac-32~dark~sel.png -------------------------------------------------------------------------------- /Functions.Templates/Templates/EdgeHubTrigger-CSharp/.template.config/vs-2017.3/eventhub-mac-32~dark~sel@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-templates/44b0e29d1905fe518b0278445bb561556d1011f6/Functions.Templates/Templates/EdgeHubTrigger-CSharp/.template.config/vs-2017.3/eventhub-mac-32~dark~sel@2x.png -------------------------------------------------------------------------------- /Functions.Templates/Templates/EdgeHubTrigger-CSharp/.template.config/vs-2017.3/eventhub-mac-32~sel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-templates/44b0e29d1905fe518b0278445bb561556d1011f6/Functions.Templates/Templates/EdgeHubTrigger-CSharp/.template.config/vs-2017.3/eventhub-mac-32~sel.png -------------------------------------------------------------------------------- /Functions.Templates/Templates/EdgeHubTrigger-CSharp/.template.config/vs-2017.3/eventhub-mac-32~sel@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-templates/44b0e29d1905fe518b0278445bb561556d1011f6/Functions.Templates/Templates/EdgeHubTrigger-CSharp/.template.config/vs-2017.3/eventhub-mac-32~sel@2x.png -------------------------------------------------------------------------------- /Functions.Templates/Templates/EdgeHubTrigger-CSharp/.template.config/vs-2017.3/eventhub.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-templates/44b0e29d1905fe518b0278445bb561556d1011f6/Functions.Templates/Templates/EdgeHubTrigger-CSharp/.template.config/vs-2017.3/eventhub.png -------------------------------------------------------------------------------- /Functions.Templates/Templates/EventGridBlobTrigger-CSharp-Isolated-6.x/.template.config/vs-2017.3/blob.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-templates/44b0e29d1905fe518b0278445bb561556d1011f6/Functions.Templates/Templates/EventGridBlobTrigger-CSharp-Isolated-6.x/.template.config/vs-2017.3/blob.png -------------------------------------------------------------------------------- /Functions.Templates/Templates/EventGridBlobTrigger-PowerShell/sample.dat: -------------------------------------------------------------------------------- 1 | samples-workitems/workitem.txt -------------------------------------------------------------------------------- /Functions.Templates/Templates/EventGridBlobTrigger-Python/sample.dat: -------------------------------------------------------------------------------- 1 | samples-workitems/workitem.txt -------------------------------------------------------------------------------- /Functions.Templates/Templates/EventGridBlobTrigger-TypeScript/sample.dat: -------------------------------------------------------------------------------- 1 | samples-workitems/workitem.txt -------------------------------------------------------------------------------- /Functions.Templates/Templates/EventGridCloudEventTrigger-CSharp-3.x/.template.config/vs-2017.3/eventGrid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-templates/44b0e29d1905fe518b0278445bb561556d1011f6/Functions.Templates/Templates/EventGridCloudEventTrigger-CSharp-3.x/.template.config/vs-2017.3/eventGrid.png -------------------------------------------------------------------------------- /Functions.Templates/Templates/EventGridCloudEventTrigger-CSharp-3.x/function.json: -------------------------------------------------------------------------------- 1 | { 2 | "bindings": [ 3 | { 4 | "type": "eventGridTrigger", 5 | "name": "cloudEvent", 6 | "direction": "in" 7 | } 8 | ] 9 | } -------------------------------------------------------------------------------- /Functions.Templates/Templates/EventGridCloudEventTrigger-FSharp/.template.config/vs-2017.3/eventGrid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-templates/44b0e29d1905fe518b0278445bb561556d1011f6/Functions.Templates/Templates/EventGridCloudEventTrigger-FSharp/.template.config/vs-2017.3/eventGrid.png -------------------------------------------------------------------------------- /Functions.Templates/Templates/EventGridTrigger-CSharp-2.x/.template.config/vs-2017.3/eventGrid-mac-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-templates/44b0e29d1905fe518b0278445bb561556d1011f6/Functions.Templates/Templates/EventGridTrigger-CSharp-2.x/.template.config/vs-2017.3/eventGrid-mac-32.png -------------------------------------------------------------------------------- /Functions.Templates/Templates/EventGridTrigger-CSharp-2.x/.template.config/vs-2017.3/eventGrid-mac-32@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-templates/44b0e29d1905fe518b0278445bb561556d1011f6/Functions.Templates/Templates/EventGridTrigger-CSharp-2.x/.template.config/vs-2017.3/eventGrid-mac-32@2x.png -------------------------------------------------------------------------------- /Functions.Templates/Templates/EventGridTrigger-CSharp-2.x/.template.config/vs-2017.3/eventGrid-mac-32~dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-templates/44b0e29d1905fe518b0278445bb561556d1011f6/Functions.Templates/Templates/EventGridTrigger-CSharp-2.x/.template.config/vs-2017.3/eventGrid-mac-32~dark.png -------------------------------------------------------------------------------- /Functions.Templates/Templates/EventGridTrigger-CSharp-2.x/.template.config/vs-2017.3/eventGrid-mac-32~sel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-templates/44b0e29d1905fe518b0278445bb561556d1011f6/Functions.Templates/Templates/EventGridTrigger-CSharp-2.x/.template.config/vs-2017.3/eventGrid-mac-32~sel.png -------------------------------------------------------------------------------- /Functions.Templates/Templates/EventGridTrigger-CSharp-2.x/.template.config/vs-2017.3/eventGrid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-templates/44b0e29d1905fe518b0278445bb561556d1011f6/Functions.Templates/Templates/EventGridTrigger-CSharp-2.x/.template.config/vs-2017.3/eventGrid.png -------------------------------------------------------------------------------- /Functions.Templates/Templates/EventGridTrigger-CSharp-2.x/function.json: -------------------------------------------------------------------------------- 1 | { 2 | "bindings": [ 3 | { 4 | "type": "eventGridTrigger", 5 | "name": "eventGridEvent", 6 | "direction": "in" 7 | } 8 | ] 9 | } -------------------------------------------------------------------------------- /Functions.Templates/Templates/EventGridTrigger-CSharp-2.x/run.csx: -------------------------------------------------------------------------------- 1 | #r "Microsoft.Azure.EventGrid" 2 | using Microsoft.Azure.EventGrid.Models; 3 | 4 | public static void Run(EventGridEvent eventGridEvent, ILogger log) 5 | { 6 | log.LogInformation(eventGridEvent.Data.ToString()); 7 | } 8 | -------------------------------------------------------------------------------- /Functions.Templates/Templates/EventGridTrigger-CSharp-3.x/.template.config/vs-2017.3/eventGrid-mac-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-templates/44b0e29d1905fe518b0278445bb561556d1011f6/Functions.Templates/Templates/EventGridTrigger-CSharp-3.x/.template.config/vs-2017.3/eventGrid-mac-32.png -------------------------------------------------------------------------------- /Functions.Templates/Templates/EventGridTrigger-CSharp-3.x/.template.config/vs-2017.3/eventGrid-mac-32@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-templates/44b0e29d1905fe518b0278445bb561556d1011f6/Functions.Templates/Templates/EventGridTrigger-CSharp-3.x/.template.config/vs-2017.3/eventGrid-mac-32@2x.png -------------------------------------------------------------------------------- /Functions.Templates/Templates/EventGridTrigger-CSharp-3.x/.template.config/vs-2017.3/eventGrid-mac-32~dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-templates/44b0e29d1905fe518b0278445bb561556d1011f6/Functions.Templates/Templates/EventGridTrigger-CSharp-3.x/.template.config/vs-2017.3/eventGrid-mac-32~dark.png -------------------------------------------------------------------------------- /Functions.Templates/Templates/EventGridTrigger-CSharp-3.x/.template.config/vs-2017.3/eventGrid-mac-32~sel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-templates/44b0e29d1905fe518b0278445bb561556d1011f6/Functions.Templates/Templates/EventGridTrigger-CSharp-3.x/.template.config/vs-2017.3/eventGrid-mac-32~sel.png -------------------------------------------------------------------------------- /Functions.Templates/Templates/EventGridTrigger-CSharp-3.x/.template.config/vs-2017.3/eventGrid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-templates/44b0e29d1905fe518b0278445bb561556d1011f6/Functions.Templates/Templates/EventGridTrigger-CSharp-3.x/.template.config/vs-2017.3/eventGrid.png -------------------------------------------------------------------------------- /Functions.Templates/Templates/EventGridTrigger-CSharp-3.x/function.json: -------------------------------------------------------------------------------- 1 | { 2 | "bindings": [ 3 | { 4 | "type": "eventGridTrigger", 5 | "name": "eventGridEvent", 6 | "direction": "in" 7 | } 8 | ] 9 | } -------------------------------------------------------------------------------- /Functions.Templates/Templates/EventGridTrigger-CSharp-3.x/run.csx: -------------------------------------------------------------------------------- 1 | #r "Azure.Messaging.EventGrid" 2 | 3 | using Azure.Messaging.EventGrid; 4 | 5 | public static void Run(EventGridEvent eventGridEvent, ILogger log) 6 | { 7 | log.LogInformation(eventGridEvent.EventType.ToString()); 8 | } 9 | -------------------------------------------------------------------------------- /Functions.Templates/Templates/EventGridTrigger-CSharp-Isolated/.template.config/vs-2017.3/eventGrid-mac-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-templates/44b0e29d1905fe518b0278445bb561556d1011f6/Functions.Templates/Templates/EventGridTrigger-CSharp-Isolated/.template.config/vs-2017.3/eventGrid-mac-32.png -------------------------------------------------------------------------------- /Functions.Templates/Templates/EventGridTrigger-CSharp-Isolated/.template.config/vs-2017.3/eventGrid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-templates/44b0e29d1905fe518b0278445bb561556d1011f6/Functions.Templates/Templates/EventGridTrigger-CSharp-Isolated/.template.config/vs-2017.3/eventGrid.png -------------------------------------------------------------------------------- /Functions.Templates/Templates/EventGridTrigger-Custom/function.json: -------------------------------------------------------------------------------- 1 | { 2 | "bindings": [ 3 | { 4 | "type": "eventGridTrigger", 5 | "name": "eventGridEvent", 6 | "direction": "in" 7 | } 8 | ] 9 | } -------------------------------------------------------------------------------- /Functions.Templates/Templates/EventGridTrigger-FSharp-3.x/.template.config/vs-2017.3/eventGrid-mac-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-templates/44b0e29d1905fe518b0278445bb561556d1011f6/Functions.Templates/Templates/EventGridTrigger-FSharp-3.x/.template.config/vs-2017.3/eventGrid-mac-32.png -------------------------------------------------------------------------------- /Functions.Templates/Templates/EventGridTrigger-FSharp-3.x/.template.config/vs-2017.3/eventGrid-mac-32@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-templates/44b0e29d1905fe518b0278445bb561556d1011f6/Functions.Templates/Templates/EventGridTrigger-FSharp-3.x/.template.config/vs-2017.3/eventGrid-mac-32@2x.png -------------------------------------------------------------------------------- /Functions.Templates/Templates/EventGridTrigger-FSharp-3.x/.template.config/vs-2017.3/eventGrid-mac-32~dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-templates/44b0e29d1905fe518b0278445bb561556d1011f6/Functions.Templates/Templates/EventGridTrigger-FSharp-3.x/.template.config/vs-2017.3/eventGrid-mac-32~dark.png -------------------------------------------------------------------------------- /Functions.Templates/Templates/EventGridTrigger-FSharp-3.x/.template.config/vs-2017.3/eventGrid-mac-32~sel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-templates/44b0e29d1905fe518b0278445bb561556d1011f6/Functions.Templates/Templates/EventGridTrigger-FSharp-3.x/.template.config/vs-2017.3/eventGrid-mac-32~sel.png -------------------------------------------------------------------------------- /Functions.Templates/Templates/EventGridTrigger-FSharp-3.x/.template.config/vs-2017.3/eventGrid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-templates/44b0e29d1905fe518b0278445bb561556d1011f6/Functions.Templates/Templates/EventGridTrigger-FSharp-3.x/.template.config/vs-2017.3/eventGrid.png -------------------------------------------------------------------------------- /Functions.Templates/Templates/EventGridTrigger-FSharp-3.x/function.json: -------------------------------------------------------------------------------- 1 | { 2 | "bindings": [ 3 | { 4 | "type": "eventGridTrigger", 5 | "name": "eventGridEvent", 6 | "direction": "in" 7 | } 8 | ] 9 | } -------------------------------------------------------------------------------- /Functions.Templates/Templates/EventGridTrigger-FSharp-Isolated/.template.config/vs-2017.3/eventGrid-mac-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-templates/44b0e29d1905fe518b0278445bb561556d1011f6/Functions.Templates/Templates/EventGridTrigger-FSharp-Isolated/.template.config/vs-2017.3/eventGrid-mac-32.png -------------------------------------------------------------------------------- /Functions.Templates/Templates/EventGridTrigger-FSharp-Isolated/.template.config/vs-2017.3/eventGrid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-templates/44b0e29d1905fe518b0278445bb561556d1011f6/Functions.Templates/Templates/EventGridTrigger-FSharp-Isolated/.template.config/vs-2017.3/eventGrid.png -------------------------------------------------------------------------------- /Functions.Templates/Templates/EventGridTrigger-FSharp/.template.config/vs-2017.3/eventGrid-mac-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-templates/44b0e29d1905fe518b0278445bb561556d1011f6/Functions.Templates/Templates/EventGridTrigger-FSharp/.template.config/vs-2017.3/eventGrid-mac-32.png -------------------------------------------------------------------------------- /Functions.Templates/Templates/EventGridTrigger-FSharp/.template.config/vs-2017.3/eventGrid-mac-32@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-templates/44b0e29d1905fe518b0278445bb561556d1011f6/Functions.Templates/Templates/EventGridTrigger-FSharp/.template.config/vs-2017.3/eventGrid-mac-32@2x.png -------------------------------------------------------------------------------- /Functions.Templates/Templates/EventGridTrigger-FSharp/.template.config/vs-2017.3/eventGrid-mac-32~dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-templates/44b0e29d1905fe518b0278445bb561556d1011f6/Functions.Templates/Templates/EventGridTrigger-FSharp/.template.config/vs-2017.3/eventGrid-mac-32~dark.png -------------------------------------------------------------------------------- /Functions.Templates/Templates/EventGridTrigger-FSharp/.template.config/vs-2017.3/eventGrid-mac-32~dark@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-templates/44b0e29d1905fe518b0278445bb561556d1011f6/Functions.Templates/Templates/EventGridTrigger-FSharp/.template.config/vs-2017.3/eventGrid-mac-32~dark@2x.png -------------------------------------------------------------------------------- /Functions.Templates/Templates/EventGridTrigger-FSharp/.template.config/vs-2017.3/eventGrid-mac-32~dark~sel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-templates/44b0e29d1905fe518b0278445bb561556d1011f6/Functions.Templates/Templates/EventGridTrigger-FSharp/.template.config/vs-2017.3/eventGrid-mac-32~dark~sel.png -------------------------------------------------------------------------------- /Functions.Templates/Templates/EventGridTrigger-FSharp/.template.config/vs-2017.3/eventGrid-mac-32~sel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-templates/44b0e29d1905fe518b0278445bb561556d1011f6/Functions.Templates/Templates/EventGridTrigger-FSharp/.template.config/vs-2017.3/eventGrid-mac-32~sel.png -------------------------------------------------------------------------------- /Functions.Templates/Templates/EventGridTrigger-FSharp/.template.config/vs-2017.3/eventGrid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-templates/44b0e29d1905fe518b0278445bb561556d1011f6/Functions.Templates/Templates/EventGridTrigger-FSharp/.template.config/vs-2017.3/eventGrid.png -------------------------------------------------------------------------------- /Functions.Templates/Templates/EventGridTrigger-FSharp/function.json: -------------------------------------------------------------------------------- 1 | { 2 | "bindings": [ 3 | { 4 | "type": "eventGridTrigger", 5 | "name": "eventGridEvent", 6 | "direction": "in" 7 | } 8 | ] 9 | } -------------------------------------------------------------------------------- /Functions.Templates/Templates/EventGridTrigger-JavaScript/function.json: -------------------------------------------------------------------------------- 1 | { 2 | "bindings": [ 3 | { 4 | "type": "eventGridTrigger", 5 | "name": "eventGridEvent", 6 | "direction": "in" 7 | } 8 | ] 9 | } -------------------------------------------------------------------------------- /Functions.Templates/Templates/EventGridTrigger-JavaScript/index.js: -------------------------------------------------------------------------------- 1 | module.exports = async function (context, eventGridEvent) { 2 | context.log(typeof eventGridEvent); 3 | context.log(eventGridEvent); 4 | }; -------------------------------------------------------------------------------- /Functions.Templates/Templates/EventGridTrigger-PowerShell/function.json: -------------------------------------------------------------------------------- 1 | { 2 | "bindings": [ 3 | { 4 | "type": "eventGridTrigger", 5 | "name": "eventGridEvent", 6 | "direction": "in" 7 | } 8 | ] 9 | } 10 | -------------------------------------------------------------------------------- /Functions.Templates/Templates/EventGridTrigger-PowerShell/run.ps1: -------------------------------------------------------------------------------- 1 | param($eventGridEvent, $TriggerMetadata) 2 | 3 | # Make sure to pass hashtables to Out-String so they're logged correctly 4 | $eventGridEvent | Out-String | Write-Host 5 | -------------------------------------------------------------------------------- /Functions.Templates/Templates/EventGridTrigger-Python/function.json: -------------------------------------------------------------------------------- 1 | { 2 | "scriptFile": "__init__.py", 3 | "bindings": [ 4 | { 5 | "type": "eventGridTrigger", 6 | "name": "event", 7 | "direction": "in" 8 | } 9 | ] 10 | } 11 | -------------------------------------------------------------------------------- /Functions.Templates/Templates/EventGridTrigger-TypeScript/function.json: -------------------------------------------------------------------------------- 1 | { 2 | "bindings": [ 3 | { 4 | "type": "eventGridTrigger", 5 | "name": "eventGridEvent", 6 | "direction": "in" 7 | } 8 | ] 9 | } -------------------------------------------------------------------------------- /Functions.Templates/Templates/EventHubTrigger-CSharp-3.x/sample.dat: -------------------------------------------------------------------------------- 1 | Test Message -------------------------------------------------------------------------------- /Functions.Templates/Templates/EventHubTrigger-CSharp-4.x/.template.config/vs-2017.3/eventhub-mac-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-templates/44b0e29d1905fe518b0278445bb561556d1011f6/Functions.Templates/Templates/EventHubTrigger-CSharp-4.x/.template.config/vs-2017.3/eventhub-mac-32.png -------------------------------------------------------------------------------- /Functions.Templates/Templates/EventHubTrigger-CSharp-4.x/.template.config/vs-2017.3/eventhub-mac-32@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-templates/44b0e29d1905fe518b0278445bb561556d1011f6/Functions.Templates/Templates/EventHubTrigger-CSharp-4.x/.template.config/vs-2017.3/eventhub-mac-32@2x.png -------------------------------------------------------------------------------- /Functions.Templates/Templates/EventHubTrigger-CSharp-4.x/.template.config/vs-2017.3/eventhub-mac-32~sel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-templates/44b0e29d1905fe518b0278445bb561556d1011f6/Functions.Templates/Templates/EventHubTrigger-CSharp-4.x/.template.config/vs-2017.3/eventhub-mac-32~sel.png -------------------------------------------------------------------------------- /Functions.Templates/Templates/EventHubTrigger-CSharp-4.x/.template.config/vs-2017.3/eventhub.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-templates/44b0e29d1905fe518b0278445bb561556d1011f6/Functions.Templates/Templates/EventHubTrigger-CSharp-4.x/.template.config/vs-2017.3/eventhub.png -------------------------------------------------------------------------------- /Functions.Templates/Templates/EventHubTrigger-CSharp-4.x/sample.dat: -------------------------------------------------------------------------------- 1 | Test Message -------------------------------------------------------------------------------- /Functions.Templates/Templates/EventHubTrigger-CSharp-5.x/.template.config/vs-2017.3/eventhub-mac-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-templates/44b0e29d1905fe518b0278445bb561556d1011f6/Functions.Templates/Templates/EventHubTrigger-CSharp-5.x/.template.config/vs-2017.3/eventhub-mac-32.png -------------------------------------------------------------------------------- /Functions.Templates/Templates/EventHubTrigger-CSharp-5.x/.template.config/vs-2017.3/eventhub-mac-32@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-templates/44b0e29d1905fe518b0278445bb561556d1011f6/Functions.Templates/Templates/EventHubTrigger-CSharp-5.x/.template.config/vs-2017.3/eventhub-mac-32@2x.png -------------------------------------------------------------------------------- /Functions.Templates/Templates/EventHubTrigger-CSharp-5.x/.template.config/vs-2017.3/eventhub-mac-32~sel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-templates/44b0e29d1905fe518b0278445bb561556d1011f6/Functions.Templates/Templates/EventHubTrigger-CSharp-5.x/.template.config/vs-2017.3/eventhub-mac-32~sel.png -------------------------------------------------------------------------------- /Functions.Templates/Templates/EventHubTrigger-CSharp-5.x/.template.config/vs-2017.3/eventhub.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-templates/44b0e29d1905fe518b0278445bb561556d1011f6/Functions.Templates/Templates/EventHubTrigger-CSharp-5.x/.template.config/vs-2017.3/eventhub.png -------------------------------------------------------------------------------- /Functions.Templates/Templates/EventHubTrigger-CSharp-5.x/sample.dat: -------------------------------------------------------------------------------- 1 | Test Message -------------------------------------------------------------------------------- /Functions.Templates/Templates/EventHubTrigger-CSharp-6.x/.template.config/vs-2017.3/eventhub-mac-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-templates/44b0e29d1905fe518b0278445bb561556d1011f6/Functions.Templates/Templates/EventHubTrigger-CSharp-6.x/.template.config/vs-2017.3/eventhub-mac-32.png -------------------------------------------------------------------------------- /Functions.Templates/Templates/EventHubTrigger-CSharp-6.x/.template.config/vs-2017.3/eventhub-mac-32@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-templates/44b0e29d1905fe518b0278445bb561556d1011f6/Functions.Templates/Templates/EventHubTrigger-CSharp-6.x/.template.config/vs-2017.3/eventhub-mac-32@2x.png -------------------------------------------------------------------------------- /Functions.Templates/Templates/EventHubTrigger-CSharp-6.x/.template.config/vs-2017.3/eventhub-mac-32~sel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-templates/44b0e29d1905fe518b0278445bb561556d1011f6/Functions.Templates/Templates/EventHubTrigger-CSharp-6.x/.template.config/vs-2017.3/eventhub-mac-32~sel.png -------------------------------------------------------------------------------- /Functions.Templates/Templates/EventHubTrigger-CSharp-6.x/.template.config/vs-2017.3/eventhub.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-templates/44b0e29d1905fe518b0278445bb561556d1011f6/Functions.Templates/Templates/EventHubTrigger-CSharp-6.x/.template.config/vs-2017.3/eventhub.png -------------------------------------------------------------------------------- /Functions.Templates/Templates/EventHubTrigger-CSharp-6.x/sample.dat: -------------------------------------------------------------------------------- 1 | Test Message -------------------------------------------------------------------------------- /Functions.Templates/Templates/EventHubTrigger-CSharp-Isolated/.template.config/vs-2017.3/eventhub.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-templates/44b0e29d1905fe518b0278445bb561556d1011f6/Functions.Templates/Templates/EventHubTrigger-CSharp-Isolated/.template.config/vs-2017.3/eventhub.png -------------------------------------------------------------------------------- /Functions.Templates/Templates/EventHubTrigger-FSharp-5.x/.template.config/vs-2017.3/eventhub-mac-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-templates/44b0e29d1905fe518b0278445bb561556d1011f6/Functions.Templates/Templates/EventHubTrigger-FSharp-5.x/.template.config/vs-2017.3/eventhub-mac-32.png -------------------------------------------------------------------------------- /Functions.Templates/Templates/EventHubTrigger-FSharp-5.x/.template.config/vs-2017.3/eventhub-mac-32@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-templates/44b0e29d1905fe518b0278445bb561556d1011f6/Functions.Templates/Templates/EventHubTrigger-FSharp-5.x/.template.config/vs-2017.3/eventhub-mac-32@2x.png -------------------------------------------------------------------------------- /Functions.Templates/Templates/EventHubTrigger-FSharp-5.x/.template.config/vs-2017.3/eventhub-mac-32~sel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-templates/44b0e29d1905fe518b0278445bb561556d1011f6/Functions.Templates/Templates/EventHubTrigger-FSharp-5.x/.template.config/vs-2017.3/eventhub-mac-32~sel.png -------------------------------------------------------------------------------- /Functions.Templates/Templates/EventHubTrigger-FSharp-5.x/.template.config/vs-2017.3/eventhub.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-templates/44b0e29d1905fe518b0278445bb561556d1011f6/Functions.Templates/Templates/EventHubTrigger-FSharp-5.x/.template.config/vs-2017.3/eventhub.png -------------------------------------------------------------------------------- /Functions.Templates/Templates/EventHubTrigger-FSharp-5.x/sample.dat: -------------------------------------------------------------------------------- 1 | Test Message -------------------------------------------------------------------------------- /Functions.Templates/Templates/EventHubTrigger-FSharp-Isolated/.template.config/vs-2017.3/eventhub.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-templates/44b0e29d1905fe518b0278445bb561556d1011f6/Functions.Templates/Templates/EventHubTrigger-FSharp-Isolated/.template.config/vs-2017.3/eventhub.png -------------------------------------------------------------------------------- /Functions.Templates/Templates/EventHubTrigger-FSharp/.template.config/vs-2017.3/eventhub-mac-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-templates/44b0e29d1905fe518b0278445bb561556d1011f6/Functions.Templates/Templates/EventHubTrigger-FSharp/.template.config/vs-2017.3/eventhub-mac-32.png -------------------------------------------------------------------------------- /Functions.Templates/Templates/EventHubTrigger-FSharp/.template.config/vs-2017.3/eventhub-mac-32@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-templates/44b0e29d1905fe518b0278445bb561556d1011f6/Functions.Templates/Templates/EventHubTrigger-FSharp/.template.config/vs-2017.3/eventhub-mac-32@2x.png -------------------------------------------------------------------------------- /Functions.Templates/Templates/EventHubTrigger-FSharp/.template.config/vs-2017.3/eventhub-mac-32~dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-templates/44b0e29d1905fe518b0278445bb561556d1011f6/Functions.Templates/Templates/EventHubTrigger-FSharp/.template.config/vs-2017.3/eventhub-mac-32~dark.png -------------------------------------------------------------------------------- /Functions.Templates/Templates/EventHubTrigger-FSharp/.template.config/vs-2017.3/eventhub-mac-32~dark@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-templates/44b0e29d1905fe518b0278445bb561556d1011f6/Functions.Templates/Templates/EventHubTrigger-FSharp/.template.config/vs-2017.3/eventhub-mac-32~dark@2x.png -------------------------------------------------------------------------------- /Functions.Templates/Templates/EventHubTrigger-FSharp/.template.config/vs-2017.3/eventhub-mac-32~sel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-templates/44b0e29d1905fe518b0278445bb561556d1011f6/Functions.Templates/Templates/EventHubTrigger-FSharp/.template.config/vs-2017.3/eventhub-mac-32~sel.png -------------------------------------------------------------------------------- /Functions.Templates/Templates/EventHubTrigger-FSharp/.template.config/vs-2017.3/eventhub-mac-32~sel@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-templates/44b0e29d1905fe518b0278445bb561556d1011f6/Functions.Templates/Templates/EventHubTrigger-FSharp/.template.config/vs-2017.3/eventhub-mac-32~sel@2x.png -------------------------------------------------------------------------------- /Functions.Templates/Templates/EventHubTrigger-FSharp/.template.config/vs-2017.3/eventhub.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-templates/44b0e29d1905fe518b0278445bb561556d1011f6/Functions.Templates/Templates/EventHubTrigger-FSharp/.template.config/vs-2017.3/eventhub.png -------------------------------------------------------------------------------- /Functions.Templates/Templates/EventHubTrigger-FSharp/sample.dat: -------------------------------------------------------------------------------- 1 | Test Message -------------------------------------------------------------------------------- /Functions.Templates/Templates/EventHubTrigger-JavaScript/sample.dat: -------------------------------------------------------------------------------- 1 | "Test Message" -------------------------------------------------------------------------------- /Functions.Templates/Templates/EventHubTrigger-PowerShell/run.ps1: -------------------------------------------------------------------------------- 1 | param($eventHubMessages, $TriggerMetadata) 2 | 3 | Write-Host "PowerShell eventhub trigger function called for message array: $eventHubMessages" 4 | 5 | $eventHubMessages | ForEach-Object { Write-Host "Processed message: $_" } 6 | -------------------------------------------------------------------------------- /Functions.Templates/Templates/EventHubTrigger-PowerShell/sample.dat: -------------------------------------------------------------------------------- 1 | "Test Message" -------------------------------------------------------------------------------- /Functions.Templates/Templates/EventHubTrigger-Python/sample.dat: -------------------------------------------------------------------------------- 1 | Test Message -------------------------------------------------------------------------------- /Functions.Templates/Templates/EventHubTrigger-TypeScript/sample.dat: -------------------------------------------------------------------------------- 1 | "Test Message" -------------------------------------------------------------------------------- /Functions.Templates/Templates/HttpTrigger-CSharp-Isolated-NetFx/.template.config/vs-2017.3/httpTrigger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-templates/44b0e29d1905fe518b0278445bb561556d1011f6/Functions.Templates/Templates/HttpTrigger-CSharp-Isolated-NetFx/.template.config/vs-2017.3/httpTrigger.png -------------------------------------------------------------------------------- /Functions.Templates/Templates/HttpTrigger-CSharp-Isolated/.template.config/vs-2017.3/httpTrigger-mac-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-templates/44b0e29d1905fe518b0278445bb561556d1011f6/Functions.Templates/Templates/HttpTrigger-CSharp-Isolated/.template.config/vs-2017.3/httpTrigger-mac-32.png -------------------------------------------------------------------------------- /Functions.Templates/Templates/HttpTrigger-CSharp-Isolated/.template.config/vs-2017.3/httpTrigger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-templates/44b0e29d1905fe518b0278445bb561556d1011f6/Functions.Templates/Templates/HttpTrigger-CSharp-Isolated/.template.config/vs-2017.3/httpTrigger.png -------------------------------------------------------------------------------- /Functions.Templates/Templates/HttpTrigger-CSharp/.template.config/vs-2017.3/httpTrigger-mac-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-templates/44b0e29d1905fe518b0278445bb561556d1011f6/Functions.Templates/Templates/HttpTrigger-CSharp/.template.config/vs-2017.3/httpTrigger-mac-32.png -------------------------------------------------------------------------------- /Functions.Templates/Templates/HttpTrigger-CSharp/.template.config/vs-2017.3/httpTrigger-mac-32@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-templates/44b0e29d1905fe518b0278445bb561556d1011f6/Functions.Templates/Templates/HttpTrigger-CSharp/.template.config/vs-2017.3/httpTrigger-mac-32@2x.png -------------------------------------------------------------------------------- /Functions.Templates/Templates/HttpTrigger-CSharp/.template.config/vs-2017.3/httpTrigger-mac-32~dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-templates/44b0e29d1905fe518b0278445bb561556d1011f6/Functions.Templates/Templates/HttpTrigger-CSharp/.template.config/vs-2017.3/httpTrigger-mac-32~dark.png -------------------------------------------------------------------------------- /Functions.Templates/Templates/HttpTrigger-CSharp/.template.config/vs-2017.3/httpTrigger-mac-32~dark@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-templates/44b0e29d1905fe518b0278445bb561556d1011f6/Functions.Templates/Templates/HttpTrigger-CSharp/.template.config/vs-2017.3/httpTrigger-mac-32~dark@2x.png -------------------------------------------------------------------------------- /Functions.Templates/Templates/HttpTrigger-CSharp/.template.config/vs-2017.3/httpTrigger-mac-32~dark~sel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-templates/44b0e29d1905fe518b0278445bb561556d1011f6/Functions.Templates/Templates/HttpTrigger-CSharp/.template.config/vs-2017.3/httpTrigger-mac-32~dark~sel.png -------------------------------------------------------------------------------- /Functions.Templates/Templates/HttpTrigger-CSharp/.template.config/vs-2017.3/httpTrigger-mac-32~sel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-templates/44b0e29d1905fe518b0278445bb561556d1011f6/Functions.Templates/Templates/HttpTrigger-CSharp/.template.config/vs-2017.3/httpTrigger-mac-32~sel.png -------------------------------------------------------------------------------- /Functions.Templates/Templates/HttpTrigger-CSharp/.template.config/vs-2017.3/httpTrigger-mac-32~sel@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-templates/44b0e29d1905fe518b0278445bb561556d1011f6/Functions.Templates/Templates/HttpTrigger-CSharp/.template.config/vs-2017.3/httpTrigger-mac-32~sel@2x.png -------------------------------------------------------------------------------- /Functions.Templates/Templates/HttpTrigger-CSharp/.template.config/vs-2017.3/httpTrigger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-templates/44b0e29d1905fe518b0278445bb561556d1011f6/Functions.Templates/Templates/HttpTrigger-CSharp/.template.config/vs-2017.3/httpTrigger.png -------------------------------------------------------------------------------- /Functions.Templates/Templates/HttpTrigger-CSharp/sample.dat: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Azure" 3 | } -------------------------------------------------------------------------------- /Functions.Templates/Templates/HttpTrigger-FSharp-Isolated/.template.config/vs-2017.3/httpTrigger-mac-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-templates/44b0e29d1905fe518b0278445bb561556d1011f6/Functions.Templates/Templates/HttpTrigger-FSharp-Isolated/.template.config/vs-2017.3/httpTrigger-mac-32.png -------------------------------------------------------------------------------- /Functions.Templates/Templates/HttpTrigger-FSharp-Isolated/.template.config/vs-2017.3/httpTrigger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-templates/44b0e29d1905fe518b0278445bb561556d1011f6/Functions.Templates/Templates/HttpTrigger-FSharp-Isolated/.template.config/vs-2017.3/httpTrigger.png -------------------------------------------------------------------------------- /Functions.Templates/Templates/HttpTrigger-FSharp/.template.config/vs-2017.3/httpTrigger-mac-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-templates/44b0e29d1905fe518b0278445bb561556d1011f6/Functions.Templates/Templates/HttpTrigger-FSharp/.template.config/vs-2017.3/httpTrigger-mac-32.png -------------------------------------------------------------------------------- /Functions.Templates/Templates/HttpTrigger-FSharp/.template.config/vs-2017.3/httpTrigger-mac-32@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-templates/44b0e29d1905fe518b0278445bb561556d1011f6/Functions.Templates/Templates/HttpTrigger-FSharp/.template.config/vs-2017.3/httpTrigger-mac-32@2x.png -------------------------------------------------------------------------------- /Functions.Templates/Templates/HttpTrigger-FSharp/.template.config/vs-2017.3/httpTrigger-mac-32~dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-templates/44b0e29d1905fe518b0278445bb561556d1011f6/Functions.Templates/Templates/HttpTrigger-FSharp/.template.config/vs-2017.3/httpTrigger-mac-32~dark.png -------------------------------------------------------------------------------- /Functions.Templates/Templates/HttpTrigger-FSharp/.template.config/vs-2017.3/httpTrigger-mac-32~dark@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-templates/44b0e29d1905fe518b0278445bb561556d1011f6/Functions.Templates/Templates/HttpTrigger-FSharp/.template.config/vs-2017.3/httpTrigger-mac-32~dark@2x.png -------------------------------------------------------------------------------- /Functions.Templates/Templates/HttpTrigger-FSharp/.template.config/vs-2017.3/httpTrigger-mac-32~dark~sel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-templates/44b0e29d1905fe518b0278445bb561556d1011f6/Functions.Templates/Templates/HttpTrigger-FSharp/.template.config/vs-2017.3/httpTrigger-mac-32~dark~sel.png -------------------------------------------------------------------------------- /Functions.Templates/Templates/HttpTrigger-FSharp/.template.config/vs-2017.3/httpTrigger-mac-32~sel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-templates/44b0e29d1905fe518b0278445bb561556d1011f6/Functions.Templates/Templates/HttpTrigger-FSharp/.template.config/vs-2017.3/httpTrigger-mac-32~sel.png -------------------------------------------------------------------------------- /Functions.Templates/Templates/HttpTrigger-FSharp/.template.config/vs-2017.3/httpTrigger-mac-32~sel@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-templates/44b0e29d1905fe518b0278445bb561556d1011f6/Functions.Templates/Templates/HttpTrigger-FSharp/.template.config/vs-2017.3/httpTrigger-mac-32~sel@2x.png -------------------------------------------------------------------------------- /Functions.Templates/Templates/HttpTrigger-FSharp/.template.config/vs-2017.3/httpTrigger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-templates/44b0e29d1905fe518b0278445bb561556d1011f6/Functions.Templates/Templates/HttpTrigger-FSharp/.template.config/vs-2017.3/httpTrigger.png -------------------------------------------------------------------------------- /Functions.Templates/Templates/HttpTrigger-FSharp/sample.dat: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Azure" 3 | } -------------------------------------------------------------------------------- /Functions.Templates/Templates/HttpTrigger-JavaScript/sample.dat: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Azure" 3 | } -------------------------------------------------------------------------------- /Functions.Templates/Templates/HttpTrigger-PowerShell/sample.dat: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Azure" 3 | } 4 | -------------------------------------------------------------------------------- /Functions.Templates/Templates/HttpTrigger-Python/sample.dat: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Azure" 3 | } -------------------------------------------------------------------------------- /Functions.Templates/Templates/HttpTrigger-TypeScript/sample.dat: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Azure" 3 | } -------------------------------------------------------------------------------- /Functions.Templates/Templates/HttpTriggerWithOpenAPI-CSharp/.template.config/vs-2017.3/httpTrigger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-templates/44b0e29d1905fe518b0278445bb561556d1011f6/Functions.Templates/Templates/HttpTriggerWithOpenAPI-CSharp/.template.config/vs-2017.3/httpTrigger.png -------------------------------------------------------------------------------- /Functions.Templates/Templates/HttpTriggerWithOpenAPI-CSharp/sample.dat: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Azure" 3 | } -------------------------------------------------------------------------------- /Functions.Templates/Templates/IoTHubTrigger-CSharp/.template.config/vs-2017.3/eventhub-mac-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-templates/44b0e29d1905fe518b0278445bb561556d1011f6/Functions.Templates/Templates/IoTHubTrigger-CSharp/.template.config/vs-2017.3/eventhub-mac-32.png -------------------------------------------------------------------------------- /Functions.Templates/Templates/IoTHubTrigger-CSharp/.template.config/vs-2017.3/eventhub-mac-32@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-templates/44b0e29d1905fe518b0278445bb561556d1011f6/Functions.Templates/Templates/IoTHubTrigger-CSharp/.template.config/vs-2017.3/eventhub-mac-32@2x.png -------------------------------------------------------------------------------- /Functions.Templates/Templates/IoTHubTrigger-CSharp/.template.config/vs-2017.3/eventhub-mac-32~dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-templates/44b0e29d1905fe518b0278445bb561556d1011f6/Functions.Templates/Templates/IoTHubTrigger-CSharp/.template.config/vs-2017.3/eventhub-mac-32~dark.png -------------------------------------------------------------------------------- /Functions.Templates/Templates/IoTHubTrigger-CSharp/.template.config/vs-2017.3/eventhub-mac-32~dark@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-templates/44b0e29d1905fe518b0278445bb561556d1011f6/Functions.Templates/Templates/IoTHubTrigger-CSharp/.template.config/vs-2017.3/eventhub-mac-32~dark@2x.png -------------------------------------------------------------------------------- /Functions.Templates/Templates/IoTHubTrigger-CSharp/.template.config/vs-2017.3/eventhub-mac-32~dark~sel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-templates/44b0e29d1905fe518b0278445bb561556d1011f6/Functions.Templates/Templates/IoTHubTrigger-CSharp/.template.config/vs-2017.3/eventhub-mac-32~dark~sel.png -------------------------------------------------------------------------------- /Functions.Templates/Templates/IoTHubTrigger-CSharp/.template.config/vs-2017.3/eventhub-mac-32~sel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-templates/44b0e29d1905fe518b0278445bb561556d1011f6/Functions.Templates/Templates/IoTHubTrigger-CSharp/.template.config/vs-2017.3/eventhub-mac-32~sel.png -------------------------------------------------------------------------------- /Functions.Templates/Templates/IoTHubTrigger-CSharp/.template.config/vs-2017.3/eventhub-mac-32~sel@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-templates/44b0e29d1905fe518b0278445bb561556d1011f6/Functions.Templates/Templates/IoTHubTrigger-CSharp/.template.config/vs-2017.3/eventhub-mac-32~sel@2x.png -------------------------------------------------------------------------------- /Functions.Templates/Templates/IoTHubTrigger-CSharp/.template.config/vs-2017.3/eventhub.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-templates/44b0e29d1905fe518b0278445bb561556d1011f6/Functions.Templates/Templates/IoTHubTrigger-CSharp/.template.config/vs-2017.3/eventhub.png -------------------------------------------------------------------------------- /Functions.Templates/Templates/IoTHubTrigger-CSharp/run.csx: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | public static void Run(string myIoTHubMessage, ILogger log) 4 | { 5 | log.LogInformation($"C# IoT Hub trigger function processed a message: {myIoTHubMessage}"); 6 | } -------------------------------------------------------------------------------- /Functions.Templates/Templates/IoTHubTrigger-CSharp/sample.dat: -------------------------------------------------------------------------------- 1 | Test Message -------------------------------------------------------------------------------- /Functions.Templates/Templates/IoTHubTrigger-JavaScript/sample.dat: -------------------------------------------------------------------------------- 1 | Test Message -------------------------------------------------------------------------------- /Functions.Templates/Templates/IoTHubTrigger-PowerShell/run.ps1: -------------------------------------------------------------------------------- 1 | param($IoTHubMessages, $TriggerMetadata) 2 | 3 | Write-Host "PowerShell eventhub trigger function called for message array: $IoTHubMessages" 4 | 5 | $IoTHubMessages | ForEach-Object { Write-Host "Processed message: $_" } 6 | -------------------------------------------------------------------------------- /Functions.Templates/Templates/IoTHubTrigger-PowerShell/sample.dat: -------------------------------------------------------------------------------- 1 | Test Message -------------------------------------------------------------------------------- /Functions.Templates/Templates/IoTHubTrigger-TypeScript/sample.dat: -------------------------------------------------------------------------------- 1 | Test Message -------------------------------------------------------------------------------- /Functions.Templates/Templates/KafkaOutput-CSharp/.template.config/vs-2017.3/functionF-mac-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-templates/44b0e29d1905fe518b0278445bb561556d1011f6/Functions.Templates/Templates/KafkaOutput-CSharp/.template.config/vs-2017.3/functionF-mac-32.png -------------------------------------------------------------------------------- /Functions.Templates/Templates/KafkaOutput-CSharp/.template.config/vs-2017.3/functionF-mac-32@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-templates/44b0e29d1905fe518b0278445bb561556d1011f6/Functions.Templates/Templates/KafkaOutput-CSharp/.template.config/vs-2017.3/functionF-mac-32@2x.png -------------------------------------------------------------------------------- /Functions.Templates/Templates/KafkaOutput-CSharp/.template.config/vs-2017.3/functionF-mac-32~dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-templates/44b0e29d1905fe518b0278445bb561556d1011f6/Functions.Templates/Templates/KafkaOutput-CSharp/.template.config/vs-2017.3/functionF-mac-32~dark.png -------------------------------------------------------------------------------- /Functions.Templates/Templates/KafkaOutput-CSharp/.template.config/vs-2017.3/functionF-mac-32~dark@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-templates/44b0e29d1905fe518b0278445bb561556d1011f6/Functions.Templates/Templates/KafkaOutput-CSharp/.template.config/vs-2017.3/functionF-mac-32~dark@2x.png -------------------------------------------------------------------------------- /Functions.Templates/Templates/KafkaOutput-CSharp/.template.config/vs-2017.3/functionF-mac-32~dark~sel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-templates/44b0e29d1905fe518b0278445bb561556d1011f6/Functions.Templates/Templates/KafkaOutput-CSharp/.template.config/vs-2017.3/functionF-mac-32~dark~sel.png -------------------------------------------------------------------------------- /Functions.Templates/Templates/KafkaOutput-CSharp/.template.config/vs-2017.3/functionF-mac-32~sel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-templates/44b0e29d1905fe518b0278445bb561556d1011f6/Functions.Templates/Templates/KafkaOutput-CSharp/.template.config/vs-2017.3/functionF-mac-32~sel.png -------------------------------------------------------------------------------- /Functions.Templates/Templates/KafkaOutput-CSharp/.template.config/vs-2017.3/functionF-mac-32~sel@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-templates/44b0e29d1905fe518b0278445bb561556d1011f6/Functions.Templates/Templates/KafkaOutput-CSharp/.template.config/vs-2017.3/functionF-mac-32~sel@2x.png -------------------------------------------------------------------------------- /Functions.Templates/Templates/KafkaOutput-CSharp/.template.config/vs-2017.3/functionF.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-templates/44b0e29d1905fe518b0278445bb561556d1011f6/Functions.Templates/Templates/KafkaOutput-CSharp/.template.config/vs-2017.3/functionF.png -------------------------------------------------------------------------------- /Functions.Templates/Templates/KafkaOutput-CSharp/sample.dat: -------------------------------------------------------------------------------- 1 | { 2 | "message": "hello" 3 | } -------------------------------------------------------------------------------- /Functions.Templates/Templates/KafkaOutput-JavaScript/sample.dat: -------------------------------------------------------------------------------- 1 | { 2 | "message": "hello" 3 | } -------------------------------------------------------------------------------- /Functions.Templates/Templates/KafkaOutput-PowerShell/sample.dat: -------------------------------------------------------------------------------- 1 | { 2 | "message": "hello" 3 | } -------------------------------------------------------------------------------- /Functions.Templates/Templates/KafkaOutput-Python/sample.dat: -------------------------------------------------------------------------------- 1 | { 2 | "message": "hello" 3 | } -------------------------------------------------------------------------------- /Functions.Templates/Templates/KafkaOutput-TypeScript/sample.dat: -------------------------------------------------------------------------------- 1 | { 2 | "message": "hello" 3 | } -------------------------------------------------------------------------------- /Functions.Templates/Templates/KafkaTrigger-CSharp/.template.config/vs-2017.3/functionF-mac-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-templates/44b0e29d1905fe518b0278445bb561556d1011f6/Functions.Templates/Templates/KafkaTrigger-CSharp/.template.config/vs-2017.3/functionF-mac-32.png -------------------------------------------------------------------------------- /Functions.Templates/Templates/KafkaTrigger-CSharp/.template.config/vs-2017.3/functionF-mac-32@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-templates/44b0e29d1905fe518b0278445bb561556d1011f6/Functions.Templates/Templates/KafkaTrigger-CSharp/.template.config/vs-2017.3/functionF-mac-32@2x.png -------------------------------------------------------------------------------- /Functions.Templates/Templates/KafkaTrigger-CSharp/.template.config/vs-2017.3/functionF-mac-32~dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-templates/44b0e29d1905fe518b0278445bb561556d1011f6/Functions.Templates/Templates/KafkaTrigger-CSharp/.template.config/vs-2017.3/functionF-mac-32~dark.png -------------------------------------------------------------------------------- /Functions.Templates/Templates/KafkaTrigger-CSharp/.template.config/vs-2017.3/functionF-mac-32~dark@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-templates/44b0e29d1905fe518b0278445bb561556d1011f6/Functions.Templates/Templates/KafkaTrigger-CSharp/.template.config/vs-2017.3/functionF-mac-32~dark@2x.png -------------------------------------------------------------------------------- /Functions.Templates/Templates/KafkaTrigger-CSharp/.template.config/vs-2017.3/functionF-mac-32~dark~sel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-templates/44b0e29d1905fe518b0278445bb561556d1011f6/Functions.Templates/Templates/KafkaTrigger-CSharp/.template.config/vs-2017.3/functionF-mac-32~dark~sel.png -------------------------------------------------------------------------------- /Functions.Templates/Templates/KafkaTrigger-CSharp/.template.config/vs-2017.3/functionF-mac-32~sel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-templates/44b0e29d1905fe518b0278445bb561556d1011f6/Functions.Templates/Templates/KafkaTrigger-CSharp/.template.config/vs-2017.3/functionF-mac-32~sel.png -------------------------------------------------------------------------------- /Functions.Templates/Templates/KafkaTrigger-CSharp/.template.config/vs-2017.3/functionF-mac-32~sel@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-templates/44b0e29d1905fe518b0278445bb561556d1011f6/Functions.Templates/Templates/KafkaTrigger-CSharp/.template.config/vs-2017.3/functionF-mac-32~sel@2x.png -------------------------------------------------------------------------------- /Functions.Templates/Templates/KafkaTrigger-CSharp/.template.config/vs-2017.3/functionF.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-templates/44b0e29d1905fe518b0278445bb561556d1011f6/Functions.Templates/Templates/KafkaTrigger-CSharp/.template.config/vs-2017.3/functionF.png -------------------------------------------------------------------------------- /Functions.Templates/Templates/KafkaTrigger-CSharp/sample.dat: -------------------------------------------------------------------------------- 1 | sample queue data -------------------------------------------------------------------------------- /Functions.Templates/Templates/KafkaTrigger-JavaScript/sample.dat: -------------------------------------------------------------------------------- 1 | sample queue data -------------------------------------------------------------------------------- /Functions.Templates/Templates/KafkaTrigger-PowerShell/run.ps1: -------------------------------------------------------------------------------- 1 | using namespace System.Net 2 | 3 | param($kafkaEvent, $TriggerMetadata) 4 | 5 | $kafkaEvent 6 | 7 | $TriggerMetadata -------------------------------------------------------------------------------- /Functions.Templates/Templates/KafkaTrigger-PowerShell/sample.dat: -------------------------------------------------------------------------------- 1 | sample queue data -------------------------------------------------------------------------------- /Functions.Templates/Templates/KafkaTrigger-Python/__init__.py: -------------------------------------------------------------------------------- 1 | import logging 2 | 3 | from azure.functions import KafkaEvent 4 | 5 | 6 | def main(kevent : KafkaEvent): 7 | logging.info(kevent.get_body().decode('utf-8')) 8 | logging.info(kevent.metadata) 9 | -------------------------------------------------------------------------------- /Functions.Templates/Templates/KafkaTrigger-Python/sample.dat: -------------------------------------------------------------------------------- 1 | sample queue data -------------------------------------------------------------------------------- /Functions.Templates/Templates/KafkaTrigger-TypeScript/sample.dat: -------------------------------------------------------------------------------- 1 | sample queue data -------------------------------------------------------------------------------- /Functions.Templates/Templates/KustoInputBinding-CSharp-Isolated/.template.config/vs-2017.3/functionF.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-templates/44b0e29d1905fe518b0278445bb561556d1011f6/Functions.Templates/Templates/KustoInputBinding-CSharp-Isolated/.template.config/vs-2017.3/functionF.png -------------------------------------------------------------------------------- /Functions.Templates/Templates/KustoInputBinding-CSharp/.template.config/vs-2017.3/functionF-mac-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-templates/44b0e29d1905fe518b0278445bb561556d1011f6/Functions.Templates/Templates/KustoInputBinding-CSharp/.template.config/vs-2017.3/functionF-mac-32.png -------------------------------------------------------------------------------- /Functions.Templates/Templates/KustoInputBinding-CSharp/.template.config/vs-2017.3/functionF-mac-32@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-templates/44b0e29d1905fe518b0278445bb561556d1011f6/Functions.Templates/Templates/KustoInputBinding-CSharp/.template.config/vs-2017.3/functionF-mac-32@2x.png -------------------------------------------------------------------------------- /Functions.Templates/Templates/KustoInputBinding-CSharp/.template.config/vs-2017.3/functionF-mac-32~dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-templates/44b0e29d1905fe518b0278445bb561556d1011f6/Functions.Templates/Templates/KustoInputBinding-CSharp/.template.config/vs-2017.3/functionF-mac-32~dark.png -------------------------------------------------------------------------------- /Functions.Templates/Templates/KustoInputBinding-CSharp/.template.config/vs-2017.3/functionF-mac-32~sel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-templates/44b0e29d1905fe518b0278445bb561556d1011f6/Functions.Templates/Templates/KustoInputBinding-CSharp/.template.config/vs-2017.3/functionF-mac-32~sel.png -------------------------------------------------------------------------------- /Functions.Templates/Templates/KustoInputBinding-CSharp/.template.config/vs-2017.3/functionF.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-templates/44b0e29d1905fe518b0278445bb561556d1011f6/Functions.Templates/Templates/KustoInputBinding-CSharp/.template.config/vs-2017.3/functionF.png -------------------------------------------------------------------------------- /Functions.Templates/Templates/KustoOutputBinding-CSharp-Isolated/.template.config/vs-2017.3/functionF.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-templates/44b0e29d1905fe518b0278445bb561556d1011f6/Functions.Templates/Templates/KustoOutputBinding-CSharp-Isolated/.template.config/vs-2017.3/functionF.png -------------------------------------------------------------------------------- /Functions.Templates/Templates/KustoOutputBinding-CSharp/.template.config/vs-2017.3/functionF-mac-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-templates/44b0e29d1905fe518b0278445bb561556d1011f6/Functions.Templates/Templates/KustoOutputBinding-CSharp/.template.config/vs-2017.3/functionF-mac-32.png -------------------------------------------------------------------------------- /Functions.Templates/Templates/KustoOutputBinding-CSharp/.template.config/vs-2017.3/functionF-mac-32@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-templates/44b0e29d1905fe518b0278445bb561556d1011f6/Functions.Templates/Templates/KustoOutputBinding-CSharp/.template.config/vs-2017.3/functionF-mac-32@2x.png -------------------------------------------------------------------------------- /Functions.Templates/Templates/KustoOutputBinding-CSharp/.template.config/vs-2017.3/functionF-mac-32~sel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-templates/44b0e29d1905fe518b0278445bb561556d1011f6/Functions.Templates/Templates/KustoOutputBinding-CSharp/.template.config/vs-2017.3/functionF-mac-32~sel.png -------------------------------------------------------------------------------- /Functions.Templates/Templates/KustoOutputBinding-CSharp/.template.config/vs-2017.3/functionF.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-templates/44b0e29d1905fe518b0278445bb561556d1011f6/Functions.Templates/Templates/KustoOutputBinding-CSharp/.template.config/vs-2017.3/functionF.png -------------------------------------------------------------------------------- /Functions.Templates/Templates/MySqlInputBinding-CSharp-Isolated/.template.config/vs-2017.3/functionF.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-templates/44b0e29d1905fe518b0278445bb561556d1011f6/Functions.Templates/Templates/MySqlInputBinding-CSharp-Isolated/.template.config/vs-2017.3/functionF.png -------------------------------------------------------------------------------- /Functions.Templates/Templates/MySqlInputBinding-CSharp/.template.config/vs-2017.3/functionF-mac-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-templates/44b0e29d1905fe518b0278445bb561556d1011f6/Functions.Templates/Templates/MySqlInputBinding-CSharp/.template.config/vs-2017.3/functionF-mac-32.png -------------------------------------------------------------------------------- /Functions.Templates/Templates/MySqlInputBinding-CSharp/.template.config/vs-2017.3/functionF-mac-32@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-templates/44b0e29d1905fe518b0278445bb561556d1011f6/Functions.Templates/Templates/MySqlInputBinding-CSharp/.template.config/vs-2017.3/functionF-mac-32@2x.png -------------------------------------------------------------------------------- /Functions.Templates/Templates/MySqlInputBinding-CSharp/.template.config/vs-2017.3/functionF-mac-32~dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-templates/44b0e29d1905fe518b0278445bb561556d1011f6/Functions.Templates/Templates/MySqlInputBinding-CSharp/.template.config/vs-2017.3/functionF-mac-32~dark.png -------------------------------------------------------------------------------- /Functions.Templates/Templates/MySqlInputBinding-CSharp/.template.config/vs-2017.3/functionF-mac-32~sel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-templates/44b0e29d1905fe518b0278445bb561556d1011f6/Functions.Templates/Templates/MySqlInputBinding-CSharp/.template.config/vs-2017.3/functionF-mac-32~sel.png -------------------------------------------------------------------------------- /Functions.Templates/Templates/MySqlInputBinding-CSharp/.template.config/vs-2017.3/functionF.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-templates/44b0e29d1905fe518b0278445bb561556d1011f6/Functions.Templates/Templates/MySqlInputBinding-CSharp/.template.config/vs-2017.3/functionF.png -------------------------------------------------------------------------------- /Functions.Templates/Templates/MySqlInputBinding-CSharp/function.json: -------------------------------------------------------------------------------- 1 | { 2 | "bindings": [ 3 | { 4 | "authLevel": "function", 5 | "name": "req", 6 | "type": "httpTrigger", 7 | "direction": "in", 8 | "methods": [ 9 | "get" 10 | ] 11 | } 12 | ] 13 | } -------------------------------------------------------------------------------- /Functions.Templates/Templates/MySqlOutputBinding-CSharp-Isolated/.template.config/vs-2017.3/functionF.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-templates/44b0e29d1905fe518b0278445bb561556d1011f6/Functions.Templates/Templates/MySqlOutputBinding-CSharp-Isolated/.template.config/vs-2017.3/functionF.png -------------------------------------------------------------------------------- /Functions.Templates/Templates/MySqlOutputBinding-CSharp/.template.config/vs-2017.3/functionF-mac-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-templates/44b0e29d1905fe518b0278445bb561556d1011f6/Functions.Templates/Templates/MySqlOutputBinding-CSharp/.template.config/vs-2017.3/functionF-mac-32.png -------------------------------------------------------------------------------- /Functions.Templates/Templates/MySqlOutputBinding-CSharp/.template.config/vs-2017.3/functionF-mac-32@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-templates/44b0e29d1905fe518b0278445bb561556d1011f6/Functions.Templates/Templates/MySqlOutputBinding-CSharp/.template.config/vs-2017.3/functionF-mac-32@2x.png -------------------------------------------------------------------------------- /Functions.Templates/Templates/MySqlOutputBinding-CSharp/.template.config/vs-2017.3/functionF-mac-32~sel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-templates/44b0e29d1905fe518b0278445bb561556d1011f6/Functions.Templates/Templates/MySqlOutputBinding-CSharp/.template.config/vs-2017.3/functionF-mac-32~sel.png -------------------------------------------------------------------------------- /Functions.Templates/Templates/MySqlOutputBinding-CSharp/.template.config/vs-2017.3/functionF.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-templates/44b0e29d1905fe518b0278445bb561556d1011f6/Functions.Templates/Templates/MySqlOutputBinding-CSharp/.template.config/vs-2017.3/functionF.png -------------------------------------------------------------------------------- /Functions.Templates/Templates/MySqlOutputBinding-CSharp/function.json: -------------------------------------------------------------------------------- 1 | { 2 | "bindings": [ 3 | { 4 | "authLevel": "function", 5 | "name": "req", 6 | "type": "httpTrigger", 7 | "direction": "in", 8 | "methods": [ 9 | "get" 10 | ] 11 | } 12 | ] 13 | } -------------------------------------------------------------------------------- /Functions.Templates/Templates/QueueTrigger-CSharp-3.x/.template.config/vs-2017.3/queue-mac-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-templates/44b0e29d1905fe518b0278445bb561556d1011f6/Functions.Templates/Templates/QueueTrigger-CSharp-3.x/.template.config/vs-2017.3/queue-mac-32.png -------------------------------------------------------------------------------- /Functions.Templates/Templates/QueueTrigger-CSharp-3.x/.template.config/vs-2017.3/queue-mac-32@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-templates/44b0e29d1905fe518b0278445bb561556d1011f6/Functions.Templates/Templates/QueueTrigger-CSharp-3.x/.template.config/vs-2017.3/queue-mac-32@2x.png -------------------------------------------------------------------------------- /Functions.Templates/Templates/QueueTrigger-CSharp-3.x/.template.config/vs-2017.3/queue-mac-32~dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-templates/44b0e29d1905fe518b0278445bb561556d1011f6/Functions.Templates/Templates/QueueTrigger-CSharp-3.x/.template.config/vs-2017.3/queue-mac-32~dark.png -------------------------------------------------------------------------------- /Functions.Templates/Templates/QueueTrigger-CSharp-3.x/.template.config/vs-2017.3/queue-mac-32~dark@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-templates/44b0e29d1905fe518b0278445bb561556d1011f6/Functions.Templates/Templates/QueueTrigger-CSharp-3.x/.template.config/vs-2017.3/queue-mac-32~dark@2x.png -------------------------------------------------------------------------------- /Functions.Templates/Templates/QueueTrigger-CSharp-3.x/.template.config/vs-2017.3/queue-mac-32~dark~sel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-templates/44b0e29d1905fe518b0278445bb561556d1011f6/Functions.Templates/Templates/QueueTrigger-CSharp-3.x/.template.config/vs-2017.3/queue-mac-32~dark~sel.png -------------------------------------------------------------------------------- /Functions.Templates/Templates/QueueTrigger-CSharp-3.x/.template.config/vs-2017.3/queue-mac-32~sel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-templates/44b0e29d1905fe518b0278445bb561556d1011f6/Functions.Templates/Templates/QueueTrigger-CSharp-3.x/.template.config/vs-2017.3/queue-mac-32~sel.png -------------------------------------------------------------------------------- /Functions.Templates/Templates/QueueTrigger-CSharp-3.x/.template.config/vs-2017.3/queue-mac-32~sel@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-templates/44b0e29d1905fe518b0278445bb561556d1011f6/Functions.Templates/Templates/QueueTrigger-CSharp-3.x/.template.config/vs-2017.3/queue-mac-32~sel@2x.png -------------------------------------------------------------------------------- /Functions.Templates/Templates/QueueTrigger-CSharp-3.x/.template.config/vs-2017.3/queue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-templates/44b0e29d1905fe518b0278445bb561556d1011f6/Functions.Templates/Templates/QueueTrigger-CSharp-3.x/.template.config/vs-2017.3/queue.png -------------------------------------------------------------------------------- /Functions.Templates/Templates/QueueTrigger-CSharp-3.x/run.csx: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | public static void Run(string myQueueItem, ILogger log) 4 | { 5 | log.LogInformation($"C# Queue trigger function processed: {myQueueItem}"); 6 | } 7 | -------------------------------------------------------------------------------- /Functions.Templates/Templates/QueueTrigger-CSharp-3.x/sample.dat: -------------------------------------------------------------------------------- 1 | sample queue data -------------------------------------------------------------------------------- /Functions.Templates/Templates/QueueTrigger-CSharp-4.x/.template.config/vs-2017.3/queue-mac-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-templates/44b0e29d1905fe518b0278445bb561556d1011f6/Functions.Templates/Templates/QueueTrigger-CSharp-4.x/.template.config/vs-2017.3/queue-mac-32.png -------------------------------------------------------------------------------- /Functions.Templates/Templates/QueueTrigger-CSharp-4.x/.template.config/vs-2017.3/queue-mac-32@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-templates/44b0e29d1905fe518b0278445bb561556d1011f6/Functions.Templates/Templates/QueueTrigger-CSharp-4.x/.template.config/vs-2017.3/queue-mac-32@2x.png -------------------------------------------------------------------------------- /Functions.Templates/Templates/QueueTrigger-CSharp-4.x/.template.config/vs-2017.3/queue-mac-32~dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-templates/44b0e29d1905fe518b0278445bb561556d1011f6/Functions.Templates/Templates/QueueTrigger-CSharp-4.x/.template.config/vs-2017.3/queue-mac-32~dark.png -------------------------------------------------------------------------------- /Functions.Templates/Templates/QueueTrigger-CSharp-4.x/.template.config/vs-2017.3/queue-mac-32~dark@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-templates/44b0e29d1905fe518b0278445bb561556d1011f6/Functions.Templates/Templates/QueueTrigger-CSharp-4.x/.template.config/vs-2017.3/queue-mac-32~dark@2x.png -------------------------------------------------------------------------------- /Functions.Templates/Templates/QueueTrigger-CSharp-4.x/.template.config/vs-2017.3/queue-mac-32~dark~sel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-templates/44b0e29d1905fe518b0278445bb561556d1011f6/Functions.Templates/Templates/QueueTrigger-CSharp-4.x/.template.config/vs-2017.3/queue-mac-32~dark~sel.png -------------------------------------------------------------------------------- /Functions.Templates/Templates/QueueTrigger-CSharp-4.x/.template.config/vs-2017.3/queue-mac-32~sel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-templates/44b0e29d1905fe518b0278445bb561556d1011f6/Functions.Templates/Templates/QueueTrigger-CSharp-4.x/.template.config/vs-2017.3/queue-mac-32~sel.png -------------------------------------------------------------------------------- /Functions.Templates/Templates/QueueTrigger-CSharp-4.x/.template.config/vs-2017.3/queue-mac-32~sel@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-templates/44b0e29d1905fe518b0278445bb561556d1011f6/Functions.Templates/Templates/QueueTrigger-CSharp-4.x/.template.config/vs-2017.3/queue-mac-32~sel@2x.png -------------------------------------------------------------------------------- /Functions.Templates/Templates/QueueTrigger-CSharp-4.x/.template.config/vs-2017.3/queue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-templates/44b0e29d1905fe518b0278445bb561556d1011f6/Functions.Templates/Templates/QueueTrigger-CSharp-4.x/.template.config/vs-2017.3/queue.png -------------------------------------------------------------------------------- /Functions.Templates/Templates/QueueTrigger-CSharp-4.x/run.csx: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | public static void Run(string myQueueItem, ILogger log) 4 | { 5 | log.LogInformation($"C# Queue trigger function processed: {myQueueItem}"); 6 | } 7 | -------------------------------------------------------------------------------- /Functions.Templates/Templates/QueueTrigger-CSharp-4.x/sample.dat: -------------------------------------------------------------------------------- 1 | sample queue data -------------------------------------------------------------------------------- /Functions.Templates/Templates/QueueTrigger-CSharp-5.x/.template.config/vs-2017.3/queue-mac-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-templates/44b0e29d1905fe518b0278445bb561556d1011f6/Functions.Templates/Templates/QueueTrigger-CSharp-5.x/.template.config/vs-2017.3/queue-mac-32.png -------------------------------------------------------------------------------- /Functions.Templates/Templates/QueueTrigger-CSharp-5.x/.template.config/vs-2017.3/queue-mac-32@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-templates/44b0e29d1905fe518b0278445bb561556d1011f6/Functions.Templates/Templates/QueueTrigger-CSharp-5.x/.template.config/vs-2017.3/queue-mac-32@2x.png -------------------------------------------------------------------------------- /Functions.Templates/Templates/QueueTrigger-CSharp-5.x/.template.config/vs-2017.3/queue-mac-32~dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-templates/44b0e29d1905fe518b0278445bb561556d1011f6/Functions.Templates/Templates/QueueTrigger-CSharp-5.x/.template.config/vs-2017.3/queue-mac-32~dark.png -------------------------------------------------------------------------------- /Functions.Templates/Templates/QueueTrigger-CSharp-5.x/.template.config/vs-2017.3/queue-mac-32~dark@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-templates/44b0e29d1905fe518b0278445bb561556d1011f6/Functions.Templates/Templates/QueueTrigger-CSharp-5.x/.template.config/vs-2017.3/queue-mac-32~dark@2x.png -------------------------------------------------------------------------------- /Functions.Templates/Templates/QueueTrigger-CSharp-5.x/.template.config/vs-2017.3/queue-mac-32~dark~sel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-templates/44b0e29d1905fe518b0278445bb561556d1011f6/Functions.Templates/Templates/QueueTrigger-CSharp-5.x/.template.config/vs-2017.3/queue-mac-32~dark~sel.png -------------------------------------------------------------------------------- /Functions.Templates/Templates/QueueTrigger-CSharp-5.x/.template.config/vs-2017.3/queue-mac-32~sel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-templates/44b0e29d1905fe518b0278445bb561556d1011f6/Functions.Templates/Templates/QueueTrigger-CSharp-5.x/.template.config/vs-2017.3/queue-mac-32~sel.png -------------------------------------------------------------------------------- /Functions.Templates/Templates/QueueTrigger-CSharp-5.x/.template.config/vs-2017.3/queue-mac-32~sel@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-templates/44b0e29d1905fe518b0278445bb561556d1011f6/Functions.Templates/Templates/QueueTrigger-CSharp-5.x/.template.config/vs-2017.3/queue-mac-32~sel@2x.png -------------------------------------------------------------------------------- /Functions.Templates/Templates/QueueTrigger-CSharp-5.x/.template.config/vs-2017.3/queue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-templates/44b0e29d1905fe518b0278445bb561556d1011f6/Functions.Templates/Templates/QueueTrigger-CSharp-5.x/.template.config/vs-2017.3/queue.png -------------------------------------------------------------------------------- /Functions.Templates/Templates/QueueTrigger-CSharp-5.x/run.csx: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | public static void Run(string myQueueItem, ILogger log) 4 | { 5 | log.LogInformation($"C# Queue trigger function processed: {myQueueItem}"); 6 | } 7 | -------------------------------------------------------------------------------- /Functions.Templates/Templates/QueueTrigger-CSharp-5.x/sample.dat: -------------------------------------------------------------------------------- 1 | sample queue data -------------------------------------------------------------------------------- /Functions.Templates/Templates/QueueTrigger-CSharp-Isolated/.template.config/vs-2017.3/queue-mac-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-templates/44b0e29d1905fe518b0278445bb561556d1011f6/Functions.Templates/Templates/QueueTrigger-CSharp-Isolated/.template.config/vs-2017.3/queue-mac-32.png -------------------------------------------------------------------------------- /Functions.Templates/Templates/QueueTrigger-CSharp-Isolated/.template.config/vs-2017.3/queue-mac-32@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-templates/44b0e29d1905fe518b0278445bb561556d1011f6/Functions.Templates/Templates/QueueTrigger-CSharp-Isolated/.template.config/vs-2017.3/queue-mac-32@2x.png -------------------------------------------------------------------------------- /Functions.Templates/Templates/QueueTrigger-CSharp-Isolated/.template.config/vs-2017.3/queue-mac-32~dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-templates/44b0e29d1905fe518b0278445bb561556d1011f6/Functions.Templates/Templates/QueueTrigger-CSharp-Isolated/.template.config/vs-2017.3/queue-mac-32~dark.png -------------------------------------------------------------------------------- /Functions.Templates/Templates/QueueTrigger-CSharp-Isolated/.template.config/vs-2017.3/queue-mac-32~sel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-templates/44b0e29d1905fe518b0278445bb561556d1011f6/Functions.Templates/Templates/QueueTrigger-CSharp-Isolated/.template.config/vs-2017.3/queue-mac-32~sel.png -------------------------------------------------------------------------------- /Functions.Templates/Templates/QueueTrigger-CSharp-Isolated/.template.config/vs-2017.3/queue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-templates/44b0e29d1905fe518b0278445bb561556d1011f6/Functions.Templates/Templates/QueueTrigger-CSharp-Isolated/.template.config/vs-2017.3/queue.png -------------------------------------------------------------------------------- /Functions.Templates/Templates/QueueTrigger-FSharp-3.x/.template.config/vs-2017.3/queue-mac-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-templates/44b0e29d1905fe518b0278445bb561556d1011f6/Functions.Templates/Templates/QueueTrigger-FSharp-3.x/.template.config/vs-2017.3/queue-mac-32.png -------------------------------------------------------------------------------- /Functions.Templates/Templates/QueueTrigger-FSharp-3.x/.template.config/vs-2017.3/queue-mac-32@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-templates/44b0e29d1905fe518b0278445bb561556d1011f6/Functions.Templates/Templates/QueueTrigger-FSharp-3.x/.template.config/vs-2017.3/queue-mac-32@2x.png -------------------------------------------------------------------------------- /Functions.Templates/Templates/QueueTrigger-FSharp-3.x/.template.config/vs-2017.3/queue-mac-32~dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-templates/44b0e29d1905fe518b0278445bb561556d1011f6/Functions.Templates/Templates/QueueTrigger-FSharp-3.x/.template.config/vs-2017.3/queue-mac-32~dark.png -------------------------------------------------------------------------------- /Functions.Templates/Templates/QueueTrigger-FSharp-3.x/.template.config/vs-2017.3/queue-mac-32~dark@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-templates/44b0e29d1905fe518b0278445bb561556d1011f6/Functions.Templates/Templates/QueueTrigger-FSharp-3.x/.template.config/vs-2017.3/queue-mac-32~dark@2x.png -------------------------------------------------------------------------------- /Functions.Templates/Templates/QueueTrigger-FSharp-3.x/.template.config/vs-2017.3/queue-mac-32~dark~sel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-templates/44b0e29d1905fe518b0278445bb561556d1011f6/Functions.Templates/Templates/QueueTrigger-FSharp-3.x/.template.config/vs-2017.3/queue-mac-32~dark~sel.png -------------------------------------------------------------------------------- /Functions.Templates/Templates/QueueTrigger-FSharp-3.x/.template.config/vs-2017.3/queue-mac-32~sel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-templates/44b0e29d1905fe518b0278445bb561556d1011f6/Functions.Templates/Templates/QueueTrigger-FSharp-3.x/.template.config/vs-2017.3/queue-mac-32~sel.png -------------------------------------------------------------------------------- /Functions.Templates/Templates/QueueTrigger-FSharp-3.x/.template.config/vs-2017.3/queue-mac-32~sel@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-templates/44b0e29d1905fe518b0278445bb561556d1011f6/Functions.Templates/Templates/QueueTrigger-FSharp-3.x/.template.config/vs-2017.3/queue-mac-32~sel@2x.png -------------------------------------------------------------------------------- /Functions.Templates/Templates/QueueTrigger-FSharp-3.x/.template.config/vs-2017.3/queue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-templates/44b0e29d1905fe518b0278445bb561556d1011f6/Functions.Templates/Templates/QueueTrigger-FSharp-3.x/.template.config/vs-2017.3/queue.png -------------------------------------------------------------------------------- /Functions.Templates/Templates/QueueTrigger-FSharp-4.x/.template.config/vs-2017.3/queue-mac-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-templates/44b0e29d1905fe518b0278445bb561556d1011f6/Functions.Templates/Templates/QueueTrigger-FSharp-4.x/.template.config/vs-2017.3/queue-mac-32.png -------------------------------------------------------------------------------- /Functions.Templates/Templates/QueueTrigger-FSharp-4.x/.template.config/vs-2017.3/queue-mac-32@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-templates/44b0e29d1905fe518b0278445bb561556d1011f6/Functions.Templates/Templates/QueueTrigger-FSharp-4.x/.template.config/vs-2017.3/queue-mac-32@2x.png -------------------------------------------------------------------------------- /Functions.Templates/Templates/QueueTrigger-FSharp-4.x/.template.config/vs-2017.3/queue-mac-32~dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-templates/44b0e29d1905fe518b0278445bb561556d1011f6/Functions.Templates/Templates/QueueTrigger-FSharp-4.x/.template.config/vs-2017.3/queue-mac-32~dark.png -------------------------------------------------------------------------------- /Functions.Templates/Templates/QueueTrigger-FSharp-4.x/.template.config/vs-2017.3/queue-mac-32~dark@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-templates/44b0e29d1905fe518b0278445bb561556d1011f6/Functions.Templates/Templates/QueueTrigger-FSharp-4.x/.template.config/vs-2017.3/queue-mac-32~dark@2x.png -------------------------------------------------------------------------------- /Functions.Templates/Templates/QueueTrigger-FSharp-4.x/.template.config/vs-2017.3/queue-mac-32~dark~sel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-templates/44b0e29d1905fe518b0278445bb561556d1011f6/Functions.Templates/Templates/QueueTrigger-FSharp-4.x/.template.config/vs-2017.3/queue-mac-32~dark~sel.png -------------------------------------------------------------------------------- /Functions.Templates/Templates/QueueTrigger-FSharp-4.x/.template.config/vs-2017.3/queue-mac-32~sel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-templates/44b0e29d1905fe518b0278445bb561556d1011f6/Functions.Templates/Templates/QueueTrigger-FSharp-4.x/.template.config/vs-2017.3/queue-mac-32~sel.png -------------------------------------------------------------------------------- /Functions.Templates/Templates/QueueTrigger-FSharp-4.x/.template.config/vs-2017.3/queue-mac-32~sel@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-templates/44b0e29d1905fe518b0278445bb561556d1011f6/Functions.Templates/Templates/QueueTrigger-FSharp-4.x/.template.config/vs-2017.3/queue-mac-32~sel@2x.png -------------------------------------------------------------------------------- /Functions.Templates/Templates/QueueTrigger-FSharp-4.x/.template.config/vs-2017.3/queue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-templates/44b0e29d1905fe518b0278445bb561556d1011f6/Functions.Templates/Templates/QueueTrigger-FSharp-4.x/.template.config/vs-2017.3/queue.png -------------------------------------------------------------------------------- /Functions.Templates/Templates/QueueTrigger-FSharp-5.x/.template.config/vs-2017.3/queue-mac-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-templates/44b0e29d1905fe518b0278445bb561556d1011f6/Functions.Templates/Templates/QueueTrigger-FSharp-5.x/.template.config/vs-2017.3/queue-mac-32.png -------------------------------------------------------------------------------- /Functions.Templates/Templates/QueueTrigger-FSharp-5.x/.template.config/vs-2017.3/queue-mac-32@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-templates/44b0e29d1905fe518b0278445bb561556d1011f6/Functions.Templates/Templates/QueueTrigger-FSharp-5.x/.template.config/vs-2017.3/queue-mac-32@2x.png -------------------------------------------------------------------------------- /Functions.Templates/Templates/QueueTrigger-FSharp-5.x/.template.config/vs-2017.3/queue-mac-32~dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-templates/44b0e29d1905fe518b0278445bb561556d1011f6/Functions.Templates/Templates/QueueTrigger-FSharp-5.x/.template.config/vs-2017.3/queue-mac-32~dark.png -------------------------------------------------------------------------------- /Functions.Templates/Templates/QueueTrigger-FSharp-5.x/.template.config/vs-2017.3/queue-mac-32~dark@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-templates/44b0e29d1905fe518b0278445bb561556d1011f6/Functions.Templates/Templates/QueueTrigger-FSharp-5.x/.template.config/vs-2017.3/queue-mac-32~dark@2x.png -------------------------------------------------------------------------------- /Functions.Templates/Templates/QueueTrigger-FSharp-5.x/.template.config/vs-2017.3/queue-mac-32~dark~sel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-templates/44b0e29d1905fe518b0278445bb561556d1011f6/Functions.Templates/Templates/QueueTrigger-FSharp-5.x/.template.config/vs-2017.3/queue-mac-32~dark~sel.png -------------------------------------------------------------------------------- /Functions.Templates/Templates/QueueTrigger-FSharp-5.x/.template.config/vs-2017.3/queue-mac-32~sel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-templates/44b0e29d1905fe518b0278445bb561556d1011f6/Functions.Templates/Templates/QueueTrigger-FSharp-5.x/.template.config/vs-2017.3/queue-mac-32~sel.png -------------------------------------------------------------------------------- /Functions.Templates/Templates/QueueTrigger-FSharp-5.x/.template.config/vs-2017.3/queue-mac-32~sel@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-templates/44b0e29d1905fe518b0278445bb561556d1011f6/Functions.Templates/Templates/QueueTrigger-FSharp-5.x/.template.config/vs-2017.3/queue-mac-32~sel@2x.png -------------------------------------------------------------------------------- /Functions.Templates/Templates/QueueTrigger-FSharp-5.x/.template.config/vs-2017.3/queue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-templates/44b0e29d1905fe518b0278445bb561556d1011f6/Functions.Templates/Templates/QueueTrigger-FSharp-5.x/.template.config/vs-2017.3/queue.png -------------------------------------------------------------------------------- /Functions.Templates/Templates/QueueTrigger-FSharp-Isolated/.template.config/vs-2017.3/queue-mac-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-templates/44b0e29d1905fe518b0278445bb561556d1011f6/Functions.Templates/Templates/QueueTrigger-FSharp-Isolated/.template.config/vs-2017.3/queue-mac-32.png -------------------------------------------------------------------------------- /Functions.Templates/Templates/QueueTrigger-FSharp-Isolated/.template.config/vs-2017.3/queue-mac-32@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-templates/44b0e29d1905fe518b0278445bb561556d1011f6/Functions.Templates/Templates/QueueTrigger-FSharp-Isolated/.template.config/vs-2017.3/queue-mac-32@2x.png -------------------------------------------------------------------------------- /Functions.Templates/Templates/QueueTrigger-FSharp-Isolated/.template.config/vs-2017.3/queue-mac-32~dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-templates/44b0e29d1905fe518b0278445bb561556d1011f6/Functions.Templates/Templates/QueueTrigger-FSharp-Isolated/.template.config/vs-2017.3/queue-mac-32~dark.png -------------------------------------------------------------------------------- /Functions.Templates/Templates/QueueTrigger-FSharp-Isolated/.template.config/vs-2017.3/queue-mac-32~sel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-templates/44b0e29d1905fe518b0278445bb561556d1011f6/Functions.Templates/Templates/QueueTrigger-FSharp-Isolated/.template.config/vs-2017.3/queue-mac-32~sel.png -------------------------------------------------------------------------------- /Functions.Templates/Templates/QueueTrigger-FSharp-Isolated/.template.config/vs-2017.3/queue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-templates/44b0e29d1905fe518b0278445bb561556d1011f6/Functions.Templates/Templates/QueueTrigger-FSharp-Isolated/.template.config/vs-2017.3/queue.png -------------------------------------------------------------------------------- /Functions.Templates/Templates/QueueTrigger-JavaScript/index.js: -------------------------------------------------------------------------------- 1 | module.exports = async function (context, myQueueItem) { 2 | context.log('JavaScript queue trigger function processed work item', myQueueItem); 3 | }; -------------------------------------------------------------------------------- /Functions.Templates/Templates/QueueTrigger-JavaScript/sample.dat: -------------------------------------------------------------------------------- 1 | sample queue data -------------------------------------------------------------------------------- /Functions.Templates/Templates/QueueTrigger-PowerShell/sample.dat: -------------------------------------------------------------------------------- 1 | sample queue data -------------------------------------------------------------------------------- /Functions.Templates/Templates/QueueTrigger-Python/sample.dat: -------------------------------------------------------------------------------- 1 | sample queue data -------------------------------------------------------------------------------- /Functions.Templates/Templates/QueueTrigger-TypeScript/sample.dat: -------------------------------------------------------------------------------- 1 | sample queue data -------------------------------------------------------------------------------- /Functions.Templates/Templates/RabbitMQTrigger-CSharp-Isolated/.template.config/vs-2017.3/functionF.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-templates/44b0e29d1905fe518b0278445bb561556d1011f6/Functions.Templates/Templates/RabbitMQTrigger-CSharp-Isolated/.template.config/vs-2017.3/functionF.png -------------------------------------------------------------------------------- /Functions.Templates/Templates/RabbitMQTrigger-CSharp/.template.config/vs-2017.3/functionF-mac-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-templates/44b0e29d1905fe518b0278445bb561556d1011f6/Functions.Templates/Templates/RabbitMQTrigger-CSharp/.template.config/vs-2017.3/functionF-mac-32.png -------------------------------------------------------------------------------- /Functions.Templates/Templates/RabbitMQTrigger-CSharp/.template.config/vs-2017.3/functionF-mac-32@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-templates/44b0e29d1905fe518b0278445bb561556d1011f6/Functions.Templates/Templates/RabbitMQTrigger-CSharp/.template.config/vs-2017.3/functionF-mac-32@2x.png -------------------------------------------------------------------------------- /Functions.Templates/Templates/RabbitMQTrigger-CSharp/.template.config/vs-2017.3/functionF-mac-32~dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-templates/44b0e29d1905fe518b0278445bb561556d1011f6/Functions.Templates/Templates/RabbitMQTrigger-CSharp/.template.config/vs-2017.3/functionF-mac-32~dark.png -------------------------------------------------------------------------------- /Functions.Templates/Templates/RabbitMQTrigger-CSharp/.template.config/vs-2017.3/functionF-mac-32~sel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-templates/44b0e29d1905fe518b0278445bb561556d1011f6/Functions.Templates/Templates/RabbitMQTrigger-CSharp/.template.config/vs-2017.3/functionF-mac-32~sel.png -------------------------------------------------------------------------------- /Functions.Templates/Templates/RabbitMQTrigger-CSharp/.template.config/vs-2017.3/functionF-mac-32~sel@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-templates/44b0e29d1905fe518b0278445bb561556d1011f6/Functions.Templates/Templates/RabbitMQTrigger-CSharp/.template.config/vs-2017.3/functionF-mac-32~sel@2x.png -------------------------------------------------------------------------------- /Functions.Templates/Templates/RabbitMQTrigger-CSharp/.template.config/vs-2017.3/functionF.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-templates/44b0e29d1905fe518b0278445bb561556d1011f6/Functions.Templates/Templates/RabbitMQTrigger-CSharp/.template.config/vs-2017.3/functionF.png -------------------------------------------------------------------------------- /Functions.Templates/Templates/RabbitMQTrigger-CSharp/run.csx: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | public static void Run(string myQueueItem, ILogger log) 4 | { 5 | log.LogInformation($"C# Queue trigger function processed: {myQueueItem}"); 6 | } 7 | -------------------------------------------------------------------------------- /Functions.Templates/Templates/RabbitMQTrigger-CSharp/sample.dat: -------------------------------------------------------------------------------- 1 | sample queue data -------------------------------------------------------------------------------- /Functions.Templates/Templates/RabbitMQTrigger-JavaScript/index.js: -------------------------------------------------------------------------------- 1 | module.exports = async function (context, myQueueItem) { 2 | context.log('JavaScript rabbitmq trigger function processed work item', myQueueItem); 3 | }; -------------------------------------------------------------------------------- /Functions.Templates/Templates/RabbitMQTrigger-JavaScript/sample.dat: -------------------------------------------------------------------------------- 1 | sample queue data -------------------------------------------------------------------------------- /Functions.Templates/Templates/RabbitMQTrigger-PowerShell/sample.dat: -------------------------------------------------------------------------------- 1 | sample queue data -------------------------------------------------------------------------------- /Functions.Templates/Templates/RabbitMQTrigger-Python/__init__.py: -------------------------------------------------------------------------------- 1 | import logging 2 | 3 | def main(myQueueItem) -> None: 4 | logging.info('Python rabbitmq trigger function processed a queue item: %s', myQueueItem) 5 | -------------------------------------------------------------------------------- /Functions.Templates/Templates/RabbitMQTrigger-Python/sample.dat: -------------------------------------------------------------------------------- 1 | sample queue data -------------------------------------------------------------------------------- /Functions.Templates/Templates/RabbitMQTrigger-TypeScript/sample.dat: -------------------------------------------------------------------------------- 1 | sample queue data -------------------------------------------------------------------------------- /Functions.Templates/Templates/SendGrid-CSharp-3.x/.template.config/vs-2017.3/functionF-mac-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-templates/44b0e29d1905fe518b0278445bb561556d1011f6/Functions.Templates/Templates/SendGrid-CSharp-3.x/.template.config/vs-2017.3/functionF-mac-32.png -------------------------------------------------------------------------------- /Functions.Templates/Templates/SendGrid-CSharp-3.x/.template.config/vs-2017.3/functionF-mac-32@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-templates/44b0e29d1905fe518b0278445bb561556d1011f6/Functions.Templates/Templates/SendGrid-CSharp-3.x/.template.config/vs-2017.3/functionF-mac-32@2x.png -------------------------------------------------------------------------------- /Functions.Templates/Templates/SendGrid-CSharp-3.x/.template.config/vs-2017.3/functionF-mac-32~dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-templates/44b0e29d1905fe518b0278445bb561556d1011f6/Functions.Templates/Templates/SendGrid-CSharp-3.x/.template.config/vs-2017.3/functionF-mac-32~dark.png -------------------------------------------------------------------------------- /Functions.Templates/Templates/SendGrid-CSharp-3.x/.template.config/vs-2017.3/functionF-mac-32~dark@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-templates/44b0e29d1905fe518b0278445bb561556d1011f6/Functions.Templates/Templates/SendGrid-CSharp-3.x/.template.config/vs-2017.3/functionF-mac-32~dark@2x.png -------------------------------------------------------------------------------- /Functions.Templates/Templates/SendGrid-CSharp-3.x/.template.config/vs-2017.3/functionF-mac-32~dark~sel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-templates/44b0e29d1905fe518b0278445bb561556d1011f6/Functions.Templates/Templates/SendGrid-CSharp-3.x/.template.config/vs-2017.3/functionF-mac-32~dark~sel.png -------------------------------------------------------------------------------- /Functions.Templates/Templates/SendGrid-CSharp-3.x/.template.config/vs-2017.3/functionF-mac-32~sel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-templates/44b0e29d1905fe518b0278445bb561556d1011f6/Functions.Templates/Templates/SendGrid-CSharp-3.x/.template.config/vs-2017.3/functionF-mac-32~sel.png -------------------------------------------------------------------------------- /Functions.Templates/Templates/SendGrid-CSharp-3.x/.template.config/vs-2017.3/functionF-mac-32~sel@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-templates/44b0e29d1905fe518b0278445bb561556d1011f6/Functions.Templates/Templates/SendGrid-CSharp-3.x/.template.config/vs-2017.3/functionF-mac-32~sel@2x.png -------------------------------------------------------------------------------- /Functions.Templates/Templates/SendGrid-CSharp-3.x/.template.config/vs-2017.3/functionF.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-templates/44b0e29d1905fe518b0278445bb561556d1011f6/Functions.Templates/Templates/SendGrid-CSharp-3.x/.template.config/vs-2017.3/functionF.png -------------------------------------------------------------------------------- /Functions.Templates/Templates/SendGrid-CSharp-3.x/sample.dat: -------------------------------------------------------------------------------- 1 | { "OrderId": 12345, "CustomerName": "Joe Schmoe", "CustomerEmail": "joeschmoe@foo.com" } -------------------------------------------------------------------------------- /Functions.Templates/Templates/SendGrid-JavaScript/sample.dat: -------------------------------------------------------------------------------- 1 | { "orderId": 12345, "customerName": "Joe Schmoe", "customerEmail": "joeschmoe@foo.com" } -------------------------------------------------------------------------------- /Functions.Templates/Templates/SendGrid-PowerShell/sample.dat: -------------------------------------------------------------------------------- 1 | { "orderId": 12345, "customerName": "Joe Schmoe", "customerEmail": "joeschmoe@foo.com" } -------------------------------------------------------------------------------- /Functions.Templates/Templates/SendGrid-TypeScript/sample.dat: -------------------------------------------------------------------------------- 1 | { "orderId": 12345, "customerName": "Joe Schmoe", "customerEmail": "joeschmoe@foo.com" } -------------------------------------------------------------------------------- /Functions.Templates/Templates/ServiceBusQueueTrigger-CSharp-5.x/.template.config/vs-2017.3/servicebus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-templates/44b0e29d1905fe518b0278445bb561556d1011f6/Functions.Templates/Templates/ServiceBusQueueTrigger-CSharp-5.x/.template.config/vs-2017.3/servicebus.png -------------------------------------------------------------------------------- /Functions.Templates/Templates/ServiceBusQueueTrigger-CSharp-5.x/run.csx: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Threading.Tasks; 3 | 4 | public static void Run(string myQueueItem, ILogger log) 5 | { 6 | log.LogInformation($"C# ServiceBus queue trigger function processed message: {myQueueItem}"); 7 | } 8 | -------------------------------------------------------------------------------- /Functions.Templates/Templates/ServiceBusQueueTrigger-CSharp-5.x/sample.dat: -------------------------------------------------------------------------------- 1 | Service Bus Message -------------------------------------------------------------------------------- /Functions.Templates/Templates/ServiceBusQueueTrigger-CSharp/.template.config/vs-2017.3/servicebus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-templates/44b0e29d1905fe518b0278445bb561556d1011f6/Functions.Templates/Templates/ServiceBusQueueTrigger-CSharp/.template.config/vs-2017.3/servicebus.png -------------------------------------------------------------------------------- /Functions.Templates/Templates/ServiceBusQueueTrigger-CSharp/run.csx: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Threading.Tasks; 3 | 4 | public static void Run(string myQueueItem, ILogger log) 5 | { 6 | log.LogInformation($"C# ServiceBus queue trigger function processed message: {myQueueItem}"); 7 | } 8 | -------------------------------------------------------------------------------- /Functions.Templates/Templates/ServiceBusQueueTrigger-CSharp/sample.dat: -------------------------------------------------------------------------------- 1 | Service Bus Message -------------------------------------------------------------------------------- /Functions.Templates/Templates/ServiceBusQueueTrigger-JavaScript/index.js: -------------------------------------------------------------------------------- 1 | module.exports = async function(context, mySbMsg) { 2 | context.log('JavaScript ServiceBus queue trigger function processed message', mySbMsg); 3 | }; -------------------------------------------------------------------------------- /Functions.Templates/Templates/ServiceBusQueueTrigger-JavaScript/sample.dat: -------------------------------------------------------------------------------- 1 | Service Bus Message -------------------------------------------------------------------------------- /Functions.Templates/Templates/ServiceBusQueueTrigger-PowerShell/run.ps1: -------------------------------------------------------------------------------- 1 | param([string] $mySbMsg, $TriggerMetadata) 2 | 3 | Write-Host "PowerShell ServiceBus queue trigger function processed message: $mySbMsg" 4 | -------------------------------------------------------------------------------- /Functions.Templates/Templates/ServiceBusQueueTrigger-PowerShell/sample.dat: -------------------------------------------------------------------------------- 1 | Service Bus Message -------------------------------------------------------------------------------- /Functions.Templates/Templates/ServiceBusQueueTrigger-Python/sample.dat: -------------------------------------------------------------------------------- 1 | Service Bus Message -------------------------------------------------------------------------------- /Functions.Templates/Templates/ServiceBusQueueTrigger-TypeScript/sample.dat: -------------------------------------------------------------------------------- 1 | Service Bus Message -------------------------------------------------------------------------------- /Functions.Templates/Templates/ServiceBusTopicTrigger-CSharp-5.x/.template.config/vs-2017.3/servicebus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-templates/44b0e29d1905fe518b0278445bb561556d1011f6/Functions.Templates/Templates/ServiceBusTopicTrigger-CSharp-5.x/.template.config/vs-2017.3/servicebus.png -------------------------------------------------------------------------------- /Functions.Templates/Templates/ServiceBusTopicTrigger-CSharp-5.x/run.csx: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Threading.Tasks; 3 | 4 | public static void Run(string mySbMsg, ILogger log) 5 | { 6 | log.LogInformation($"C# ServiceBus topic trigger function processed message: {mySbMsg}"); 7 | } 8 | -------------------------------------------------------------------------------- /Functions.Templates/Templates/ServiceBusTopicTrigger-CSharp-5.x/sample.dat: -------------------------------------------------------------------------------- 1 | Service Bus Message -------------------------------------------------------------------------------- /Functions.Templates/Templates/ServiceBusTopicTrigger-CSharp/.template.config/vs-2017.3/servicebus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-templates/44b0e29d1905fe518b0278445bb561556d1011f6/Functions.Templates/Templates/ServiceBusTopicTrigger-CSharp/.template.config/vs-2017.3/servicebus.png -------------------------------------------------------------------------------- /Functions.Templates/Templates/ServiceBusTopicTrigger-CSharp/run.csx: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Threading.Tasks; 3 | 4 | public static void Run(string mySbMsg, ILogger log) 5 | { 6 | log.LogInformation($"C# ServiceBus topic trigger function processed message: {mySbMsg}"); 7 | } 8 | -------------------------------------------------------------------------------- /Functions.Templates/Templates/ServiceBusTopicTrigger-CSharp/sample.dat: -------------------------------------------------------------------------------- 1 | Service Bus Message -------------------------------------------------------------------------------- /Functions.Templates/Templates/ServiceBusTopicTrigger-JavaScript/index.js: -------------------------------------------------------------------------------- 1 | module.exports = async function(context, mySbMsg) { 2 | context.log('JavaScript ServiceBus topic trigger function processed message', mySbMsg); 3 | }; -------------------------------------------------------------------------------- /Functions.Templates/Templates/ServiceBusTopicTrigger-JavaScript/sample.dat: -------------------------------------------------------------------------------- 1 | Service Bus Message -------------------------------------------------------------------------------- /Functions.Templates/Templates/ServiceBusTopicTrigger-PowerShell/run.ps1: -------------------------------------------------------------------------------- 1 | param([string] $mySbMsg, $TriggerMetadata) 2 | 3 | Write-Host "PowerShell ServiceBus topic trigger function processed message: $mySbMsg" 4 | -------------------------------------------------------------------------------- /Functions.Templates/Templates/ServiceBusTopicTrigger-PowerShell/sample.dat: -------------------------------------------------------------------------------- 1 | Service Bus Message -------------------------------------------------------------------------------- /Functions.Templates/Templates/ServiceBusTopicTrigger-Python/README.md: -------------------------------------------------------------------------------- 1 | # Python ServiceBusTopicTrigger 2 | -------------------------------------------------------------------------------- /Functions.Templates/Templates/ServiceBusTopicTrigger-Python/sample.dat: -------------------------------------------------------------------------------- 1 | Service Bus Message -------------------------------------------------------------------------------- /Functions.Templates/Templates/ServiceBusTopicTrigger-TypeScript/sample.dat: -------------------------------------------------------------------------------- 1 | Service Bus Message -------------------------------------------------------------------------------- /Functions.Templates/Templates/SignalRConnectionInfoHttpTrigger-CSharp/sample.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-templates/44b0e29d1905fe518b0278445bb561556d1011f6/Functions.Templates/Templates/SignalRConnectionInfoHttpTrigger-CSharp/sample.dat -------------------------------------------------------------------------------- /Functions.Templates/Templates/SignalRConnectionInfoHttpTrigger-JavaScript/index.js: -------------------------------------------------------------------------------- 1 | module.exports = async function (context, req, connectionInfo) { 2 | context.res.body = connectionInfo; 3 | }; -------------------------------------------------------------------------------- /Functions.Templates/Templates/SignalRConnectionInfoHttpTrigger-JavaScript/sample.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-templates/44b0e29d1905fe518b0278445bb561556d1011f6/Functions.Templates/Templates/SignalRConnectionInfoHttpTrigger-JavaScript/sample.dat -------------------------------------------------------------------------------- /Functions.Templates/Templates/SignalRConnectionInfoHttpTrigger-PowerShell/sample.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-templates/44b0e29d1905fe518b0278445bb561556d1011f6/Functions.Templates/Templates/SignalRConnectionInfoHttpTrigger-PowerShell/sample.dat -------------------------------------------------------------------------------- /Functions.Templates/Templates/SignalRConnectionInfoHttpTrigger-TypeScript/sample.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-templates/44b0e29d1905fe518b0278445bb561556d1011f6/Functions.Templates/Templates/SignalRConnectionInfoHttpTrigger-TypeScript/sample.dat -------------------------------------------------------------------------------- /Functions.Templates/Templates/SqlInputBinding-CSharp-Isolated/.template.config/vs-2017.3/functionF.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-templates/44b0e29d1905fe518b0278445bb561556d1011f6/Functions.Templates/Templates/SqlInputBinding-CSharp-Isolated/.template.config/vs-2017.3/functionF.png -------------------------------------------------------------------------------- /Functions.Templates/Templates/SqlInputBinding-CSharp/.template.config/vs-2017.3/functionF-mac-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-templates/44b0e29d1905fe518b0278445bb561556d1011f6/Functions.Templates/Templates/SqlInputBinding-CSharp/.template.config/vs-2017.3/functionF-mac-32.png -------------------------------------------------------------------------------- /Functions.Templates/Templates/SqlInputBinding-CSharp/.template.config/vs-2017.3/functionF-mac-32@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-templates/44b0e29d1905fe518b0278445bb561556d1011f6/Functions.Templates/Templates/SqlInputBinding-CSharp/.template.config/vs-2017.3/functionF-mac-32@2x.png -------------------------------------------------------------------------------- /Functions.Templates/Templates/SqlInputBinding-CSharp/.template.config/vs-2017.3/functionF-mac-32~dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-templates/44b0e29d1905fe518b0278445bb561556d1011f6/Functions.Templates/Templates/SqlInputBinding-CSharp/.template.config/vs-2017.3/functionF-mac-32~dark.png -------------------------------------------------------------------------------- /Functions.Templates/Templates/SqlInputBinding-CSharp/.template.config/vs-2017.3/functionF-mac-32~sel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-templates/44b0e29d1905fe518b0278445bb561556d1011f6/Functions.Templates/Templates/SqlInputBinding-CSharp/.template.config/vs-2017.3/functionF-mac-32~sel.png -------------------------------------------------------------------------------- /Functions.Templates/Templates/SqlInputBinding-CSharp/.template.config/vs-2017.3/functionF-mac-32~sel@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-templates/44b0e29d1905fe518b0278445bb561556d1011f6/Functions.Templates/Templates/SqlInputBinding-CSharp/.template.config/vs-2017.3/functionF-mac-32~sel@2x.png -------------------------------------------------------------------------------- /Functions.Templates/Templates/SqlInputBinding-CSharp/.template.config/vs-2017.3/functionF.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-templates/44b0e29d1905fe518b0278445bb561556d1011f6/Functions.Templates/Templates/SqlInputBinding-CSharp/.template.config/vs-2017.3/functionF.png -------------------------------------------------------------------------------- /Functions.Templates/Templates/SqlInputBinding-CSharp/function.json: -------------------------------------------------------------------------------- 1 | { 2 | "bindings": [ 3 | { 4 | "authLevel": "function", 5 | "name": "req", 6 | "type": "httpTrigger", 7 | "direction": "in", 8 | "methods": [ 9 | "get" 10 | ] 11 | } 12 | ] 13 | } -------------------------------------------------------------------------------- /Functions.Templates/Templates/SqlOutputBinding-CSharp-Isolated/.template.config/vs-2017.3/functionF.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-templates/44b0e29d1905fe518b0278445bb561556d1011f6/Functions.Templates/Templates/SqlOutputBinding-CSharp-Isolated/.template.config/vs-2017.3/functionF.png -------------------------------------------------------------------------------- /Functions.Templates/Templates/SqlOutputBinding-CSharp/.template.config/vs-2017.3/functionF-mac-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-templates/44b0e29d1905fe518b0278445bb561556d1011f6/Functions.Templates/Templates/SqlOutputBinding-CSharp/.template.config/vs-2017.3/functionF-mac-32.png -------------------------------------------------------------------------------- /Functions.Templates/Templates/SqlOutputBinding-CSharp/.template.config/vs-2017.3/functionF-mac-32@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-templates/44b0e29d1905fe518b0278445bb561556d1011f6/Functions.Templates/Templates/SqlOutputBinding-CSharp/.template.config/vs-2017.3/functionF-mac-32@2x.png -------------------------------------------------------------------------------- /Functions.Templates/Templates/SqlOutputBinding-CSharp/.template.config/vs-2017.3/functionF-mac-32~dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-templates/44b0e29d1905fe518b0278445bb561556d1011f6/Functions.Templates/Templates/SqlOutputBinding-CSharp/.template.config/vs-2017.3/functionF-mac-32~dark.png -------------------------------------------------------------------------------- /Functions.Templates/Templates/SqlOutputBinding-CSharp/.template.config/vs-2017.3/functionF-mac-32~sel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-templates/44b0e29d1905fe518b0278445bb561556d1011f6/Functions.Templates/Templates/SqlOutputBinding-CSharp/.template.config/vs-2017.3/functionF-mac-32~sel.png -------------------------------------------------------------------------------- /Functions.Templates/Templates/SqlOutputBinding-CSharp/.template.config/vs-2017.3/functionF.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-templates/44b0e29d1905fe518b0278445bb561556d1011f6/Functions.Templates/Templates/SqlOutputBinding-CSharp/.template.config/vs-2017.3/functionF.png -------------------------------------------------------------------------------- /Functions.Templates/Templates/SqlOutputBinding-CSharp/function.json: -------------------------------------------------------------------------------- 1 | { 2 | "bindings": [ 3 | { 4 | "authLevel": "function", 5 | "name": "req", 6 | "type": "httpTrigger", 7 | "direction": "in", 8 | "methods": [ 9 | "get" 10 | ] 11 | } 12 | ] 13 | } -------------------------------------------------------------------------------- /Functions.Templates/Templates/SqlTrigger-CSharp-Isolated/.template.config/vs-2017.3/functionF-mac-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-templates/44b0e29d1905fe518b0278445bb561556d1011f6/Functions.Templates/Templates/SqlTrigger-CSharp-Isolated/.template.config/vs-2017.3/functionF-mac-32.png -------------------------------------------------------------------------------- /Functions.Templates/Templates/SqlTrigger-CSharp-Isolated/.template.config/vs-2017.3/functionF-mac-32@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-templates/44b0e29d1905fe518b0278445bb561556d1011f6/Functions.Templates/Templates/SqlTrigger-CSharp-Isolated/.template.config/vs-2017.3/functionF-mac-32@2x.png -------------------------------------------------------------------------------- /Functions.Templates/Templates/SqlTrigger-CSharp-Isolated/.template.config/vs-2017.3/functionF.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-templates/44b0e29d1905fe518b0278445bb561556d1011f6/Functions.Templates/Templates/SqlTrigger-CSharp-Isolated/.template.config/vs-2017.3/functionF.png -------------------------------------------------------------------------------- /Functions.Templates/Templates/SqlTrigger-CSharp/.template.config/vs-2017.3/functionF-mac-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-templates/44b0e29d1905fe518b0278445bb561556d1011f6/Functions.Templates/Templates/SqlTrigger-CSharp/.template.config/vs-2017.3/functionF-mac-32.png -------------------------------------------------------------------------------- /Functions.Templates/Templates/SqlTrigger-CSharp/.template.config/vs-2017.3/functionF-mac-32@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-templates/44b0e29d1905fe518b0278445bb561556d1011f6/Functions.Templates/Templates/SqlTrigger-CSharp/.template.config/vs-2017.3/functionF-mac-32@2x.png -------------------------------------------------------------------------------- /Functions.Templates/Templates/SqlTrigger-CSharp/.template.config/vs-2017.3/functionF-mac-32~dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-templates/44b0e29d1905fe518b0278445bb561556d1011f6/Functions.Templates/Templates/SqlTrigger-CSharp/.template.config/vs-2017.3/functionF-mac-32~dark.png -------------------------------------------------------------------------------- /Functions.Templates/Templates/SqlTrigger-CSharp/.template.config/vs-2017.3/functionF-mac-32~dark@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-templates/44b0e29d1905fe518b0278445bb561556d1011f6/Functions.Templates/Templates/SqlTrigger-CSharp/.template.config/vs-2017.3/functionF-mac-32~dark@2x.png -------------------------------------------------------------------------------- /Functions.Templates/Templates/SqlTrigger-CSharp/.template.config/vs-2017.3/functionF-mac-32~dark~sel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-templates/44b0e29d1905fe518b0278445bb561556d1011f6/Functions.Templates/Templates/SqlTrigger-CSharp/.template.config/vs-2017.3/functionF-mac-32~dark~sel.png -------------------------------------------------------------------------------- /Functions.Templates/Templates/SqlTrigger-CSharp/.template.config/vs-2017.3/functionF-mac-32~dark~sel@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-templates/44b0e29d1905fe518b0278445bb561556d1011f6/Functions.Templates/Templates/SqlTrigger-CSharp/.template.config/vs-2017.3/functionF-mac-32~dark~sel@2x.png -------------------------------------------------------------------------------- /Functions.Templates/Templates/SqlTrigger-CSharp/.template.config/vs-2017.3/functionF-mac-32~sel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-templates/44b0e29d1905fe518b0278445bb561556d1011f6/Functions.Templates/Templates/SqlTrigger-CSharp/.template.config/vs-2017.3/functionF-mac-32~sel.png -------------------------------------------------------------------------------- /Functions.Templates/Templates/SqlTrigger-CSharp/.template.config/vs-2017.3/functionF-mac-32~sel@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-templates/44b0e29d1905fe518b0278445bb561556d1011f6/Functions.Templates/Templates/SqlTrigger-CSharp/.template.config/vs-2017.3/functionF-mac-32~sel@2x.png -------------------------------------------------------------------------------- /Functions.Templates/Templates/SqlTrigger-CSharp/.template.config/vs-2017.3/functionF.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-templates/44b0e29d1905fe518b0278445bb561556d1011f6/Functions.Templates/Templates/SqlTrigger-CSharp/.template.config/vs-2017.3/functionF.png -------------------------------------------------------------------------------- /Functions.Templates/Templates/TimerTrigger-CSharp-Isolated/.template.config/vs-2017.3/timer-mac-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-templates/44b0e29d1905fe518b0278445bb561556d1011f6/Functions.Templates/Templates/TimerTrigger-CSharp-Isolated/.template.config/vs-2017.3/timer-mac-32.png -------------------------------------------------------------------------------- /Functions.Templates/Templates/TimerTrigger-CSharp-Isolated/.template.config/vs-2017.3/timer-mac-32@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-templates/44b0e29d1905fe518b0278445bb561556d1011f6/Functions.Templates/Templates/TimerTrigger-CSharp-Isolated/.template.config/vs-2017.3/timer-mac-32@2x.png -------------------------------------------------------------------------------- /Functions.Templates/Templates/TimerTrigger-CSharp-Isolated/.template.config/vs-2017.3/timer-mac-32~dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-templates/44b0e29d1905fe518b0278445bb561556d1011f6/Functions.Templates/Templates/TimerTrigger-CSharp-Isolated/.template.config/vs-2017.3/timer-mac-32~dark.png -------------------------------------------------------------------------------- /Functions.Templates/Templates/TimerTrigger-CSharp-Isolated/.template.config/vs-2017.3/timer-mac-32~sel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-templates/44b0e29d1905fe518b0278445bb561556d1011f6/Functions.Templates/Templates/TimerTrigger-CSharp-Isolated/.template.config/vs-2017.3/timer-mac-32~sel.png -------------------------------------------------------------------------------- /Functions.Templates/Templates/TimerTrigger-CSharp-Isolated/.template.config/vs-2017.3/timer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-templates/44b0e29d1905fe518b0278445bb561556d1011f6/Functions.Templates/Templates/TimerTrigger-CSharp-Isolated/.template.config/vs-2017.3/timer.png -------------------------------------------------------------------------------- /Functions.Templates/Templates/TimerTrigger-CSharp/.template.config/vs-2017.3/timer-mac-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-templates/44b0e29d1905fe518b0278445bb561556d1011f6/Functions.Templates/Templates/TimerTrigger-CSharp/.template.config/vs-2017.3/timer-mac-32.png -------------------------------------------------------------------------------- /Functions.Templates/Templates/TimerTrigger-CSharp/.template.config/vs-2017.3/timer-mac-32@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-templates/44b0e29d1905fe518b0278445bb561556d1011f6/Functions.Templates/Templates/TimerTrigger-CSharp/.template.config/vs-2017.3/timer-mac-32@2x.png -------------------------------------------------------------------------------- /Functions.Templates/Templates/TimerTrigger-CSharp/.template.config/vs-2017.3/timer-mac-32~dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-templates/44b0e29d1905fe518b0278445bb561556d1011f6/Functions.Templates/Templates/TimerTrigger-CSharp/.template.config/vs-2017.3/timer-mac-32~dark.png -------------------------------------------------------------------------------- /Functions.Templates/Templates/TimerTrigger-CSharp/.template.config/vs-2017.3/timer-mac-32~dark@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-templates/44b0e29d1905fe518b0278445bb561556d1011f6/Functions.Templates/Templates/TimerTrigger-CSharp/.template.config/vs-2017.3/timer-mac-32~dark@2x.png -------------------------------------------------------------------------------- /Functions.Templates/Templates/TimerTrigger-CSharp/.template.config/vs-2017.3/timer-mac-32~dark~sel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-templates/44b0e29d1905fe518b0278445bb561556d1011f6/Functions.Templates/Templates/TimerTrigger-CSharp/.template.config/vs-2017.3/timer-mac-32~dark~sel.png -------------------------------------------------------------------------------- /Functions.Templates/Templates/TimerTrigger-CSharp/.template.config/vs-2017.3/timer-mac-32~dark~sel@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-templates/44b0e29d1905fe518b0278445bb561556d1011f6/Functions.Templates/Templates/TimerTrigger-CSharp/.template.config/vs-2017.3/timer-mac-32~dark~sel@2x.png -------------------------------------------------------------------------------- /Functions.Templates/Templates/TimerTrigger-CSharp/.template.config/vs-2017.3/timer-mac-32~sel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-templates/44b0e29d1905fe518b0278445bb561556d1011f6/Functions.Templates/Templates/TimerTrigger-CSharp/.template.config/vs-2017.3/timer-mac-32~sel.png -------------------------------------------------------------------------------- /Functions.Templates/Templates/TimerTrigger-CSharp/.template.config/vs-2017.3/timer-mac-32~sel@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-templates/44b0e29d1905fe518b0278445bb561556d1011f6/Functions.Templates/Templates/TimerTrigger-CSharp/.template.config/vs-2017.3/timer-mac-32~sel@2x.png -------------------------------------------------------------------------------- /Functions.Templates/Templates/TimerTrigger-CSharp/.template.config/vs-2017.3/timer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-templates/44b0e29d1905fe518b0278445bb561556d1011f6/Functions.Templates/Templates/TimerTrigger-CSharp/.template.config/vs-2017.3/timer.png -------------------------------------------------------------------------------- /Functions.Templates/Templates/TimerTrigger-CSharp/function.json: -------------------------------------------------------------------------------- 1 | { 2 | "bindings": [ 3 | { 4 | "name": "myTimer", 5 | "type": "timerTrigger", 6 | "direction": "in", 7 | "schedule": "0 */5 * * * *" 8 | } 9 | ] 10 | } -------------------------------------------------------------------------------- /Functions.Templates/Templates/TimerTrigger-CSharp/run.csx: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | public static void Run(TimerInfo myTimer, ILogger log) 4 | { 5 | log.LogInformation($"C# Timer trigger function executed at: {DateTime.Now}"); 6 | } 7 | -------------------------------------------------------------------------------- /Functions.Templates/Templates/TimerTrigger-CSharp/sample.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-templates/44b0e29d1905fe518b0278445bb561556d1011f6/Functions.Templates/Templates/TimerTrigger-CSharp/sample.dat -------------------------------------------------------------------------------- /Functions.Templates/Templates/TimerTrigger-Custom/function.json: -------------------------------------------------------------------------------- 1 | { 2 | "bindings": [ 3 | { 4 | "name": "myTimer", 5 | "type": "timerTrigger", 6 | "direction": "in", 7 | "schedule": "0 */5 * * * *" 8 | } 9 | ] 10 | } -------------------------------------------------------------------------------- /Functions.Templates/Templates/TimerTrigger-FSharp-Isolated/.template.config/vs-2017.3/timer-mac-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-templates/44b0e29d1905fe518b0278445bb561556d1011f6/Functions.Templates/Templates/TimerTrigger-FSharp-Isolated/.template.config/vs-2017.3/timer-mac-32.png -------------------------------------------------------------------------------- /Functions.Templates/Templates/TimerTrigger-FSharp-Isolated/.template.config/vs-2017.3/timer-mac-32@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-templates/44b0e29d1905fe518b0278445bb561556d1011f6/Functions.Templates/Templates/TimerTrigger-FSharp-Isolated/.template.config/vs-2017.3/timer-mac-32@2x.png -------------------------------------------------------------------------------- /Functions.Templates/Templates/TimerTrigger-FSharp-Isolated/.template.config/vs-2017.3/timer-mac-32~dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-templates/44b0e29d1905fe518b0278445bb561556d1011f6/Functions.Templates/Templates/TimerTrigger-FSharp-Isolated/.template.config/vs-2017.3/timer-mac-32~dark.png -------------------------------------------------------------------------------- /Functions.Templates/Templates/TimerTrigger-FSharp-Isolated/.template.config/vs-2017.3/timer-mac-32~sel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-templates/44b0e29d1905fe518b0278445bb561556d1011f6/Functions.Templates/Templates/TimerTrigger-FSharp-Isolated/.template.config/vs-2017.3/timer-mac-32~sel.png -------------------------------------------------------------------------------- /Functions.Templates/Templates/TimerTrigger-FSharp-Isolated/.template.config/vs-2017.3/timer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-templates/44b0e29d1905fe518b0278445bb561556d1011f6/Functions.Templates/Templates/TimerTrigger-FSharp-Isolated/.template.config/vs-2017.3/timer.png -------------------------------------------------------------------------------- /Functions.Templates/Templates/TimerTrigger-FSharp/.template.config/vs-2017.3/timer-mac-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-templates/44b0e29d1905fe518b0278445bb561556d1011f6/Functions.Templates/Templates/TimerTrigger-FSharp/.template.config/vs-2017.3/timer-mac-32.png -------------------------------------------------------------------------------- /Functions.Templates/Templates/TimerTrigger-FSharp/.template.config/vs-2017.3/timer-mac-32@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-templates/44b0e29d1905fe518b0278445bb561556d1011f6/Functions.Templates/Templates/TimerTrigger-FSharp/.template.config/vs-2017.3/timer-mac-32@2x.png -------------------------------------------------------------------------------- /Functions.Templates/Templates/TimerTrigger-FSharp/.template.config/vs-2017.3/timer-mac-32~dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-templates/44b0e29d1905fe518b0278445bb561556d1011f6/Functions.Templates/Templates/TimerTrigger-FSharp/.template.config/vs-2017.3/timer-mac-32~dark.png -------------------------------------------------------------------------------- /Functions.Templates/Templates/TimerTrigger-FSharp/.template.config/vs-2017.3/timer-mac-32~dark@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-templates/44b0e29d1905fe518b0278445bb561556d1011f6/Functions.Templates/Templates/TimerTrigger-FSharp/.template.config/vs-2017.3/timer-mac-32~dark@2x.png -------------------------------------------------------------------------------- /Functions.Templates/Templates/TimerTrigger-FSharp/.template.config/vs-2017.3/timer-mac-32~dark~sel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-templates/44b0e29d1905fe518b0278445bb561556d1011f6/Functions.Templates/Templates/TimerTrigger-FSharp/.template.config/vs-2017.3/timer-mac-32~dark~sel.png -------------------------------------------------------------------------------- /Functions.Templates/Templates/TimerTrigger-FSharp/.template.config/vs-2017.3/timer-mac-32~dark~sel@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-templates/44b0e29d1905fe518b0278445bb561556d1011f6/Functions.Templates/Templates/TimerTrigger-FSharp/.template.config/vs-2017.3/timer-mac-32~dark~sel@2x.png -------------------------------------------------------------------------------- /Functions.Templates/Templates/TimerTrigger-FSharp/.template.config/vs-2017.3/timer-mac-32~sel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-templates/44b0e29d1905fe518b0278445bb561556d1011f6/Functions.Templates/Templates/TimerTrigger-FSharp/.template.config/vs-2017.3/timer-mac-32~sel.png -------------------------------------------------------------------------------- /Functions.Templates/Templates/TimerTrigger-FSharp/.template.config/vs-2017.3/timer-mac-32~sel@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-templates/44b0e29d1905fe518b0278445bb561556d1011f6/Functions.Templates/Templates/TimerTrigger-FSharp/.template.config/vs-2017.3/timer-mac-32~sel@2x.png -------------------------------------------------------------------------------- /Functions.Templates/Templates/TimerTrigger-FSharp/.template.config/vs-2017.3/timer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-templates/44b0e29d1905fe518b0278445bb561556d1011f6/Functions.Templates/Templates/TimerTrigger-FSharp/.template.config/vs-2017.3/timer.png -------------------------------------------------------------------------------- /Functions.Templates/Templates/TimerTrigger-FSharp/sample.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-templates/44b0e29d1905fe518b0278445bb561556d1011f6/Functions.Templates/Templates/TimerTrigger-FSharp/sample.dat -------------------------------------------------------------------------------- /Functions.Templates/Templates/TimerTrigger-JavaScript/function.json: -------------------------------------------------------------------------------- 1 | { 2 | "bindings": [ 3 | { 4 | "name": "myTimer", 5 | "type": "timerTrigger", 6 | "direction": "in", 7 | "schedule": "0 */5 * * * *" 8 | } 9 | ] 10 | } -------------------------------------------------------------------------------- /Functions.Templates/Templates/TimerTrigger-JavaScript/sample.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-templates/44b0e29d1905fe518b0278445bb561556d1011f6/Functions.Templates/Templates/TimerTrigger-JavaScript/sample.dat -------------------------------------------------------------------------------- /Functions.Templates/Templates/TimerTrigger-PowerShell/function.json: -------------------------------------------------------------------------------- 1 | { 2 | "bindings": [ 3 | { 4 | "name": "Timer", 5 | "type": "timerTrigger", 6 | "direction": "in", 7 | "schedule": "0 */5 * * * *" 8 | } 9 | ] 10 | } 11 | -------------------------------------------------------------------------------- /Functions.Templates/Templates/TimerTrigger-PowerShell/sample.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-templates/44b0e29d1905fe518b0278445bb561556d1011f6/Functions.Templates/Templates/TimerTrigger-PowerShell/sample.dat -------------------------------------------------------------------------------- /Functions.Templates/Templates/TimerTrigger-Python/sample.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-templates/44b0e29d1905fe518b0278445bb561556d1011f6/Functions.Templates/Templates/TimerTrigger-Python/sample.dat -------------------------------------------------------------------------------- /Functions.Templates/Templates/TimerTrigger-TypeScript/function.json: -------------------------------------------------------------------------------- 1 | { 2 | "bindings": [ 3 | { 4 | "name": "myTimer", 5 | "type": "timerTrigger", 6 | "direction": "in", 7 | "schedule": "0 */5 * * * *" 8 | } 9 | ] 10 | } -------------------------------------------------------------------------------- /Tools/CheckResourceStrings/CheckResourceStrings/Properties/launchSettings.json: -------------------------------------------------------------------------------- 1 | { 2 | "profiles": { 3 | "CheckResourceStrings": { 4 | "commandName": "Project", 5 | "commandLineArgs": "\"C:\\Repository\\azure-functions-templates\\Functions.Templates\\bin\\Portal\\out\"" 6 | } 7 | } 8 | } -------------------------------------------------------------------------------- /package-lock.json: -------------------------------------------------------------------------------- 1 | { 2 | "lockfileVersion": 1 3 | } 4 | --------------------------------------------------------------------------------