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:00:13 UTC

[camel-kamelets] branch 3.x updated (251a69ff -> b20c8c61)

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

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


    from 251a69ff SFTP source - it creates a new folder (if doesn't exist) instead of throwing an exception
     new 79dff44c FTP source - it creates a new folder (if doesn't exist) instead of throwing an exception
     new ff381a28 FTP sink - Add autocreate option for consistency with the source
     new 6d54356e SFTP source - it creates a new folder (if doesn't exist) instead of throwing an exception
     new 10afe026 SFTP sink - Add autocreate option for consistency with the source
     new aec42e52 Regen
     new 4785ccb9 FTP source - it creates a new folder (if doesn't exist) instead of throwing an exception
     new 96fb9062 FTP sink - Add autocreate option for consistency with the source
     new b20c8c61 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 3.x
in repository https://gitbox.apache.org/repos/asf/camel-kamelets.git

commit 4785ccb9c1598c0c847283e022b6c811fa45f3c2
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 232a9b45..8c42242e 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] 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 3.x
in repository https://gitbox.apache.org/repos/asf/camel-kamelets.git

commit 10afe026480cfef82f1a64e2b4aaef5c285fc822
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 3164918c..c7f72123 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 1b5014f2..ef157767 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()}"


[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 3.x
in repository https://gitbox.apache.org/repos/asf/camel-kamelets.git

commit 96fb90623e51fe4d2c15c729e37b3d816babcf8b
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 66611f5e..baed22a5 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 3.x
in repository https://gitbox.apache.org/repos/asf/camel-kamelets.git

commit ff381a28ac32f0fded6730bdca8b6480d033494f
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 5f2e308c..66611f5e 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] 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 3.x
in repository https://gitbox.apache.org/repos/asf/camel-kamelets.git

commit 79dff44c5fe69de43ce2c356a884616c1f7e0d32
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 ab00a1ed..232a9b45 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] 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 3.x
in repository https://gitbox.apache.org/repos/asf/camel-kamelets.git

commit 6d54356e1ed7120dd768f06d3584c83ffaf8e4ae
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 01902fcc..1b5014f2 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 5f2e308c..66611f5e 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 ab00a1ed..232a9b45 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] 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 3.x
in repository https://gitbox.apache.org/repos/asf/camel-kamelets.git

commit aec42e5265bcd6c7e6a8fd038391e9c801bf488b
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 3164918c..c7f72123 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 01902fcc..ef157767 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 3.x
in repository https://gitbox.apache.org/repos/asf/camel-kamelets.git

commit b20c8c61896783f49c4ea91550450ef2ff0c9289
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 66611f5e..baed22a5 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 232a9b45..8c42242e 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