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 2022/10/14 12:47:46 UTC

[camel-kamelets] branch az-functions-headers-doc updated (896b2957 -> e0f3e217)

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

acosentino pushed a change to branch az-functions-headers-doc
in repository https://gitbox.apache.org/repos/asf/camel-kamelets.git


 discard 896b2957 Added a Catalog Method showing the supported headers (specific for consumer, producer and common) for a Kamelet - Azure Functions
    omit 8b84ce0b Added a Catalog Method showing the supported headers (specific for consumer, producer and common) for a Kamelet
    omit 3a11a263 Added a Catalog Method showing the supported headers (specific for consumer, producer and common) for a Kamelet
     add 3ecafab6 Added a Catalog Method showing the supported headers (specific for consumer, producer and common) for a Kamelet
     add 78a16a65 Added a Catalog Method showing the supported headers (specific for consumer, producer and common) for a Kamelet
     new e0f3e217 Added a Catalog Method showing the supported headers (specific for consumer, producer and common) for a Kamelet - Azure Functions

This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version.  This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:

 * -- * -- B -- O -- O -- O   (896b2957)
            \
             N -- N -- N   refs/heads/az-functions-headers-doc (e0f3e217)

You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.

Any revisions marked "omit" are not gone; other references still
refer to them.  Any revisions marked "discard" are gone forever.

The 1 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.


Summary of changes:


[camel-kamelets] 01/01: Added a Catalog Method showing the supported headers (specific for consumer, producer and common) for a Kamelet - Azure Functions

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

acosentino pushed a commit to branch az-functions-headers-doc
in repository https://gitbox.apache.org/repos/asf/camel-kamelets.git

commit e0f3e21750cb6d5ffafcff9dd60c5e745d2f00d1
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Fri Oct 14 14:46:56 2022 +0200

    Added a Catalog Method showing the supported headers (specific for consumer, producer and common) for a Kamelet - Azure Functions
    
    Signed-off-by: Andrea Cosentino <an...@gmail.com>
---
 .../apache/camel/kamelets/catalog/model/KameletPrefixSchemeEnum.java   | 3 ++-
 .../java/org/apache/camel/kamelets/catalog/KameletsCatalogTest.java    | 2 ++
 2 files changed, 4 insertions(+), 1 deletion(-)

diff --git a/library/camel-kamelets-catalog/src/main/java/org/apache/camel/kamelets/catalog/model/KameletPrefixSchemeEnum.java b/library/camel-kamelets-catalog/src/main/java/org/apache/camel/kamelets/catalog/model/KameletPrefixSchemeEnum.java
index 3ba37dbc..ba27db67 100644
--- a/library/camel-kamelets-catalog/src/main/java/org/apache/camel/kamelets/catalog/model/KameletPrefixSchemeEnum.java
+++ b/library/camel-kamelets-catalog/src/main/java/org/apache/camel/kamelets/catalog/model/KameletPrefixSchemeEnum.java
@@ -32,7 +32,8 @@ public enum KameletPrefixSchemeEnum {
     aws_sqs("aws-sqs","aws2-sqs"),
     aws_sqs_batch("aws-sqs-batch","aws2-sqs"),
     aws_sqs_fifo("aws-sqs-fifo","aws2-sqs"),
-    azure_eventhubs("azure-eventhubs","azure-eventhubs");
+    azure_eventhubs("azure-eventhubs","azure-eventhubs"),
+    azure_functions("azure-functions","vertx-http");
 
     public final String label;
     public final String prefix;
diff --git a/library/camel-kamelets-catalog/src/test/java/org/apache/camel/kamelets/catalog/KameletsCatalogTest.java b/library/camel-kamelets-catalog/src/test/java/org/apache/camel/kamelets/catalog/KameletsCatalogTest.java
index 8613e978..8f51c985 100644
--- a/library/camel-kamelets-catalog/src/test/java/org/apache/camel/kamelets/catalog/KameletsCatalogTest.java
+++ b/library/camel-kamelets-catalog/src/test/java/org/apache/camel/kamelets/catalog/KameletsCatalogTest.java
@@ -136,5 +136,7 @@ public class KameletsCatalogTest {
         assertEquals(0, headerNotExistent.size());
         List<ComponentModel.EndpointHeaderModel> headersAzureSink = catalog.getKameletSupportedHeaders("azure-eventhubs-sink");
         assertEquals(2, headersAzureSink.size());
+        List<ComponentModel.EndpointHeaderModel> headersAzureFunctionsSink = catalog.getKameletSupportedHeaders("azure-functions-sink");
+        assertEquals(8, headersAzureFunctionsSink.size());
     }
 }