This is an automated email from the ASF dual-hosted git repository. acosentino pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/camel.git
commit a1a2eaa3939a6d77fdbb3763bb7be2945c646b99 Author: Andrea Cosentino <[email protected]> AuthorDate: Mon Dec 18 11:43:32 2023 +0100 CAMEL-18590 - Camel-Azure components: Define a unique configuration for authentication - Azure Datalake Signed-off-by: Andrea Cosentino <[email protected]> --- .../camel/component/azure/storage/datalake/DataLakeConfiguration.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/camel-azure/camel-azure-storage-datalake/src/main/java/org/apache/camel/component/azure/storage/datalake/DataLakeConfiguration.java b/components/camel-azure/camel-azure-storage-datalake/src/main/java/org/apache/camel/component/azure/storage/datalake/DataLakeConfiguration.java index c24e72b823b..f9c1651d567 100644 --- a/components/camel-azure/camel-azure-storage-datalake/src/main/java/org/apache/camel/component/azure/storage/datalake/DataLakeConfiguration.java +++ b/components/camel-azure/camel-azure-storage-datalake/src/main/java/org/apache/camel/component/azure/storage/datalake/DataLakeConfiguration.java @@ -105,7 +105,7 @@ public class DataLakeConfiguration implements Cloneable { description = "operation to be performed") private DataLakeOperationsDefinition operation = DataLakeOperationsDefinition.listFileSystem; - @UriParam(label = "common", enums = "CLIENT_SECRET,SHARED_KEY_CREDENTIAL,AZURE_IDENTITY,AZURE_SAS", + @UriParam(label = "common", enums = "CLIENT_SECRET,SHARED_KEY_CREDENTIAL,AZURE_IDENTITY,AZURE_SAS,SERVICE_CLIENT_INSTANCE", defaultValue = "CLIENT_SECRET") private CredentialType credentialType = CLIENT_SECRET;
