You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by ac...@apache.org on 2023/12/19 10:23:26 UTC

(camel) 05/06: CAMEL-18590 - Camel-Azure components: Define a unique configuration for authentication - Azure Storage Queue - Docs

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 3ea4e35a3a2fc6bedab16a7543a158f70dcb89ea
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Tue Dec 19 11:04:40 2023 +0100

    CAMEL-18590 - Camel-Azure components: Define a unique configuration for authentication - Azure Storage Queue - Docs
    
    Signed-off-by: Andrea Cosentino <an...@gmail.com>
---
 .../src/main/docs/azure-storage-queue-component.adoc                     | 1 +
 1 file changed, 1 insertion(+)

diff --git a/components/camel-azure/camel-azure-storage-queue/src/main/docs/azure-storage-queue-component.adoc b/components/camel-azure/camel-azure-storage-queue/src/main/docs/azure-storage-queue-component.adoc
index ba693166811..87e960a7d5d 100644
--- a/components/camel-azure/camel-azure-storage-queue/src/main/docs/azure-storage-queue-component.adoc
+++ b/components/camel-azure/camel-azure-storage-queue/src/main/docs/azure-storage-queue-component.adoc
@@ -71,6 +71,7 @@ include::partial$component-endpoint-options.adoc[]
 
 To use this component, you have multiple options in order to provide the required Azure authentication information:
 
+- By providing your own QueueServiceClient instance which can be injected into `serviceClient`.
 - Via Azure Identity, when specifying `credentialType=AZURE_IDENTITY` and providing required https://github.com/Azure/azure-sdk-for-java/tree/main/sdk/identity/azure-identity#environment-variables[environment variables]. This enables service principal (e.g. app registration) authentication with secret/certificate as well as username password. 
 - Via shared storage account key, when specifying `credentialType=SHARED_ACCOUNT_KEY` and providing `accountName` and `accessKey` for your Azure account, this is the simplest way to get started. The accessKey can be generated through your Azure portal. Note that this is the default authentication strategy.
 - Via shared storage account key, when specifying `credentialType=SHARED_KEY_CREDENTIAL` and providing a https://azuresdkartifacts.blob.core.windows.net/azure-sdk-for-java/staging/apidocs/com/azure/storage/common/StorageSharedKeyCredential.html[StorageSharedKeyCredential] instance which can be injected into `credentials` option.