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/03/18 13:07:08 UTC

[camel-kamelets] branch main updated (d55216f -> a24ce74)

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

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


    from d55216f  Regen
     new 10cd39c  Add Azure Storage Blob Changefeed Source Kamelet
     new 40413ed  Add Azure Storage Blob Changefeed Source Kamelet
     new 59e61a7  Add Azure Storage Blob Changefeed Source Kamelet
     new ae8915e  Add Azure Storage Blob Changefeed Source Kamelet
     new a24ce74  Add Azure Storage Blob Changefeed Source Kamelet

The 5 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:
 docs/modules/ROOT/nav.adoc                         |  1 +
 ...ure-storage-blob-changefeed-source.kamelet.yaml | 44 ++++------------------
 ...re-storage-blob-changefeed-source.kamelet.yaml} | 44 ++++------------------
 3 files changed, 17 insertions(+), 72 deletions(-)
 copy library/camel-kamelets/src/main/resources/kamelets/azure-storage-blob-source.kamelet.yaml => kamelets/azure-storage-blob-changefeed-source.kamelet.yaml (82%)
 copy library/camel-kamelets/src/main/resources/kamelets/{azure-storage-blob-source.kamelet.yaml => azure-storage-blob-changefeed-source.kamelet.yaml} (82%)

[camel-kamelets] 01/05: Add Azure Storage Blob Changefeed Source Kamelet

Posted by ac...@apache.org.
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 10cd39c1fc541f5d313d6772d08b5c36133eb247
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Fri Mar 18 13:46:43 2022 +0100

    Add Azure Storage Blob Changefeed Source Kamelet
---
 ...ure-storage-blob-changefeed-source.kamelet.yaml | 77 ++++++++++++++++++++++
 1 file changed, 77 insertions(+)

diff --git a/kamelets/azure-storage-blob-changefeed-source.kamelet.yaml b/kamelets/azure-storage-blob-changefeed-source.kamelet.yaml
new file mode 100644
index 0000000..ea2c966
--- /dev/null
+++ b/kamelets/azure-storage-blob-changefeed-source.kamelet.yaml
@@ -0,0 +1,77 @@
+# ---------------------------------------------------------------------------
+# Licensed to the Apache Software Foundation (ASF) under one or more
+# contributor license agreements.  See the NOTICE file distributed with
+# this work for additional information regarding copyright ownership.
+# The ASF licenses this file to You under the Apache License, Version 2.0
+# (the "License"); you may not use this file except in compliance with
+# the License.  You may obtain a copy of the License at
+#
+#      http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+# ---------------------------------------------------------------------------
+
+apiVersion: camel.apache.org/v1alpha1
+kind: Kamelet
+metadata:
+  name: azure-storage-blob-changefeed-source
+  annotations:
+    camel.apache.org/kamelet.support.level: "Preview"
+    camel.apache.org/catalog.version: "main-SNAPSHOT"
+    camel.apache.org/kamelet.icon: "data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB2aWV3Qm94PSIwIDAgOTEgODEiIGZpbGw9IiNmZmYiIGZpbGwtcnVsZT0iZXZlbm9kZCIgc3Ryb2tlPSIjMDAwIiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiPjx1c2UgeGxpbms6aHJlZj0iI0EiIHg9Ii41IiB5PSIuNSIvPjxzeW1ib2wgaWQ9IkEiIG92ZXJmbG93PSJ2aXNpYmxlIj48cGF0aCBkPSJNNjcuNTU4IDBIMjIuNDQxTDAgNDBsMjIuNDQxIDQwaDQ1LjExN0w5MCA0MCA2Ny [...]
+    camel.apache.org/provider: "Apache Software Foundation"
+    camel.apache.org/kamelet.group: "Azure Storage Blob Changefeed"
+  labels:
+    camel.apache.org/kamelet.type: "source"
+spec:
+  definition:
+    title: "Azure Storage Blob Changefeed Source"
+    description: |-
+      Consume Events from Azure Storage Blob Changefeed.
+    required:
+      - period
+      - accountName
+      - accessKey
+    type: object
+    properties:
+      period:
+        title: Period between Polls
+        description: The interval between fetches to the Azure Storage Container in milliseconds
+        type: integer
+        default: 10000
+      accountName:
+        title: Account Name
+        description: The Azure Storage Blob account name.
+        type: string
+        x-descriptors:
+        - urn:camel:group:credentials
+      accessKey:
+        title: Access Key
+        description: The Azure Storage Blob access Key.
+        type: string
+        format: password
+        x-descriptors:
+        - urn:alm:descriptor:com.tectonic.ui:password
+        - urn:camel:group:credentials
+  dependencies:
+    - "camel:azure-storage-blob"
+    - "camel:kamelet"
+    - "camel:core"
+    - "camel:jsonpath"
+    - "camel:timer"
+  template:
+    from:
+      uri: "timer:azure-storage-blob-stream"
+      parameters:
+        period: "{{period}}"
+      steps:
+      - to:
+          uri: "azure-storage-blob:{{accountName}}"
+          parameters:
+            operation: "getChangeFeed"
+            accessKey: "{{accessKey}}"
+      - to: "kamelet:sink"

[camel-kamelets] 04/05: Add Azure Storage Blob Changefeed Source Kamelet

Posted by ac...@apache.org.
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 ae8915e3e9a4c90673f5087dcb82def2db992459
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Fri Mar 18 13:49:30 2022 +0100

    Add Azure Storage Blob Changefeed Source Kamelet
---
 .../kamelets/azure-storage-blob-changefeed-source.kamelet.yaml        | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/library/camel-kamelets/src/main/resources/kamelets/azure-storage-blob-changefeed-source.kamelet.yaml b/library/camel-kamelets/src/main/resources/kamelets/azure-storage-blob-changefeed-source.kamelet.yaml
index ea2c966..5cf324e 100644
--- a/library/camel-kamelets/src/main/resources/kamelets/azure-storage-blob-changefeed-source.kamelet.yaml
+++ b/library/camel-kamelets/src/main/resources/kamelets/azure-storage-blob-changefeed-source.kamelet.yaml
@@ -31,7 +31,7 @@ spec:
   definition:
     title: "Azure Storage Blob Changefeed Source"
     description: |-
-      Consume Events from Azure Storage Blob Changefeed.
+      Consume Events from Azure Storage Blob Change feed.
     required:
       - period
       - accountName
@@ -40,7 +40,7 @@ spec:
     properties:
       period:
         title: Period between Polls
-        description: The interval between fetches to the Azure Storage Container in milliseconds
+        description: The interval between fetches to the Azure Storage Changefeed in milliseconds
         type: integer
         default: 10000
       accountName:

[camel-kamelets] 02/05: Add Azure Storage Blob Changefeed Source Kamelet

Posted by ac...@apache.org.
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 40413edef72294930b03c99175c66a95471b520b
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Fri Mar 18 13:46:53 2022 +0100

    Add Azure Storage Blob Changefeed Source Kamelet
---
 ...ure-storage-blob-changefeed-source.kamelet.yaml | 77 ++++++++++++++++++++++
 1 file changed, 77 insertions(+)

diff --git a/library/camel-kamelets/src/main/resources/kamelets/azure-storage-blob-changefeed-source.kamelet.yaml b/library/camel-kamelets/src/main/resources/kamelets/azure-storage-blob-changefeed-source.kamelet.yaml
new file mode 100644
index 0000000..ea2c966
--- /dev/null
+++ b/library/camel-kamelets/src/main/resources/kamelets/azure-storage-blob-changefeed-source.kamelet.yaml
@@ -0,0 +1,77 @@
+# ---------------------------------------------------------------------------
+# Licensed to the Apache Software Foundation (ASF) under one or more
+# contributor license agreements.  See the NOTICE file distributed with
+# this work for additional information regarding copyright ownership.
+# The ASF licenses this file to You under the Apache License, Version 2.0
+# (the "License"); you may not use this file except in compliance with
+# the License.  You may obtain a copy of the License at
+#
+#      http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+# ---------------------------------------------------------------------------
+
+apiVersion: camel.apache.org/v1alpha1
+kind: Kamelet
+metadata:
+  name: azure-storage-blob-changefeed-source
+  annotations:
+    camel.apache.org/kamelet.support.level: "Preview"
+    camel.apache.org/catalog.version: "main-SNAPSHOT"
+    camel.apache.org/kamelet.icon: "data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB2aWV3Qm94PSIwIDAgOTEgODEiIGZpbGw9IiNmZmYiIGZpbGwtcnVsZT0iZXZlbm9kZCIgc3Ryb2tlPSIjMDAwIiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiPjx1c2UgeGxpbms6aHJlZj0iI0EiIHg9Ii41IiB5PSIuNSIvPjxzeW1ib2wgaWQ9IkEiIG92ZXJmbG93PSJ2aXNpYmxlIj48cGF0aCBkPSJNNjcuNTU4IDBIMjIuNDQxTDAgNDBsMjIuNDQxIDQwaDQ1LjExN0w5MCA0MCA2Ny [...]
+    camel.apache.org/provider: "Apache Software Foundation"
+    camel.apache.org/kamelet.group: "Azure Storage Blob Changefeed"
+  labels:
+    camel.apache.org/kamelet.type: "source"
+spec:
+  definition:
+    title: "Azure Storage Blob Changefeed Source"
+    description: |-
+      Consume Events from Azure Storage Blob Changefeed.
+    required:
+      - period
+      - accountName
+      - accessKey
+    type: object
+    properties:
+      period:
+        title: Period between Polls
+        description: The interval between fetches to the Azure Storage Container in milliseconds
+        type: integer
+        default: 10000
+      accountName:
+        title: Account Name
+        description: The Azure Storage Blob account name.
+        type: string
+        x-descriptors:
+        - urn:camel:group:credentials
+      accessKey:
+        title: Access Key
+        description: The Azure Storage Blob access Key.
+        type: string
+        format: password
+        x-descriptors:
+        - urn:alm:descriptor:com.tectonic.ui:password
+        - urn:camel:group:credentials
+  dependencies:
+    - "camel:azure-storage-blob"
+    - "camel:kamelet"
+    - "camel:core"
+    - "camel:jsonpath"
+    - "camel:timer"
+  template:
+    from:
+      uri: "timer:azure-storage-blob-stream"
+      parameters:
+        period: "{{period}}"
+      steps:
+      - to:
+          uri: "azure-storage-blob:{{accountName}}"
+          parameters:
+            operation: "getChangeFeed"
+            accessKey: "{{accessKey}}"
+      - to: "kamelet:sink"

[camel-kamelets] 03/05: Add Azure Storage Blob Changefeed Source Kamelet

Posted by ac...@apache.org.
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 59e61a71fe239df60c73407b3f4bc3ed2cc4f0a1
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Fri Mar 18 13:47:33 2022 +0100

    Add Azure Storage Blob Changefeed Source Kamelet
---
 kamelets/azure-storage-blob-changefeed-source.kamelet.yaml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/kamelets/azure-storage-blob-changefeed-source.kamelet.yaml b/kamelets/azure-storage-blob-changefeed-source.kamelet.yaml
index ea2c966..5cf324e 100644
--- a/kamelets/azure-storage-blob-changefeed-source.kamelet.yaml
+++ b/kamelets/azure-storage-blob-changefeed-source.kamelet.yaml
@@ -31,7 +31,7 @@ spec:
   definition:
     title: "Azure Storage Blob Changefeed Source"
     description: |-
-      Consume Events from Azure Storage Blob Changefeed.
+      Consume Events from Azure Storage Blob Change feed.
     required:
       - period
       - accountName
@@ -40,7 +40,7 @@ spec:
     properties:
       period:
         title: Period between Polls
-        description: The interval between fetches to the Azure Storage Container in milliseconds
+        description: The interval between fetches to the Azure Storage Changefeed in milliseconds
         type: integer
         default: 10000
       accountName:

[camel-kamelets] 05/05: Add Azure Storage Blob Changefeed Source Kamelet

Posted by ac...@apache.org.
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 a24ce7414a2ba1cfd20d2ce0339a624d50a04662
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Fri Mar 18 13:58:53 2022 +0100

    Add Azure Storage Blob Changefeed Source Kamelet
---
 docs/modules/ROOT/nav.adoc | 1 +
 1 file changed, 1 insertion(+)

diff --git a/docs/modules/ROOT/nav.adoc b/docs/modules/ROOT/nav.adoc
index 151d12b..9c89830 100644
--- a/docs/modules/ROOT/nav.adoc
+++ b/docs/modules/ROOT/nav.adoc
@@ -28,6 +28,7 @@
 * xref:azure-eventhubs-source.adoc[]
 * xref:azure-servicebus-sink.adoc[]
 * xref:azure-servicebus-source.adoc[]
+* xref:azure-storage-blob-changefeed-source.adoc[]
 * xref:azure-storage-blob-sink.adoc[]
 * xref:azure-storage-blob-source.adoc[]
 * xref:azure-storage-queue-sink.adoc[]