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/09 11:10:40 UTC

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

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 3470843e Update experimental Kamelet too.
     new ef638c43 SFTP source - it creates a new folder (if doesn't exist) instead of throwing an exception
     new 196383db SFTP source - it creates a new folder (if doesn't exist) instead of throwing an exception
     new d6e8a555 SFTP sink - Add autocreate option for consistency with the source
     new af7840f0 SFTP sink - Add autocreate option for consistency with the source
     new 844d559f SFTP source - it creates a new folder (if doesn't exist) instead of throwing an exception
     new 251a69ff SFTP source - it creates a new folder (if doesn't exist) instead of throwing an exception

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


[camel-kamelets] 06/06: 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 251a69ff369014f046d000b79490bacb4c9dd9ae
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Thu Mar 9 11:44:19 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>
---
 .../camel-kamelets/src/main/resources/kamelets/sftp-source.kamelet.yaml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

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 099011d9..01902fcc 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
@@ -126,7 +126,7 @@ spec:
         x-descriptors:
         - 'urn:alm:descriptor:com.tectonic.ui:checkbox'
       autocreate:
-        title: Autocreate Missing directories
+        title: Autocreate Missing Directories
         description: Automatically create starting directory.
         type: boolean
         default: true


[camel-kamelets] 05/06: 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 844d559f01cb3fe0d79d7628aaaa0429afc9c6c8
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Thu Mar 9 11:43:20 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 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/kamelets/sftp-source.kamelet.yaml b/kamelets/sftp-source.kamelet.yaml
index 099011d9..01902fcc 100644
--- a/kamelets/sftp-source.kamelet.yaml
+++ b/kamelets/sftp-source.kamelet.yaml
@@ -126,7 +126,7 @@ spec:
         x-descriptors:
         - 'urn:alm:descriptor:com.tectonic.ui:checkbox'
       autocreate:
-        title: Autocreate Missing directories
+        title: Autocreate Missing Directories
         description: Automatically create starting directory.
         type: boolean
         default: true


[camel-kamelets] 01/06: 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 ef638c43277350468d9e4793fb477187e4149269
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Thu Mar 9 11:37:21 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 | 8 ++++++++
 1 file changed, 8 insertions(+)

diff --git a/kamelets/sftp-source.kamelet.yaml b/kamelets/sftp-source.kamelet.yaml
index cab98295..099011d9 100644
--- a/kamelets/sftp-source.kamelet.yaml
+++ b/kamelets/sftp-source.kamelet.yaml
@@ -125,6 +125,13 @@ spec:
         default: true
         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"
@@ -145,6 +152,7 @@ spec:
         idempotent: "{{idempotent}}"
         ignoreFileNotFoundOrPermissionError: "{{ignoreFileNotFoundOrPermissionError}}"
         binary: "{{binary}}"
+        autocreate: "{{autocreate}}"
       steps:
       - set-body:
           simple: "${body.getBody()}"


[camel-kamelets] 04/06: 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 af7840f0e20084e19a07ff32f671dbcbfb3d9cea
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Thu Mar 9 11:41:50 2023 +0100

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

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 0a73fa9f..3164918c 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,6 +114,13 @@ spec:
         default: true
         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"
@@ -147,3 +154,4 @@ spec:
             passiveMode: "{{passiveMode}}"
             fileExist: "{{fileExist}}"
             binary: "{{binary}}"
+            autocreate: "{{autocreate}}"


[camel-kamelets] 02/06: 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 196383db1e4a0ac62804ee7b61ab4742d4f9f01d
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Thu Mar 9 11:38:17 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>
---
 .../src/main/resources/kamelets/sftp-source.kamelet.yaml          | 8 ++++++++
 1 file changed, 8 insertions(+)

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 cab98295..099011d9 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,6 +125,13 @@ spec:
         default: true
         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"
@@ -145,6 +152,7 @@ spec:
         idempotent: "{{idempotent}}"
         ignoreFileNotFoundOrPermissionError: "{{ignoreFileNotFoundOrPermissionError}}"
         binary: "{{binary}}"
+        autocreate: "{{autocreate}}"
       steps:
       - set-body:
           simple: "${body.getBody()}"


[camel-kamelets] 03/06: 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 d6e8a5554b9f79e7b2159c6c7e9daf2f1b756710
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Thu Mar 9 11:40:16 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 | 8 ++++++++
 1 file changed, 8 insertions(+)

diff --git a/kamelets/sftp-sink.kamelet.yaml b/kamelets/sftp-sink.kamelet.yaml
index 0a73fa9f..3164918c 100644
--- a/kamelets/sftp-sink.kamelet.yaml
+++ b/kamelets/sftp-sink.kamelet.yaml
@@ -114,6 +114,13 @@ spec:
         default: true
         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"
@@ -147,3 +154,4 @@ spec:
             passiveMode: "{{passiveMode}}"
             fileExist: "{{fileExist}}"
             binary: "{{binary}}"
+            autocreate: "{{autocreate}}"