This is an automated email from the ASF dual-hosted git repository. acosentino pushed a commit to branch CAMEL-18590-eventhubs in repository https://gitbox.apache.org/repos/asf/camel.git
commit e20ce1d625240af2657f7e9147c97ab344933e22 Author: Andrea Cosentino <[email protected]> AuthorDate: Wed Dec 13 13:29:12 2023 +0100 CAMEL-18590 - Camel-Azure components: Define a unique configuration for authentication - Azure Eventhubs - Migration docs Signed-off-by: Andrea Cosentino <[email protected]> --- .../modules/ROOT/pages/camel-4x-upgrade-guide-4_4.adoc | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/docs/user-manual/modules/ROOT/pages/camel-4x-upgrade-guide-4_4.adoc b/docs/user-manual/modules/ROOT/pages/camel-4x-upgrade-guide-4_4.adoc index 136a310b11e..ed29cc15f57 100644 --- a/docs/user-manual/modules/ROOT/pages/camel-4x-upgrade-guide-4_4.adoc +++ b/docs/user-manual/modules/ROOT/pages/camel-4x-upgrade-guide-4_4.adoc @@ -15,3 +15,11 @@ use the default constructor if necessary. The useDefaultIdentity parameter has been removed in favor of the credentialType parameter. Now user should select between SHARED_ACCOUNT_KEY and AZURE_IDENTITY. This is part of the effort explained in CAMEL-18590. + +=== camel-azure-eventhubs + +The credentialType parameter has been introduced with three possible values: AZURE_IDENTITY, CONNECTION_STRING and TOKEN_CREDENTIAL. +With the CONNECTION_STRING mode the user could explicitly set the connectionString parameters or use the sharedAccessName and sharedAccessKey to automatically build the connection string. +With the TOKEN_CREDENTIAL mode the user could pass a TokenCredential instance. +With the AZURE_IDENTITY mode the user will be able to use the Default Azure Credentials Chain. +This is part of the effort explained in CAMEL-18590.
