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/02/07 13:19:57 UTC

[camel-kamelets] 01/04: Convert all the parameters with multiple possible values to enum - Azure Storage Blob Sink

This is an automated email from the ASF dual-hosted git repository.

acosentino pushed a commit to branch azure-storage-blob-sink-source-3.20.x
in repository https://gitbox.apache.org/repos/asf/camel-kamelets.git

commit 89f05cd1fe937859aeab445992d3d97dd7d64299
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Tue Feb 7 14:15:41 2023 +0100

    Convert all the parameters with multiple possible values to enum - Azure Storage Blob Sink
    
    Signed-off-by: Andrea Cosentino <an...@gmail.com>
---
 kamelets/azure-storage-blob-sink.kamelet.yaml | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/kamelets/azure-storage-blob-sink.kamelet.yaml b/kamelets/azure-storage-blob-sink.kamelet.yaml
index 5fdc4b5b..c72d10a2 100644
--- a/kamelets/azure-storage-blob-sink.kamelet.yaml
+++ b/kamelets/azure-storage-blob-sink.kamelet.yaml
@@ -65,9 +65,10 @@ spec:
         default: uploadBlockBlob
       credentialType:
         title: Credential Type
-        description: Determines the credential strategy to adopt. Possible values are SHARED_ACCOUNT_KEY, SHARED_KEY_CREDENTIAL and AZURE_IDENTITY
+        description: Determines the credential strategy to adopt. 
         type: string
         default: SHARED_ACCOUNT_KEY
+        enum: ["SHARED_ACCOUNT_KEY", "SHARED_KEY_CREDENTIAL", "AZURE_IDENTITY"]
   dependencies:
     - "camel:core"
     - "camel:azure-storage-blob"