This is an automated email from the ASF dual-hosted git repository. acosentino pushed a commit to branch CAMEL-20060-docs in repository https://gitbox.apache.org/repos/asf/camel.git
commit ecd2598ba0052802b578c2d53ee076758230fcf5 Author: Andrea Cosentino <anco...@gmail.com> AuthorDate: Tue Oct 31 17:20:56 2023 +0100 CAMEL-20060 - Add Azure SAS support for azure blob storage - Docs Signed-off-by: Andrea Cosentino <anco...@gmail.com> --- .../src/main/docs/azure-storage-blob-component.adoc | 1 + 1 file changed, 1 insertion(+) diff --git a/components/camel-azure/camel-azure-storage-blob/src/main/docs/azure-storage-blob-component.adoc b/components/camel-azure/camel-azure-storage-blob/src/main/docs/azure-storage-blob-component.adoc index 2357cb49364..93f1826e9b3 100644 --- a/components/camel-azure/camel-azure-storage-blob/src/main/docs/azure-storage-blob-component.adoc +++ b/components/camel-azure/camel-azure-storage-blob/src/main/docs/azure-storage-blob-component.adoc @@ -74,6 +74,7 @@ can be used to retrieve lower level clients. - 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. Note that this is the default authentication strategy. - 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. - 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. +- Via Azure SAS, when specifying `credentialType=AZURE_SAS` and providing a SAS Token parameter through the `sasToken` parameter. == Usage