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/25 13:31:24 UTC

[camel-kamelets] branch fix-859 created (now 365c808)

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

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


      at 365c808  AWS Kinesis Kamelets: Introduce optional overrideEndpoint and uriEndpointOverride for testing purpose - Source

This branch includes the following new commits:

     new 2fb380b  AWS Kinesis Kamelets: Introduce optional overrideEndpoint and uriEndpointOverride for testing purpose - Sink
     new c21fccb  AWS Kinesis Kamelets: Introduce optional overrideEndpoint and uriEndpointOverride for testing purpose - Sink
     new 4df19fd  AWS Kinesis Kamelets: Introduce optional overrideEndpoint and uriEndpointOverride for testing purpose - Source
     new 365c808  AWS Kinesis Kamelets: Introduce optional overrideEndpoint and uriEndpointOverride for testing purpose - Source

The 4 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] 04/04: AWS Kinesis Kamelets: Introduce optional overrideEndpoint and uriEndpointOverride for testing purpose - Source

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

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

commit 365c808b6a8f536a2c35dc9f3a56ffc001ee977a
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Fri Mar 25 14:30:18 2022 +0100

    AWS Kinesis Kamelets: Introduce optional overrideEndpoint and uriEndpointOverride for testing purpose - Source
---
 .../main/resources/kamelets/aws-kinesis-source.kamelet.yaml | 13 +++++++++++++
 1 file changed, 13 insertions(+)

diff --git a/library/camel-kamelets/src/main/resources/kamelets/aws-kinesis-source.kamelet.yaml b/library/camel-kamelets/src/main/resources/kamelets/aws-kinesis-source.kamelet.yaml
index 7988322..01f2640 100644
--- a/library/camel-kamelets/src/main/resources/kamelets/aws-kinesis-source.kamelet.yaml
+++ b/library/camel-kamelets/src/main/resources/kamelets/aws-kinesis-source.kamelet.yaml
@@ -73,6 +73,17 @@ spec:
         x-descriptors:
         - 'urn:alm:descriptor:com.tectonic.ui:checkbox'
         default: false
+      uriEndpointOverride:
+        title: Overwrite Endpoint URI
+        description: Set the overriding endpoint URI. This option needs to be used in combination with overrideEndpoint option.
+        type: string
+      overrideEndpoint:
+        title: Endpoint Overwrite
+        description: Set the need for overiding the endpoint URI. This option needs to be used in combination with uriEndpointOverride setting.
+        type: boolean
+        x-descriptors:
+          - 'urn:alm:descriptor:com.tectonic.ui:checkbox'
+        default: false
   types:
     out:
       mediaType: application/octet-stream
@@ -88,6 +99,8 @@ spec:
         accessKey: "{{?accessKey}}"
         region: "{{region}}"
         useDefaultCredentialsProvider: "{{useDefaultCredentialsProvider}}"
+        uriEndpointOverride: "{{?uriEndpointOverride}}"
+        overrideEndpoint: "{{overrideEndpoint}}"
       steps:
       - set-body:
           simple: "${body.data().asInputStream()}"

[camel-kamelets] 01/04: AWS Kinesis Kamelets: Introduce optional overrideEndpoint and uriEndpointOverride for testing purpose - Sink

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

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

commit 2fb380bdd2b164a440c5caa9e39550a9aaaca23f
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Fri Mar 25 14:28:04 2022 +0100

    AWS Kinesis Kamelets: Introduce optional overrideEndpoint and uriEndpointOverride for testing purpose - Sink
---
 kamelets/aws-kinesis-sink.kamelet.yaml | 13 +++++++++++++
 1 file changed, 13 insertions(+)

diff --git a/kamelets/aws-kinesis-sink.kamelet.yaml b/kamelets/aws-kinesis-sink.kamelet.yaml
index d9eea8d..0c67333 100644
--- a/kamelets/aws-kinesis-sink.kamelet.yaml
+++ b/kamelets/aws-kinesis-sink.kamelet.yaml
@@ -85,6 +85,17 @@ spec:
         x-descriptors:
         - 'urn:alm:descriptor:com.tectonic.ui:checkbox'
         default: false
+      uriEndpointOverride:
+        title: Overwrite Endpoint URI
+        description: Set the overriding endpoint URI. This option needs to be used in combination with overrideEndpoint option.
+        type: string
+      overrideEndpoint:
+        title: Endpoint Overwrite
+        description: Set the need for overiding the endpoint URI. This option needs to be used in combination with uriEndpointOverride setting.
+        type: boolean
+        x-descriptors:
+          - 'urn:alm:descriptor:com.tectonic.ui:checkbox'
+        default: false
   types:
     in:
       mediaType: application/octet-stream
@@ -132,3 +143,5 @@ spec:
             accessKey: "{{?accessKey}}"
             region: "{{region}}"
             useDefaultCredentialsProvider: "{{useDefaultCredentialsProvider}}"
+            uriEndpointOverride: "{{?uriEndpointOverride}}"
+            overrideEndpoint: "{{overrideEndpoint}}"

[camel-kamelets] 03/04: AWS Kinesis Kamelets: Introduce optional overrideEndpoint and uriEndpointOverride for testing purpose - Source

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

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

commit 4df19fdc3bee91285e07ff8f1c9123f29cad241a
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Fri Mar 25 14:29:38 2022 +0100

    AWS Kinesis Kamelets: Introduce optional overrideEndpoint and uriEndpointOverride for testing purpose - Source
---
 kamelets/aws-kinesis-source.kamelet.yaml | 13 +++++++++++++
 1 file changed, 13 insertions(+)

diff --git a/kamelets/aws-kinesis-source.kamelet.yaml b/kamelets/aws-kinesis-source.kamelet.yaml
index 7988322..01f2640 100644
--- a/kamelets/aws-kinesis-source.kamelet.yaml
+++ b/kamelets/aws-kinesis-source.kamelet.yaml
@@ -73,6 +73,17 @@ spec:
         x-descriptors:
         - 'urn:alm:descriptor:com.tectonic.ui:checkbox'
         default: false
+      uriEndpointOverride:
+        title: Overwrite Endpoint URI
+        description: Set the overriding endpoint URI. This option needs to be used in combination with overrideEndpoint option.
+        type: string
+      overrideEndpoint:
+        title: Endpoint Overwrite
+        description: Set the need for overiding the endpoint URI. This option needs to be used in combination with uriEndpointOverride setting.
+        type: boolean
+        x-descriptors:
+          - 'urn:alm:descriptor:com.tectonic.ui:checkbox'
+        default: false
   types:
     out:
       mediaType: application/octet-stream
@@ -88,6 +99,8 @@ spec:
         accessKey: "{{?accessKey}}"
         region: "{{region}}"
         useDefaultCredentialsProvider: "{{useDefaultCredentialsProvider}}"
+        uriEndpointOverride: "{{?uriEndpointOverride}}"
+        overrideEndpoint: "{{overrideEndpoint}}"
       steps:
       - set-body:
           simple: "${body.data().asInputStream()}"

[camel-kamelets] 02/04: AWS Kinesis Kamelets: Introduce optional overrideEndpoint and uriEndpointOverride for testing purpose - Sink

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

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

commit c21fccb4e14dd6a1da0ec0a6b6e34be4d35b5f50
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Fri Mar 25 14:28:48 2022 +0100

    AWS Kinesis Kamelets: Introduce optional overrideEndpoint and uriEndpointOverride for testing purpose - Sink
---
 .../main/resources/kamelets/aws-kinesis-sink.kamelet.yaml   | 13 +++++++++++++
 1 file changed, 13 insertions(+)

diff --git a/library/camel-kamelets/src/main/resources/kamelets/aws-kinesis-sink.kamelet.yaml b/library/camel-kamelets/src/main/resources/kamelets/aws-kinesis-sink.kamelet.yaml
index d9eea8d..0c67333 100644
--- a/library/camel-kamelets/src/main/resources/kamelets/aws-kinesis-sink.kamelet.yaml
+++ b/library/camel-kamelets/src/main/resources/kamelets/aws-kinesis-sink.kamelet.yaml
@@ -85,6 +85,17 @@ spec:
         x-descriptors:
         - 'urn:alm:descriptor:com.tectonic.ui:checkbox'
         default: false
+      uriEndpointOverride:
+        title: Overwrite Endpoint URI
+        description: Set the overriding endpoint URI. This option needs to be used in combination with overrideEndpoint option.
+        type: string
+      overrideEndpoint:
+        title: Endpoint Overwrite
+        description: Set the need for overiding the endpoint URI. This option needs to be used in combination with uriEndpointOverride setting.
+        type: boolean
+        x-descriptors:
+          - 'urn:alm:descriptor:com.tectonic.ui:checkbox'
+        default: false
   types:
     in:
       mediaType: application/octet-stream
@@ -132,3 +143,5 @@ spec:
             accessKey: "{{?accessKey}}"
             region: "{{region}}"
             useDefaultCredentialsProvider: "{{useDefaultCredentialsProvider}}"
+            uriEndpointOverride: "{{?uriEndpointOverride}}"
+            overrideEndpoint: "{{overrideEndpoint}}"