├── .github ├── ISSUE_TEMPLATE │ ├── new-extension-version.yml │ └── new-extension.yml ├── pull_request_template.md └── workflows │ ├── codeql-analysis.yml │ └── codeql.yml ├── .gitignore ├── CODEOWNERS ├── ExtensionBundle.Tests.sln ├── LICENSE ├── NOTICE.txt ├── README.md ├── SECURITY.md ├── eng ├── ci │ └── templates │ │ └── jobs │ │ ├── build.yml │ │ ├── emulator-tests.yml │ │ └── run-unit-test.yml ├── code-mirror.yml ├── official-build.yml └── public-build.yml ├── scripts ├── README.md ├── get-function-apps-bundle-version.ps1 └── get-function-apps-bundle-version.sh ├── src └── Microsoft.Azure.Functions.ExtensionBundle │ ├── NuGet.Config │ ├── bundleConfig.json │ ├── extensions.csproj │ └── extensions.json ├── tests ├── ExtensionBundle.Tests │ ├── DependencyValidationTests.cs │ ├── ExtensionBundle.Tests.csproj │ ├── Fixture.cs │ └── TestData │ │ ├── any_any_extensions.deps.json │ │ ├── linux_x64_extensions.deps.json │ │ ├── win_x64_extensions.deps.json │ │ └── win_x86_extensions.deps.json ├── __init__.py ├── emulator_tests │ ├── README.md │ ├── blob_functions │ │ └── function_app.py │ ├── cosmosdb_functions │ │ └── function_app.py │ ├── durable_functions │ │ └── function_app.py │ ├── eventhub_batch_functions │ │ └── function_app.py │ ├── eventhub_functions │ │ └── function_app.py │ ├── fabric_functions │ │ └── function_app.py │ ├── mysql_functions │ │ ├── function_app.py │ │ └── mysql_test_utils.py │ ├── queue_functions │ │ └── function_app.py │ ├── servicebus_functions │ │ └── function_app.py │ ├── table_functions │ │ └── function_app.py │ ├── test_blob_functions.py │ ├── test_connectivity.py │ ├── test_cosmosdb_functions.py │ ├── test_durable_functions.py │ ├── test_eventhub_batch_functions.py │ ├── test_eventhub_functions.py │ ├── test_fabric_functions.py │ ├── test_mysql_functions.py │ ├── test_queue_functions.py │ ├── test_servicebus_functions.py │ ├── test_table_functions.py │ └── utils │ │ ├── dts │ │ └── docker-compose.yml │ │ ├── eventhub │ │ ├── config.json │ │ └── docker-compose.yml │ │ ├── mysql │ │ └── docker-compose.yml │ │ └── servicebus │ │ ├── config.json │ │ └── docker-compose.yml ├── pytest.ini ├── requirements.txt ├── test_setup.py └── utils │ ├── __init__.py │ └── testutils.py └── validate-ci.ps1 /.github/ISSUE_TEMPLATE/new-extension-version.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-extension-bundles/HEAD/.github/ISSUE_TEMPLATE/new-extension-version.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/new-extension.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-extension-bundles/HEAD/.github/ISSUE_TEMPLATE/new-extension.yml -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-extension-bundles/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/workflows/codeql-analysis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-extension-bundles/HEAD/.github/workflows/codeql-analysis.yml -------------------------------------------------------------------------------- /.github/workflows/codeql.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-extension-bundles/HEAD/.github/workflows/codeql.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-extension-bundles/HEAD/.gitignore -------------------------------------------------------------------------------- /CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-extension-bundles/HEAD/CODEOWNERS -------------------------------------------------------------------------------- /ExtensionBundle.Tests.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-extension-bundles/HEAD/ExtensionBundle.Tests.sln -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-extension-bundles/HEAD/LICENSE -------------------------------------------------------------------------------- /NOTICE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-extension-bundles/HEAD/NOTICE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-extension-bundles/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-extension-bundles/HEAD/SECURITY.md -------------------------------------------------------------------------------- /eng/ci/templates/jobs/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-extension-bundles/HEAD/eng/ci/templates/jobs/build.yml -------------------------------------------------------------------------------- /eng/ci/templates/jobs/emulator-tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-extension-bundles/HEAD/eng/ci/templates/jobs/emulator-tests.yml -------------------------------------------------------------------------------- /eng/ci/templates/jobs/run-unit-test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-extension-bundles/HEAD/eng/ci/templates/jobs/run-unit-test.yml -------------------------------------------------------------------------------- /eng/code-mirror.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-extension-bundles/HEAD/eng/code-mirror.yml -------------------------------------------------------------------------------- /eng/official-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-extension-bundles/HEAD/eng/official-build.yml -------------------------------------------------------------------------------- /eng/public-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-extension-bundles/HEAD/eng/public-build.yml -------------------------------------------------------------------------------- /scripts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-extension-bundles/HEAD/scripts/README.md -------------------------------------------------------------------------------- /scripts/get-function-apps-bundle-version.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-extension-bundles/HEAD/scripts/get-function-apps-bundle-version.ps1 -------------------------------------------------------------------------------- /scripts/get-function-apps-bundle-version.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-extension-bundles/HEAD/scripts/get-function-apps-bundle-version.sh -------------------------------------------------------------------------------- /src/Microsoft.Azure.Functions.ExtensionBundle/NuGet.Config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-extension-bundles/HEAD/src/Microsoft.Azure.Functions.ExtensionBundle/NuGet.Config -------------------------------------------------------------------------------- /src/Microsoft.Azure.Functions.ExtensionBundle/bundleConfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-extension-bundles/HEAD/src/Microsoft.Azure.Functions.ExtensionBundle/bundleConfig.json -------------------------------------------------------------------------------- /src/Microsoft.Azure.Functions.ExtensionBundle/extensions.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-extension-bundles/HEAD/src/Microsoft.Azure.Functions.ExtensionBundle/extensions.csproj -------------------------------------------------------------------------------- /src/Microsoft.Azure.Functions.ExtensionBundle/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-extension-bundles/HEAD/src/Microsoft.Azure.Functions.ExtensionBundle/extensions.json -------------------------------------------------------------------------------- /tests/ExtensionBundle.Tests/DependencyValidationTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-extension-bundles/HEAD/tests/ExtensionBundle.Tests/DependencyValidationTests.cs -------------------------------------------------------------------------------- /tests/ExtensionBundle.Tests/ExtensionBundle.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-extension-bundles/HEAD/tests/ExtensionBundle.Tests/ExtensionBundle.Tests.csproj -------------------------------------------------------------------------------- /tests/ExtensionBundle.Tests/Fixture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-extension-bundles/HEAD/tests/ExtensionBundle.Tests/Fixture.cs -------------------------------------------------------------------------------- /tests/ExtensionBundle.Tests/TestData/any_any_extensions.deps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-extension-bundles/HEAD/tests/ExtensionBundle.Tests/TestData/any_any_extensions.deps.json -------------------------------------------------------------------------------- /tests/ExtensionBundle.Tests/TestData/linux_x64_extensions.deps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-extension-bundles/HEAD/tests/ExtensionBundle.Tests/TestData/linux_x64_extensions.deps.json -------------------------------------------------------------------------------- /tests/ExtensionBundle.Tests/TestData/win_x64_extensions.deps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-extension-bundles/HEAD/tests/ExtensionBundle.Tests/TestData/win_x64_extensions.deps.json -------------------------------------------------------------------------------- /tests/ExtensionBundle.Tests/TestData/win_x86_extensions.deps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-extension-bundles/HEAD/tests/ExtensionBundle.Tests/TestData/win_x86_extensions.deps.json -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-extension-bundles/HEAD/tests/__init__.py -------------------------------------------------------------------------------- /tests/emulator_tests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-extension-bundles/HEAD/tests/emulator_tests/README.md -------------------------------------------------------------------------------- /tests/emulator_tests/blob_functions/function_app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-extension-bundles/HEAD/tests/emulator_tests/blob_functions/function_app.py -------------------------------------------------------------------------------- /tests/emulator_tests/cosmosdb_functions/function_app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-extension-bundles/HEAD/tests/emulator_tests/cosmosdb_functions/function_app.py -------------------------------------------------------------------------------- /tests/emulator_tests/durable_functions/function_app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-extension-bundles/HEAD/tests/emulator_tests/durable_functions/function_app.py -------------------------------------------------------------------------------- /tests/emulator_tests/eventhub_batch_functions/function_app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-extension-bundles/HEAD/tests/emulator_tests/eventhub_batch_functions/function_app.py -------------------------------------------------------------------------------- /tests/emulator_tests/eventhub_functions/function_app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-extension-bundles/HEAD/tests/emulator_tests/eventhub_functions/function_app.py -------------------------------------------------------------------------------- /tests/emulator_tests/fabric_functions/function_app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-extension-bundles/HEAD/tests/emulator_tests/fabric_functions/function_app.py -------------------------------------------------------------------------------- /tests/emulator_tests/mysql_functions/function_app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-extension-bundles/HEAD/tests/emulator_tests/mysql_functions/function_app.py -------------------------------------------------------------------------------- /tests/emulator_tests/mysql_functions/mysql_test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-extension-bundles/HEAD/tests/emulator_tests/mysql_functions/mysql_test_utils.py -------------------------------------------------------------------------------- /tests/emulator_tests/queue_functions/function_app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-extension-bundles/HEAD/tests/emulator_tests/queue_functions/function_app.py -------------------------------------------------------------------------------- /tests/emulator_tests/servicebus_functions/function_app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-extension-bundles/HEAD/tests/emulator_tests/servicebus_functions/function_app.py -------------------------------------------------------------------------------- /tests/emulator_tests/table_functions/function_app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-extension-bundles/HEAD/tests/emulator_tests/table_functions/function_app.py -------------------------------------------------------------------------------- /tests/emulator_tests/test_blob_functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-extension-bundles/HEAD/tests/emulator_tests/test_blob_functions.py -------------------------------------------------------------------------------- /tests/emulator_tests/test_connectivity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-extension-bundles/HEAD/tests/emulator_tests/test_connectivity.py -------------------------------------------------------------------------------- /tests/emulator_tests/test_cosmosdb_functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-extension-bundles/HEAD/tests/emulator_tests/test_cosmosdb_functions.py -------------------------------------------------------------------------------- /tests/emulator_tests/test_durable_functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-extension-bundles/HEAD/tests/emulator_tests/test_durable_functions.py -------------------------------------------------------------------------------- /tests/emulator_tests/test_eventhub_batch_functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-extension-bundles/HEAD/tests/emulator_tests/test_eventhub_batch_functions.py -------------------------------------------------------------------------------- /tests/emulator_tests/test_eventhub_functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-extension-bundles/HEAD/tests/emulator_tests/test_eventhub_functions.py -------------------------------------------------------------------------------- /tests/emulator_tests/test_fabric_functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-extension-bundles/HEAD/tests/emulator_tests/test_fabric_functions.py -------------------------------------------------------------------------------- /tests/emulator_tests/test_mysql_functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-extension-bundles/HEAD/tests/emulator_tests/test_mysql_functions.py -------------------------------------------------------------------------------- /tests/emulator_tests/test_queue_functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-extension-bundles/HEAD/tests/emulator_tests/test_queue_functions.py -------------------------------------------------------------------------------- /tests/emulator_tests/test_servicebus_functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-extension-bundles/HEAD/tests/emulator_tests/test_servicebus_functions.py -------------------------------------------------------------------------------- /tests/emulator_tests/test_table_functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-extension-bundles/HEAD/tests/emulator_tests/test_table_functions.py -------------------------------------------------------------------------------- /tests/emulator_tests/utils/dts/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-extension-bundles/HEAD/tests/emulator_tests/utils/dts/docker-compose.yml -------------------------------------------------------------------------------- /tests/emulator_tests/utils/eventhub/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-extension-bundles/HEAD/tests/emulator_tests/utils/eventhub/config.json -------------------------------------------------------------------------------- /tests/emulator_tests/utils/eventhub/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-extension-bundles/HEAD/tests/emulator_tests/utils/eventhub/docker-compose.yml -------------------------------------------------------------------------------- /tests/emulator_tests/utils/mysql/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-extension-bundles/HEAD/tests/emulator_tests/utils/mysql/docker-compose.yml -------------------------------------------------------------------------------- /tests/emulator_tests/utils/servicebus/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-extension-bundles/HEAD/tests/emulator_tests/utils/servicebus/config.json -------------------------------------------------------------------------------- /tests/emulator_tests/utils/servicebus/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-extension-bundles/HEAD/tests/emulator_tests/utils/servicebus/docker-compose.yml -------------------------------------------------------------------------------- /tests/pytest.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-extension-bundles/HEAD/tests/pytest.ini -------------------------------------------------------------------------------- /tests/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-extension-bundles/HEAD/tests/requirements.txt -------------------------------------------------------------------------------- /tests/test_setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-extension-bundles/HEAD/tests/test_setup.py -------------------------------------------------------------------------------- /tests/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-extension-bundles/HEAD/tests/utils/__init__.py -------------------------------------------------------------------------------- /tests/utils/testutils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-extension-bundles/HEAD/tests/utils/testutils.py -------------------------------------------------------------------------------- /validate-ci.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-extension-bundles/HEAD/validate-ci.ps1 --------------------------------------------------------------------------------