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-kamelets.git

commit b41bba47042e954618f83b4b9291cd02d60087c0
Author: Andrea Cosentino <[email protected]>
AuthorDate: Tue Feb 7 14:36:23 2023 +0100

    Convert all the parameters with multiple possible values to enum - Azure 
Servicebus Source
    
    Signed-off-by: Andrea Cosentino <[email protected]>
---
 kamelets/azure-servicebus-source.kamelet.yaml | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/kamelets/azure-servicebus-source.kamelet.yaml 
b/kamelets/azure-servicebus-source.kamelet.yaml
index 5e8f163a..c64df687 100644
--- a/kamelets/azure-servicebus-source.kamelet.yaml
+++ b/kamelets/azure-servicebus-source.kamelet.yaml
@@ -53,9 +53,10 @@ spec:
         - urn:camel:group:credentials
       serviceBusReceiveMode:
         title: Servicebus Receive Mode
-        description: Sets the receive mode for the receiver, possible values 
are PEEK_LOCK and RECEIVE_AND_DELETE
+        description: Sets the receive mode for the receiver
         type: string
         default: PEEK_LOCK
+        enum: ["PEEK_LOCK", "RECEIVE_AND_DELETE"]
       subscriptionName:
         title: Subscription Name
         description: Sets the name of the subscription in the topic to listen 
to. This parameter is mandatory in case of topic.

Reply via email to