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 2023/03/10 09:06:11 UTC

[camel-kamelets] branch main updated (4c6a3d1e -> 8bfb9496)

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 4c6a3d1e Updated CHANGELOG.md
     new fd1ad815 FTP source - it creates a new folder (if doesn't exist) instead of throwing an exception
     new 2272c217 FTP sink - Add autocreate option for consistency with the source
     new 09a8ab8d SFTP source - it creates a new folder (if doesn't exist) instead of throwing an exception
     new e52be0ac SFTP sink - Add autocreate option for consistency with the source
     new 064617a2 Regen
     new 2d7559a5 FTP source - it creates a new folder (if doesn't exist) instead of throwing an exception
     new 40198623 FTP sink - Add autocreate option for consistency with the source
     new 8bfb9496 Regen

The 8 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:
 kamelets/ftp-sink.kamelet.yaml                                    | 8 ++++++++
 kamelets/ftp-source.kamelet.yaml                                  | 8 ++++++++
 kamelets/sftp-sink.kamelet.yaml                                   | 4 ++--
 kamelets/sftp-source.kamelet.yaml                                 | 4 ++--
 .../src/main/resources/kamelets/ftp-sink.kamelet.yaml             | 8 ++++++++
 .../src/main/resources/kamelets/ftp-source.kamelet.yaml           | 8 ++++++++
 .../src/main/resources/kamelets/sftp-sink.kamelet.yaml            | 4 ++--
 .../src/main/resources/kamelets/sftp-source.kamelet.yaml          | 4 ++--
 8 files changed, 40 insertions(+), 8 deletions(-)


[camel-kamelets] 06/08: FTP source - it creates a new folder (if doesn't exist) instead of throwing an exception

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 2d7559a59d7bf8d61ac12e1571e7341d5e3b568e
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Fri Mar 10 09:47:38 2023 +0100

    FTP source - it creates a new folder (if doesn't exist) instead of throwing an exception
    
    Signed-off-by: Andrea Cosentino <an...@gmail.com>
---
 kamelets/ftp-source.kamelet.yaml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/kamelets/ftp-source.kamelet.yaml b/kamelets/ftp-source.kamelet.yaml
index c74024be..88f2f981 100644
--- a/kamelets/ftp-source.kamelet.yaml
+++ b/kamelets/ftp-source.kamelet.yaml
@@ -95,7 +95,7 @@ spec:
         default: false
         x-descriptors:
         - 'urn:alm:descriptor:com.tectonic.ui:checkbox'
-      autocreate:
+      autoCreate:
         title: Autocreate Missing Directories
         description: Automatically create starting directory.
         type: boolean
@@ -115,7 +115,7 @@ spec:
         recursive: "{{recursive}}"
         idempotent: "{{idempotent}}"
         binary: "{{binary}}"
-        autocreate: "{{autocreate}}"
+        autoCreate: "{{autoCreate}}"
       steps:
       - set-header:
           name: file


[camel-kamelets] 03/08: SFTP source - it creates a new folder (if doesn't exist) instead of throwing an exception

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 09a8ab8d6c701bda51f57aefd074d00798d3b306
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Fri Mar 10 09:44:57 2023 +0100

    SFTP source - it creates a new folder (if doesn't exist) instead of throwing an exception
    
    Signed-off-by: Andrea Cosentino <an...@gmail.com>
---
 kamelets/sftp-source.kamelet.yaml                                 | 2 +-
 .../src/main/resources/kamelets/ftp-sink.kamelet.yaml             | 8 ++++++++
 .../src/main/resources/kamelets/ftp-source.kamelet.yaml           | 8 ++++++++
 3 files changed, 17 insertions(+), 1 deletion(-)

diff --git a/kamelets/sftp-source.kamelet.yaml b/kamelets/sftp-source.kamelet.yaml
index b809fe33..bb8b2453 100644
--- a/kamelets/sftp-source.kamelet.yaml
+++ b/kamelets/sftp-source.kamelet.yaml
@@ -125,7 +125,7 @@ spec:
         default: true
         x-descriptors:
         - 'urn:alm:descriptor:com.tectonic.ui:checkbox'
-      autocreate:
+      autoCreate:
         title: Autocreate Missing Directories
         description: Automatically create starting directory.
         type: boolean
diff --git a/library/camel-kamelets/src/main/resources/kamelets/ftp-sink.kamelet.yaml b/library/camel-kamelets/src/main/resources/kamelets/ftp-sink.kamelet.yaml
index 1e81ac59..0b8d8c8e 100644
--- a/library/camel-kamelets/src/main/resources/kamelets/ftp-sink.kamelet.yaml
+++ b/library/camel-kamelets/src/main/resources/kamelets/ftp-sink.kamelet.yaml
@@ -91,6 +91,13 @@ spec:
         default: false
         x-descriptors:
         - 'urn:alm:descriptor:com.tectonic.ui:checkbox'
+      autocreate:
+        title: Autocreate Missing Directories
+        description: Automatically create the directory the files should be written to.
+        type: boolean
+        default: true
+        x-descriptors:
+        - 'urn:alm:descriptor:com.tectonic.ui:checkbox'
   dependencies:
     - "camel:ftp"
     - "camel:core"
@@ -118,3 +125,4 @@ spec:
             passiveMode: "{{passiveMode}}"
             fileExist: "{{fileExist}}"
             binary: "{{binary}}"
+            autocreate: "{{autocreate}}"
diff --git a/library/camel-kamelets/src/main/resources/kamelets/ftp-source.kamelet.yaml b/library/camel-kamelets/src/main/resources/kamelets/ftp-source.kamelet.yaml
index b9191105..c74024be 100644
--- a/library/camel-kamelets/src/main/resources/kamelets/ftp-source.kamelet.yaml
+++ b/library/camel-kamelets/src/main/resources/kamelets/ftp-source.kamelet.yaml
@@ -95,6 +95,13 @@ spec:
         default: false
         x-descriptors:
         - 'urn:alm:descriptor:com.tectonic.ui:checkbox'
+      autocreate:
+        title: Autocreate Missing Directories
+        description: Automatically create starting directory.
+        type: boolean
+        default: true
+        x-descriptors:
+        - 'urn:alm:descriptor:com.tectonic.ui:checkbox'
   dependencies:
     - "camel:ftp"
     - "camel:core"
@@ -108,6 +115,7 @@ spec:
         recursive: "{{recursive}}"
         idempotent: "{{idempotent}}"
         binary: "{{binary}}"
+        autocreate: "{{autocreate}}"
       steps:
       - set-header:
           name: file


[camel-kamelets] 01/08: FTP source - it creates a new folder (if doesn't exist) instead of throwing an exception

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 fd1ad815df3341b93ecd8c7fa88d8a85580497be
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Fri Mar 10 09:39:53 2023 +0100

    FTP source - it creates a new folder (if doesn't exist) instead of throwing an exception
    
    Signed-off-by: Andrea Cosentino <an...@gmail.com>
---
 kamelets/ftp-source.kamelet.yaml | 8 ++++++++
 1 file changed, 8 insertions(+)

diff --git a/kamelets/ftp-source.kamelet.yaml b/kamelets/ftp-source.kamelet.yaml
index b9191105..c74024be 100644
--- a/kamelets/ftp-source.kamelet.yaml
+++ b/kamelets/ftp-source.kamelet.yaml
@@ -95,6 +95,13 @@ spec:
         default: false
         x-descriptors:
         - 'urn:alm:descriptor:com.tectonic.ui:checkbox'
+      autocreate:
+        title: Autocreate Missing Directories
+        description: Automatically create starting directory.
+        type: boolean
+        default: true
+        x-descriptors:
+        - 'urn:alm:descriptor:com.tectonic.ui:checkbox'
   dependencies:
     - "camel:ftp"
     - "camel:core"
@@ -108,6 +115,7 @@ spec:
         recursive: "{{recursive}}"
         idempotent: "{{idempotent}}"
         binary: "{{binary}}"
+        autocreate: "{{autocreate}}"
       steps:
       - set-header:
           name: file


[camel-kamelets] 07/08: FTP sink - Add autocreate option for consistency with the source

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 40198623a77040d12b0b49e4a5f8fc4b27ba19b6
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Fri Mar 10 09:50:49 2023 +0100

    FTP sink - Add autocreate option for consistency with the source
    
    Signed-off-by: Andrea Cosentino <an...@gmail.com>
---
 kamelets/ftp-sink.kamelet.yaml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/kamelets/ftp-sink.kamelet.yaml b/kamelets/ftp-sink.kamelet.yaml
index 0b8d8c8e..0e451477 100644
--- a/kamelets/ftp-sink.kamelet.yaml
+++ b/kamelets/ftp-sink.kamelet.yaml
@@ -91,7 +91,7 @@ spec:
         default: false
         x-descriptors:
         - 'urn:alm:descriptor:com.tectonic.ui:checkbox'
-      autocreate:
+      autoCreate:
         title: Autocreate Missing Directories
         description: Automatically create the directory the files should be written to.
         type: boolean
@@ -125,4 +125,4 @@ spec:
             passiveMode: "{{passiveMode}}"
             fileExist: "{{fileExist}}"
             binary: "{{binary}}"
-            autocreate: "{{autocreate}}"
+            autoCreate: "{{autoCreate}}"


[camel-kamelets] 02/08: FTP sink - Add autocreate option for consistency with the source

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 2272c217125b46239733c9ecb8b26a7ba9cdf8b1
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Fri Mar 10 09:40:53 2023 +0100

    FTP sink - Add autocreate option for consistency with the source
    
    Signed-off-by: Andrea Cosentino <an...@gmail.com>
---
 kamelets/ftp-sink.kamelet.yaml | 8 ++++++++
 1 file changed, 8 insertions(+)

diff --git a/kamelets/ftp-sink.kamelet.yaml b/kamelets/ftp-sink.kamelet.yaml
index 1e81ac59..0b8d8c8e 100644
--- a/kamelets/ftp-sink.kamelet.yaml
+++ b/kamelets/ftp-sink.kamelet.yaml
@@ -91,6 +91,13 @@ spec:
         default: false
         x-descriptors:
         - 'urn:alm:descriptor:com.tectonic.ui:checkbox'
+      autocreate:
+        title: Autocreate Missing Directories
+        description: Automatically create the directory the files should be written to.
+        type: boolean
+        default: true
+        x-descriptors:
+        - 'urn:alm:descriptor:com.tectonic.ui:checkbox'
   dependencies:
     - "camel:ftp"
     - "camel:core"
@@ -118,3 +125,4 @@ spec:
             passiveMode: "{{passiveMode}}"
             fileExist: "{{fileExist}}"
             binary: "{{binary}}"
+            autocreate: "{{autocreate}}"


[camel-kamelets] 05/08: Regen

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 064617a2f65d9d11235b21e807e2682ace368362
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Fri Mar 10 09:47:05 2023 +0100

    Regen
    
    Signed-off-by: Andrea Cosentino <an...@gmail.com>
---
 .../camel-kamelets/src/main/resources/kamelets/sftp-sink.kamelet.yaml | 4 ++--
 .../src/main/resources/kamelets/sftp-source.kamelet.yaml              | 4 ++--
 2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/library/camel-kamelets/src/main/resources/kamelets/sftp-sink.kamelet.yaml b/library/camel-kamelets/src/main/resources/kamelets/sftp-sink.kamelet.yaml
index bdc5ccc6..77b26a70 100644
--- a/library/camel-kamelets/src/main/resources/kamelets/sftp-sink.kamelet.yaml
+++ b/library/camel-kamelets/src/main/resources/kamelets/sftp-sink.kamelet.yaml
@@ -114,7 +114,7 @@ spec:
         default: true
         x-descriptors:
         - 'urn:alm:descriptor:com.tectonic.ui:checkbox'
-      autocreate:
+      autoCreate:
         title: Autocreate Missing Directories
         description: Automatically create the directory the files should be written to.
         type: boolean
@@ -154,4 +154,4 @@ spec:
             passiveMode: "{{passiveMode}}"
             fileExist: "{{fileExist}}"
             binary: "{{binary}}"
-            autocreate: "{{autocreate}}"
+            autoCreate: "{{autoCreate}}"
diff --git a/library/camel-kamelets/src/main/resources/kamelets/sftp-source.kamelet.yaml b/library/camel-kamelets/src/main/resources/kamelets/sftp-source.kamelet.yaml
index b809fe33..cee95381 100644
--- a/library/camel-kamelets/src/main/resources/kamelets/sftp-source.kamelet.yaml
+++ b/library/camel-kamelets/src/main/resources/kamelets/sftp-source.kamelet.yaml
@@ -125,7 +125,7 @@ spec:
         default: true
         x-descriptors:
         - 'urn:alm:descriptor:com.tectonic.ui:checkbox'
-      autocreate:
+      autoCreate:
         title: Autocreate Missing Directories
         description: Automatically create starting directory.
         type: boolean
@@ -152,7 +152,7 @@ spec:
         idempotent: "{{idempotent}}"
         ignoreFileNotFoundOrPermissionError: "{{ignoreFileNotFoundOrPermissionError}}"
         binary: "{{binary}}"
-        autocreate: "{{autocreate}}"
+        autoCreate: "{{autoCreate}}"
       steps:
       - set-body:
           simple: "${body.getBody()}"


[camel-kamelets] 08/08: Regen

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 8bfb94960c07d909c770d5568fb67acca0c9a693
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Fri Mar 10 09:53:08 2023 +0100

    Regen
    
    Signed-off-by: Andrea Cosentino <an...@gmail.com>
---
 .../camel-kamelets/src/main/resources/kamelets/ftp-sink.kamelet.yaml  | 4 ++--
 .../src/main/resources/kamelets/ftp-source.kamelet.yaml               | 4 ++--
 2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/library/camel-kamelets/src/main/resources/kamelets/ftp-sink.kamelet.yaml b/library/camel-kamelets/src/main/resources/kamelets/ftp-sink.kamelet.yaml
index 0b8d8c8e..0e451477 100644
--- a/library/camel-kamelets/src/main/resources/kamelets/ftp-sink.kamelet.yaml
+++ b/library/camel-kamelets/src/main/resources/kamelets/ftp-sink.kamelet.yaml
@@ -91,7 +91,7 @@ spec:
         default: false
         x-descriptors:
         - 'urn:alm:descriptor:com.tectonic.ui:checkbox'
-      autocreate:
+      autoCreate:
         title: Autocreate Missing Directories
         description: Automatically create the directory the files should be written to.
         type: boolean
@@ -125,4 +125,4 @@ spec:
             passiveMode: "{{passiveMode}}"
             fileExist: "{{fileExist}}"
             binary: "{{binary}}"
-            autocreate: "{{autocreate}}"
+            autoCreate: "{{autoCreate}}"
diff --git a/library/camel-kamelets/src/main/resources/kamelets/ftp-source.kamelet.yaml b/library/camel-kamelets/src/main/resources/kamelets/ftp-source.kamelet.yaml
index c74024be..88f2f981 100644
--- a/library/camel-kamelets/src/main/resources/kamelets/ftp-source.kamelet.yaml
+++ b/library/camel-kamelets/src/main/resources/kamelets/ftp-source.kamelet.yaml
@@ -95,7 +95,7 @@ spec:
         default: false
         x-descriptors:
         - 'urn:alm:descriptor:com.tectonic.ui:checkbox'
-      autocreate:
+      autoCreate:
         title: Autocreate Missing Directories
         description: Automatically create starting directory.
         type: boolean
@@ -115,7 +115,7 @@ spec:
         recursive: "{{recursive}}"
         idempotent: "{{idempotent}}"
         binary: "{{binary}}"
-        autocreate: "{{autocreate}}"
+        autoCreate: "{{autoCreate}}"
       steps:
       - set-header:
           name: file


[camel-kamelets] 04/08: SFTP sink - Add autocreate option for consistency with the source

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 e52be0acef98a7572546f1348799f0a201ff1ba2
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Fri Mar 10 09:45:47 2023 +0100

    SFTP sink - Add autocreate option for consistency with the source
    
    Signed-off-by: Andrea Cosentino <an...@gmail.com>
---
 kamelets/sftp-sink.kamelet.yaml   | 4 ++--
 kamelets/sftp-source.kamelet.yaml | 2 +-
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/kamelets/sftp-sink.kamelet.yaml b/kamelets/sftp-sink.kamelet.yaml
index bdc5ccc6..77b26a70 100644
--- a/kamelets/sftp-sink.kamelet.yaml
+++ b/kamelets/sftp-sink.kamelet.yaml
@@ -114,7 +114,7 @@ spec:
         default: true
         x-descriptors:
         - 'urn:alm:descriptor:com.tectonic.ui:checkbox'
-      autocreate:
+      autoCreate:
         title: Autocreate Missing Directories
         description: Automatically create the directory the files should be written to.
         type: boolean
@@ -154,4 +154,4 @@ spec:
             passiveMode: "{{passiveMode}}"
             fileExist: "{{fileExist}}"
             binary: "{{binary}}"
-            autocreate: "{{autocreate}}"
+            autoCreate: "{{autoCreate}}"
diff --git a/kamelets/sftp-source.kamelet.yaml b/kamelets/sftp-source.kamelet.yaml
index bb8b2453..cee95381 100644
--- a/kamelets/sftp-source.kamelet.yaml
+++ b/kamelets/sftp-source.kamelet.yaml
@@ -152,7 +152,7 @@ spec:
         idempotent: "{{idempotent}}"
         ignoreFileNotFoundOrPermissionError: "{{ignoreFileNotFoundOrPermissionError}}"
         binary: "{{binary}}"
-        autocreate: "{{autocreate}}"
+        autoCreate: "{{autoCreate}}"
       steps:
       - set-body:
           simple: "${body.getBody()}"