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 08:56:40 UTC

[camel-kamelets] branch 3.x-ftp-autocreate created (now 918d849b)

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

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


      at 918d849b Regen

This branch includes the following new commits:

     new 31a93ee3 FTP source - it creates a new folder (if doesn't exist) instead of throwing an exception
     new 695c1e68 FTP sink - Add autocreate option for consistency with the source
     new 4d6a6db8 SFTP source - it creates a new folder (if doesn't exist) instead of throwing an exception
     new 68332be6 SFTP sink - Add autocreate option for consistency with the source
     new 9a493657 Regen
     new 0893e2fb FTP source - it creates a new folder (if doesn't exist) instead of throwing an exception
     new 62502bb7 FTP sink - Add autocreate option for consistency with the source
     new 918d849b 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.



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

commit 695c1e681365a22ddb45037f0f104e3a80919c59
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] 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-ftp-autocreate
in repository https://gitbox.apache.org/repos/asf/camel-kamelets.git

commit 68332be63ea90b4d72006cfb652f7c612cda0fe4
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] 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-ftp-autocreate
in repository https://gitbox.apache.org/repos/asf/camel-kamelets.git

commit 9a493657d3b1e7e4ef0c5dceb8811fe2d52ab5b5
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-ftp-autocreate
in repository https://gitbox.apache.org/repos/asf/camel-kamelets.git

commit 918d849b2ea6c0bf94492fa54e953dd316a05859
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


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

commit 62502bb7b3b1274a4ad7788e335b35c1f78bf931
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] 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-ftp-autocreate
in repository https://gitbox.apache.org/repos/asf/camel-kamelets.git

commit 4d6a6db8451ccca72f88554793967c77a6a17813
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] 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-ftp-autocreate
in repository https://gitbox.apache.org/repos/asf/camel-kamelets.git

commit 0893e2fb62511c3472185a8fd3da653cda0a6e3b
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] 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-ftp-autocreate
in repository https://gitbox.apache.org/repos/asf/camel-kamelets.git

commit 31a93ee3c88cea9dc7b47d2e56cba4219a5180e6
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