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/02/08 11:05:04 UTC

[camel-kamelets] branch ftp-ftps-source created (now 104d55aa)

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

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


      at 104d55aa Convert all the parameters with multiple possible values to enum - FTPS Source

This branch includes the following new commits:

     new e7439f2f Convert all the parameters with multiple possible values to enum - FTP Source
     new 5639ace4 Convert all the parameters with multiple possible values to enum - FTP Source
     new 76c944a5 Convert all the parameters with multiple possible values to enum - FTPS Source
     new 104d55aa Convert all the parameters with multiple possible values to enum - FTPS Source

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] 04/04: Convert all the parameters with multiple possible values to enum - FTPS Source

Posted by ac...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

acosentino pushed a commit to branch ftp-ftps-source
in repository https://gitbox.apache.org/repos/asf/camel-kamelets.git

commit 104d55aafdccba98fa63f24580fc730911e3a696
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Wed Feb 8 12:03:54 2023 +0100

    Convert all the parameters with multiple possible values to enum - FTPS Source
    
    Signed-off-by: Andrea Cosentino <an...@gmail.com>
---
 .../camel-kamelets/src/main/resources/kamelets/ftps-sink.kamelet.yaml  | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

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 a4c067d3..cdb8e9cc 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
@@ -79,9 +79,10 @@ spec:
         - 'urn:alm:descriptor:com.tectonic.ui:checkbox'
       fileExist:
         title: File Existence
-        description: "Specifies how the Kamelet behaves if the file already exists. Possible values are Override, Append, Fail, or Ignore."
+        description: "Specifies how the Kamelet behaves if the file already exists."
         type: string
         default: Override
+        enum: ["Override", "Append", "Fail", "Ignore"]
       binary:
         title: Binary
         description: Specifies the file transfer mode, BINARY or ASCII. Default is ASCII (false).


[camel-kamelets] 03/04: Convert all the parameters with multiple possible values to enum - FTPS Source

Posted by ac...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

acosentino pushed a commit to branch ftp-ftps-source
in repository https://gitbox.apache.org/repos/asf/camel-kamelets.git

commit 76c944a5963f0bfc9951e1664cada364d8dc27ec
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Wed Feb 8 12:03:07 2023 +0100

    Convert all the parameters with multiple possible values to enum - FTPS Source
    
    Signed-off-by: Andrea Cosentino <an...@gmail.com>
---
 kamelets/ftps-sink.kamelet.yaml | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/kamelets/ftps-sink.kamelet.yaml b/kamelets/ftps-sink.kamelet.yaml
index a4c067d3..cdb8e9cc 100644
--- a/kamelets/ftps-sink.kamelet.yaml
+++ b/kamelets/ftps-sink.kamelet.yaml
@@ -79,9 +79,10 @@ spec:
         - 'urn:alm:descriptor:com.tectonic.ui:checkbox'
       fileExist:
         title: File Existence
-        description: "Specifies how the Kamelet behaves if the file already exists. Possible values are Override, Append, Fail, or Ignore."
+        description: "Specifies how the Kamelet behaves if the file already exists."
         type: string
         default: Override
+        enum: ["Override", "Append", "Fail", "Ignore"]
       binary:
         title: Binary
         description: Specifies the file transfer mode, BINARY or ASCII. Default is ASCII (false).


[camel-kamelets] 02/04: Convert all the parameters with multiple possible values to enum - FTP Source

Posted by ac...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

acosentino pushed a commit to branch ftp-ftps-source
in repository https://gitbox.apache.org/repos/asf/camel-kamelets.git

commit 5639ace467a2c6c327a9d3bd9f07e5003ac60e7a
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Wed Feb 8 12:01:45 2023 +0100

    Convert all the parameters with multiple possible values to enum - FTP Source
    
    Signed-off-by: Andrea Cosentino <an...@gmail.com>
---
 .../camel-kamelets/src/main/resources/kamelets/ftp-sink.kamelet.yaml   | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

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 5198f0fd..961d035b 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
@@ -79,9 +79,10 @@ spec:
         - 'urn:alm:descriptor:com.tectonic.ui:checkbox'
       fileExist:
         title: File Existence
-        description: How to behave in case of file already existent. There are 4 enums. Possible values are Override, Append, Fail, or Ignore.
+        description: How to behave in case of file already existent.
         type: string
         default: Override
+        enum: ["Override", "Append", "Fail", "Ignore"]
       binary:
         title: Binary
         description: Specifies the file transfer mode, BINARY or ASCII. Default is ASCII (false).


[camel-kamelets] 01/04: Convert all the parameters with multiple possible values to enum - FTP Source

Posted by ac...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

acosentino pushed a commit to branch ftp-ftps-source
in repository https://gitbox.apache.org/repos/asf/camel-kamelets.git

commit e7439f2f05e6e606d0f06e3ce7a9583ba39021a4
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Wed Feb 8 12:01:08 2023 +0100

    Convert all the parameters with multiple possible values to enum - FTP Source
    
    Signed-off-by: Andrea Cosentino <an...@gmail.com>
---
 kamelets/ftp-sink.kamelet.yaml | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/kamelets/ftp-sink.kamelet.yaml b/kamelets/ftp-sink.kamelet.yaml
index 5198f0fd..961d035b 100644
--- a/kamelets/ftp-sink.kamelet.yaml
+++ b/kamelets/ftp-sink.kamelet.yaml
@@ -79,9 +79,10 @@ spec:
         - 'urn:alm:descriptor:com.tectonic.ui:checkbox'
       fileExist:
         title: File Existence
-        description: How to behave in case of file already existent. There are 4 enums. Possible values are Override, Append, Fail, or Ignore.
+        description: How to behave in case of file already existent.
         type: string
         default: Override
+        enum: ["Override", "Append", "Fail", "Ignore"]
       binary:
         title: Binary
         description: Specifies the file transfer mode, BINARY or ASCII. Default is ASCII (false).