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 2021/07/20 12:32:20 UTC

[camel-kamelets] branch ignorebody created (now 6ed9bd6)

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

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


      at 6ed9bd6  Added IgnoreBody parameter to AWS S3 Source Kamelet

This branch includes the following new commits:

     new 95cac3d  Added IgnoreBody parameter to AWS S3 Source Kamelet
     new 738a902  Added IgnoreBody parameter to AWS S3 Source Kamelet
     new 4345c42  Added IgnoreBody parameter to AWS S3 Source Kamelet
     new 819701f  Added IgnoreBody parameter to AWS S3 Source Kamelet
     new 6ed9bd6  Added IgnoreBody parameter to AWS S3 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.


[camel-kamelets] 02/05: Added IgnoreBody parameter to AWS S3 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 ignorebody
in repository https://gitbox.apache.org/repos/asf/camel-kamelets.git

commit 738a9025647b4474349c5038af04a980a0d52b25
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Tue Jul 20 14:27:13 2021 +0200

    Added IgnoreBody parameter to AWS S3 Source Kamelet
---
 .../src/main/resources/kamelets/aws-s3-source.kamelet.yaml        | 8 ++++++++
 1 file changed, 8 insertions(+)

diff --git a/library/camel-kamelets/src/main/resources/kamelets/aws-s3-source.kamelet.yaml b/library/camel-kamelets/src/main/resources/kamelets/aws-s3-source.kamelet.yaml
index a94a882..a7df07c 100644
--- a/library/camel-kamelets/src/main/resources/kamelets/aws-s3-source.kamelet.yaml
+++ b/library/camel-kamelets/src/main/resources/kamelets/aws-s3-source.kamelet.yaml
@@ -71,6 +71,13 @@ spec:
         description: The AWS S3 bucket prefix to consider while searching
         type: string
         example: 'folder/'
+      ignoreBody:
+        title: Ignore Body
+        description: If it is true, the S3 Object Body will be ignored completely, if it is set to false the S3 Object will be put in the body. Setting this to true, will override any behavior defined by includeBody option.
+        type: boolean
+        x-descriptors:
+        - 'urn:alm:descriptor:com.tectonic.ui:checkbox'
+        default: false
   dependencies:
     - "camel:aws2-s3"
     - "camel:kamelet"
@@ -83,6 +90,7 @@ spec:
         accessKey: "{{accessKey}}"
         region: "{{region}}"
         includeBody: "{{includeBody}}"
+        includeBody: "{{ignoreBody}}"
         deleteAfterRead: "{{deleteAfterRead}}"
         prefix: "{{?prefix}}"
       steps:

[camel-kamelets] 05/05: Added IgnoreBody parameter to AWS S3 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 ignorebody
in repository https://gitbox.apache.org/repos/asf/camel-kamelets.git

commit 6ed9bd63e0e7611e98a64ed1f68adf9a891a90f4
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Tue Jul 20 14:30:40 2021 +0200

    Added IgnoreBody parameter to AWS S3 Source Kamelet
---
 .../src/main/resources/kamelets/aws-s3-source.kamelet.yaml              | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/library/camel-kamelets/src/main/resources/kamelets/aws-s3-source.kamelet.yaml b/library/camel-kamelets/src/main/resources/kamelets/aws-s3-source.kamelet.yaml
index a7df07c..88f2ede 100644
--- a/library/camel-kamelets/src/main/resources/kamelets/aws-s3-source.kamelet.yaml
+++ b/library/camel-kamelets/src/main/resources/kamelets/aws-s3-source.kamelet.yaml
@@ -90,7 +90,7 @@ spec:
         accessKey: "{{accessKey}}"
         region: "{{region}}"
         includeBody: "{{includeBody}}"
-        includeBody: "{{ignoreBody}}"
+        ignoreBody: "{{ignoreBody}}"
         deleteAfterRead: "{{deleteAfterRead}}"
         prefix: "{{?prefix}}"
       steps:

[camel-kamelets] 04/05: Added IgnoreBody parameter to AWS S3 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 ignorebody
in repository https://gitbox.apache.org/repos/asf/camel-kamelets.git

commit 819701fd8752b9dbcea9fb21790fb7e75e15b2f6
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Tue Jul 20 14:29:08 2021 +0200

    Added IgnoreBody parameter to AWS S3 Source Kamelet
---
 aws-s3-source.kamelet.yaml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/aws-s3-source.kamelet.yaml b/aws-s3-source.kamelet.yaml
index a7df07c..88f2ede 100644
--- a/aws-s3-source.kamelet.yaml
+++ b/aws-s3-source.kamelet.yaml
@@ -90,7 +90,7 @@ spec:
         accessKey: "{{accessKey}}"
         region: "{{region}}"
         includeBody: "{{includeBody}}"
-        includeBody: "{{ignoreBody}}"
+        ignoreBody: "{{ignoreBody}}"
         deleteAfterRead: "{{deleteAfterRead}}"
         prefix: "{{?prefix}}"
       steps:

[camel-kamelets] 03/05: Added IgnoreBody parameter to AWS S3 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 ignorebody
in repository https://gitbox.apache.org/repos/asf/camel-kamelets.git

commit 4345c4226c732ac428b8e30e65b1352e850366f3
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Tue Jul 20 14:27:59 2021 +0200

    Added IgnoreBody parameter to AWS S3 Source Kamelet
---
 docs/modules/ROOT/pages/aws-s3-source.adoc | 1 +
 1 file changed, 1 insertion(+)

diff --git a/docs/modules/ROOT/pages/aws-s3-source.adoc b/docs/modules/ROOT/pages/aws-s3-source.adoc
index 901911f..d08ad61 100644
--- a/docs/modules/ROOT/pages/aws-s3-source.adoc
+++ b/docs/modules/ROOT/pages/aws-s3-source.adoc
@@ -19,6 +19,7 @@ The following table summarizes the configuration options available for the `aws-
 | *secretKey {empty}* *| Secret Key| The secret key obtained from AWS| string| | 
 | autoCreateBucket| Autocreate Bucket| Setting the autocreation of the S3 bucket bucketName.| boolean| `false`| 
 | deleteAfterRead| Auto-delete Objects| Delete objects after consuming them| boolean| `true`| 
+| ignoreBody| Ignore Body| If it is true, the S3 Object Body will be ignored completely, if it is set to false the S3 Object will be put in the body. Setting this to true, will override any behavior defined by includeBody option.| boolean| `false`| 
 | includeBody| Include Body| If it is true, the exchange will be consumed and put into the body and closed. If false the S3Object stream will be put raw into the body and the headers will be set with the S3 object metadata.| boolean| `true`| 
 | prefix| Prefix| The AWS S3 bucket prefix to consider while searching| string| | `"folder/"`
 |===

[camel-kamelets] 01/05: Added IgnoreBody parameter to AWS S3 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 ignorebody
in repository https://gitbox.apache.org/repos/asf/camel-kamelets.git

commit 95cac3dc9dcda33be0ef3ce8f594f2515ae52873
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Tue Jul 20 14:26:15 2021 +0200

    Added IgnoreBody parameter to AWS S3 Source Kamelet
---
 aws-s3-source.kamelet.yaml | 8 ++++++++
 1 file changed, 8 insertions(+)

diff --git a/aws-s3-source.kamelet.yaml b/aws-s3-source.kamelet.yaml
index a94a882..a7df07c 100644
--- a/aws-s3-source.kamelet.yaml
+++ b/aws-s3-source.kamelet.yaml
@@ -71,6 +71,13 @@ spec:
         description: The AWS S3 bucket prefix to consider while searching
         type: string
         example: 'folder/'
+      ignoreBody:
+        title: Ignore Body
+        description: If it is true, the S3 Object Body will be ignored completely, if it is set to false the S3 Object will be put in the body. Setting this to true, will override any behavior defined by includeBody option.
+        type: boolean
+        x-descriptors:
+        - 'urn:alm:descriptor:com.tectonic.ui:checkbox'
+        default: false
   dependencies:
     - "camel:aws2-s3"
     - "camel:kamelet"
@@ -83,6 +90,7 @@ spec:
         accessKey: "{{accessKey}}"
         region: "{{region}}"
         includeBody: "{{includeBody}}"
+        includeBody: "{{ignoreBody}}"
         deleteAfterRead: "{{deleteAfterRead}}"
         prefix: "{{?prefix}}"
       steps: