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:38:18 UTC

[camel-kamelets] branch azure-servicebus-source created (now 9b9d7f26)

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

acosentino pushed a change to branch azure-servicebus-source
in repository https://gitbox.apache.org/repos/asf/camel-kamelets.git


      at 9b9d7f26 Convert all the parameters with multiple possible values to enum - Azure Servicebus Source

This branch includes the following new commits:

     new 810f5746 Convert all the parameters with multiple possible values to enum - Azure Servicebus Source
     new 9b9d7f26 Convert all the parameters with multiple possible values to enum - Azure Servicebus Source

The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.



[camel-kamelets] 01/02: Convert all the parameters with multiple possible values to enum - Azure Servicebus Source

Posted by ac...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

acosentino pushed a commit to branch azure-servicebus-source
in repository https://gitbox.apache.org/repos/asf/camel-kamelets.git

commit 810f57464b50cb0ffe505af106f711e6a931545d
Author: Andrea Cosentino <an...@gmail.com>
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 <an...@gmail.com>
---
 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.


[camel-kamelets] 02/02: Convert all the parameters with multiple possible values to enum - Azure Servicebus Source

Posted by ac...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

acosentino pushed a commit to branch azure-servicebus-source
in repository https://gitbox.apache.org/repos/asf/camel-kamelets.git

commit 9b9d7f26fc32239b0cfdac386883bef9732e00c0
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Tue Feb 7 14:37:03 2023 +0100

    Convert all the parameters with multiple possible values to enum - Azure Servicebus Source
    
    Signed-off-by: Andrea Cosentino <an...@gmail.com>
---
 .../src/main/resources/kamelets/azure-servicebus-source.kamelet.yaml   | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/library/camel-kamelets/src/main/resources/kamelets/azure-servicebus-source.kamelet.yaml b/library/camel-kamelets/src/main/resources/kamelets/azure-servicebus-source.kamelet.yaml
index 5e8f163a..c64df687 100644
--- a/library/camel-kamelets/src/main/resources/kamelets/azure-servicebus-source.kamelet.yaml
+++ b/library/camel-kamelets/src/main/resources/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.