This is an automated email from the ASF dual-hosted git repository. acosentino pushed a commit to branch CAMEL-18590-azure-storage-queue in repository https://gitbox.apache.org/repos/asf/camel.git
commit 095982246cef07c139e9dfde54175e03c521ddc7 Author: Andrea Cosentino <[email protected]> AuthorDate: Tue Dec 19 10:51:35 2023 +0100 CAMEL-18590 - Camel-Azure components: Define a unique configuration for authentication - Azure Storage Queue - Migration Docs Signed-off-by: Andrea Cosentino <[email protected]> --- .../modules/ROOT/pages/camel-4x-upgrade-guide-4_4.adoc | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) 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 1c4de1cc611..872b1a331b4 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 @@ -64,13 +64,21 @@ This is part of the effort explained in CAMEL-18590. === camel-azure-storage-datalake The useDefaultIdentity parameter has been removed in favor of the credentialType parameter. Now user should select between AZURE_IDENTITY, CLIENT_SECRET, SHARED_KEY_CREDENTIAL, AZURE_SAS and SERVICE_CLIENT_INSTANCE -With the SHARED_KEY_CREDENTIAL mode the user could explicitly set the sharedKey parameter or a SharedKeyCredential instace. +With the SHARED_KEY_CREDENTIAL mode the user could explicitly set the sharedKey parameter or a SharedKeyCredential instance. With the AZURE_IDENTITY mode the user will be able to use the Default Azure Credentials Chain. With the AZURE_SAS mode the user could explicitly set the sasSignature or sasCredential parameter. With the CLIENT_SECRET mode the user could explicitly set clientId, clientSecret and tenantId or specify a ClientSecretCredential instance. With the SERVICE_CLIENT_INSTANCE the user could explicity set a serviceClient parameter by passing a DataLakeServiceClient instance. This is part of the effort explained in CAMEL-18590. +=== camel-azure-storage-queue + +The useDefaultIdentity parameter has been removed in favor of the credentialType parameter. Now user should select between AZURE_IDENTITY, SHARED_KEY_CREDENTIAL and SHARED_ACCOUNT_KEY +With the SHARED_KEY_CREDENTIAL mode the user could explicitly set the SharedKeyCredential instance. +With the AZURE_IDENTITY mode the user will be able to use the Default Azure Credentials Chain. +With the SHARED_ACCOUNT_KEY mode the user could explicitly set the accessKey parameter. +This is part of the effort explained in CAMEL-18590. + == Camel Spring Boot === Auto Configuration
