├── .github └── workflows │ └── build-dotnet-core.yml ├── .gitignore ├── .vscode ├── extensions.json ├── launch.json ├── settings.json └── tasks.json ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── SECURITY.md ├── images ├── architecture.png ├── flow.png ├── prefix.png ├── resources.png └── servicebusexplorer.png ├── scripts └── deploy.sh ├── src ├── .gitignore ├── CustomMessage.cs ├── RequestReceiver.cs ├── ServiceBusTriggerFunction.csproj ├── ServiceBusTriggerFunction.sln ├── Startup.cs └── host.json ├── templates ├── azuredeploy.json └── azuredeploy.parameters.json └── visio └── azure-functions.vsdx /.github/workflows/build-dotnet-core.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paolosalvatori/azure-function-premium-plan/HEAD/.github/workflows/build-dotnet-core.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paolosalvatori/azure-function-premium-plan/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paolosalvatori/azure-function-premium-plan/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paolosalvatori/azure-function-premium-plan/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paolosalvatori/azure-function-premium-plan/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paolosalvatori/azure-function-premium-plan/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paolosalvatori/azure-function-premium-plan/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paolosalvatori/azure-function-premium-plan/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- 1 | # Contributing -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paolosalvatori/azure-function-premium-plan/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paolosalvatori/azure-function-premium-plan/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paolosalvatori/azure-function-premium-plan/HEAD/SECURITY.md -------------------------------------------------------------------------------- /images/architecture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paolosalvatori/azure-function-premium-plan/HEAD/images/architecture.png -------------------------------------------------------------------------------- /images/flow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paolosalvatori/azure-function-premium-plan/HEAD/images/flow.png -------------------------------------------------------------------------------- /images/prefix.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paolosalvatori/azure-function-premium-plan/HEAD/images/prefix.png -------------------------------------------------------------------------------- /images/resources.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paolosalvatori/azure-function-premium-plan/HEAD/images/resources.png -------------------------------------------------------------------------------- /images/servicebusexplorer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paolosalvatori/azure-function-premium-plan/HEAD/images/servicebusexplorer.png -------------------------------------------------------------------------------- /scripts/deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paolosalvatori/azure-function-premium-plan/HEAD/scripts/deploy.sh -------------------------------------------------------------------------------- /src/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paolosalvatori/azure-function-premium-plan/HEAD/src/.gitignore -------------------------------------------------------------------------------- /src/CustomMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paolosalvatori/azure-function-premium-plan/HEAD/src/CustomMessage.cs -------------------------------------------------------------------------------- /src/RequestReceiver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paolosalvatori/azure-function-premium-plan/HEAD/src/RequestReceiver.cs -------------------------------------------------------------------------------- /src/ServiceBusTriggerFunction.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paolosalvatori/azure-function-premium-plan/HEAD/src/ServiceBusTriggerFunction.csproj -------------------------------------------------------------------------------- /src/ServiceBusTriggerFunction.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paolosalvatori/azure-function-premium-plan/HEAD/src/ServiceBusTriggerFunction.sln -------------------------------------------------------------------------------- /src/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paolosalvatori/azure-function-premium-plan/HEAD/src/Startup.cs -------------------------------------------------------------------------------- /src/host.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paolosalvatori/azure-function-premium-plan/HEAD/src/host.json -------------------------------------------------------------------------------- /templates/azuredeploy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paolosalvatori/azure-function-premium-plan/HEAD/templates/azuredeploy.json -------------------------------------------------------------------------------- /templates/azuredeploy.parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paolosalvatori/azure-function-premium-plan/HEAD/templates/azuredeploy.parameters.json -------------------------------------------------------------------------------- /visio/azure-functions.vsdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paolosalvatori/azure-function-premium-plan/HEAD/visio/azure-functions.vsdx --------------------------------------------------------------------------------