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/17 11:03:37 UTC

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

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

acosentino pushed a commit to branch more-headers-support-3
in repository https://gitbox.apache.org/repos/asf/camel-kamelets.git

commit 767a4bc8ed9da5682ba9c306224349cc6e615301
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Mon Oct 17 11:22:23 2022 +0200

    Added a Catalog Method showing the supported headers (specific for consumer, producer and common) for a Kamelet - Google BigQuery
    
    Signed-off-by: Andrea Cosentino <an...@gmail.com>
---
 .../apache/camel/kamelets/catalog/model/KameletPrefixSchemeEnum.java   | 3 ++-
 1 file changed, 2 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 2ec9717a..341cc42b 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
@@ -56,7 +56,8 @@ public enum KameletPrefixSchemeEnum {
     github_event("github-event", "github"),
     github_pr_comments("github-pullrequest-comment", "github"),
     github_pr("github-pullrequest", "github"),
-    github_tag("github-tag", "github");
+    github_tag("github-tag", "github"),
+    google_bigquery("google-bigquery", "google-bigquery");
 
     public final String name;
     public final String scheme;