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:17:06 UTC

[camel-kamelets] branch 3.x-ftps-autocreate created (now addd9011)

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

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


      at addd9011 FTPS Sink - Add autoCreate parameter

This branch includes the following new commits:

     new e2180fd1 FTPS Source - Add autoCreate parameter
     new a222a8ce FTPS Source - Add autoCreate parameter
     new 2004e2da FTPS Sink - Add autoCreate parameter
     new addd9011 FTPS Sink - Add autoCreate parameter

The 4 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] 01/04: FTPS Source - Add autoCreate parameter

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

commit e2180fd1a2b5c8dac37b6a56fbc5f4cd3b350821
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Fri Mar 10 10:09:22 2023 +0100

    FTPS Source - Add autoCreate parameter
    
    Signed-off-by: Andrea Cosentino <an...@gmail.com>
---
 kamelets/ftps-source.kamelet.yaml | 8 ++++++++
 1 file changed, 8 insertions(+)

diff --git a/kamelets/ftps-source.kamelet.yaml b/kamelets/ftps-source.kamelet.yaml
index 0d6d8982..7a85d0ce 100644
--- a/kamelets/ftps-source.kamelet.yaml
+++ b/kamelets/ftps-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/04: FTPS Sink - Add autoCreate parameter

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

commit 2004e2daf2caa6701e87e472d313cf81c60dad5f
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Fri Mar 10 10:12:59 2023 +0100

    FTPS Sink - Add autoCreate parameter
    
    Signed-off-by: Andrea Cosentino <an...@gmail.com>
---
 kamelets/ftps-sink.kamelet.yaml | 8 ++++++++
 1 file changed, 8 insertions(+)

diff --git a/kamelets/ftps-sink.kamelet.yaml b/kamelets/ftps-sink.kamelet.yaml
index 5e26ca6c..04c00690 100644
--- a/kamelets/ftps-sink.kamelet.yaml
+++ b/kamelets/ftps-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] 02/04: FTPS Source - Add autoCreate parameter

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

commit a222a8ce7afee0d22339533cd3a3f16c5b464c7e
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Fri Mar 10 10:11:44 2023 +0100

    FTPS Source - Add autoCreate parameter
    
    Signed-off-by: Andrea Cosentino <an...@gmail.com>
---
 .../src/main/resources/kamelets/ftps-source.kamelet.yaml          | 8 ++++++++
 1 file changed, 8 insertions(+)

diff --git a/library/camel-kamelets/src/main/resources/kamelets/ftps-source.kamelet.yaml b/library/camel-kamelets/src/main/resources/kamelets/ftps-source.kamelet.yaml
index 0d6d8982..7a85d0ce 100644
--- a/library/camel-kamelets/src/main/resources/kamelets/ftps-source.kamelet.yaml
+++ b/library/camel-kamelets/src/main/resources/kamelets/ftps-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] 04/04: FTPS Sink - Add autoCreate parameter

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

commit addd90113cc730b44c6593f8ce0a582c84c6f3f0
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Fri Mar 10 10:13:56 2023 +0100

    FTPS Sink - Add autoCreate parameter
    
    Signed-off-by: Andrea Cosentino <an...@gmail.com>
---
 .../src/main/resources/kamelets/ftps-sink.kamelet.yaml            | 8 ++++++++
 1 file changed, 8 insertions(+)

diff --git a/library/camel-kamelets/src/main/resources/kamelets/ftps-sink.kamelet.yaml b/library/camel-kamelets/src/main/resources/kamelets/ftps-sink.kamelet.yaml
index 5e26ca6c..04c00690 100644
--- a/library/camel-kamelets/src/main/resources/kamelets/ftps-sink.kamelet.yaml
+++ b/library/camel-kamelets/src/main/resources/kamelets/ftps-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}}"