You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by nf...@apache.org on 2021/07/06 12:52:20 UTC

[camel-kamelets] 03/03: CAMEL-16788: regen docs

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

nferraro pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/camel-kamelets.git

commit 99f24cfe64fda1a547493558e7ff7c740e8c3bb2
Author: nicolaferraro <ni...@gmail.com>
AuthorDate: Tue Jul 6 13:22:04 2021 +0200

    CAMEL-16788: regen docs
---
 docs/modules/ROOT/pages/cassandra-sink.adoc    | 16 ++++++++--------
 docs/modules/ROOT/pages/cassandra-source.adoc  | 16 ++++++++--------
 docs/modules/ROOT/pages/file-watch-source.adoc | 10 +++++-----
 docs/modules/ROOT/pages/ftp-sink.adoc          | 12 ++++++------
 docs/modules/ROOT/pages/ftp-source.adoc        | 12 ++++++------
 docs/modules/ROOT/pages/ftps-sink.adoc         | 12 ++++++------
 docs/modules/ROOT/pages/ftps-source.adoc       | 12 ++++++------
 docs/modules/ROOT/pages/mail-imap-source.adoc  | 12 ++++++------
 docs/modules/ROOT/pages/mariadb-sink.adoc      |  2 +-
 docs/modules/ROOT/pages/mariadb-source.adoc    |  2 +-
 docs/modules/ROOT/pages/mysql-sink.adoc        |  2 +-
 docs/modules/ROOT/pages/mysql-source.adoc      |  2 +-
 docs/modules/ROOT/pages/postgresql-sink.adoc   |  2 +-
 docs/modules/ROOT/pages/postgresql-source.adoc |  2 +-
 docs/modules/ROOT/pages/rabbitmq-source.adoc   |  2 +-
 docs/modules/ROOT/pages/sftp-sink.adoc         | 12 ++++++------
 docs/modules/ROOT/pages/sftp-source.adoc       | 12 ++++++------
 docs/modules/ROOT/pages/sqlserver-sink.adoc    |  2 +-
 docs/modules/ROOT/pages/sqlserver-source.adoc  |  2 +-
 docs/modules/ROOT/pages/ssh-source.adoc        | 12 ++++++------
 20 files changed, 78 insertions(+), 78 deletions(-)

diff --git a/docs/modules/ROOT/pages/cassandra-sink.adoc b/docs/modules/ROOT/pages/cassandra-sink.adoc
index 7e95f78..c35b9e4 100644
--- a/docs/modules/ROOT/pages/cassandra-sink.adoc
+++ b/docs/modules/ROOT/pages/cassandra-sink.adoc
@@ -15,10 +15,10 @@ The following table summarizes the configuration options available for the `cass
 [width="100%",cols="2,^2,3,^2,^2,^3",options="header"]
 |===
 | Property| Name| Description| Type| Default| Example
-| *host {empty}* *| Host| Hostname(s) cassandra server(s). Multiple hosts can be separated by comma.| string| | `"localhost"`
+| *connectionHost {empty}* *| Connection Host| Hostname(s) cassandra server(s). Multiple hosts can be separated by comma.| string| | `"localhost"`
+| *connectionPort {empty}* *| Connection Port| Port number of cassandra server(s)| string| | `9042`
 | *keyspace {empty}* *| Keyspace| Keyspace to use| string| | `"customers"`
 | *password {empty}* *| Password| The password to use for accessing a secured Cassandra Cluster| string| | 
-| *port {empty}* *| Port| Port number of cassandra server(s)| string| | `9042`
 | *preparedStatement {empty}* *| Prepared Statement| The Prepared statement to execute against the Cassandra cluster table| string| | 
 | *username {empty}* *| Username| The username to use for accessing a secured Cassandra Cluster| string| | 
 | consistencyLevel| Consistency Level| Consistency level to use. The value can be one of ANY, ONE, TWO, THREE, QUORUM, ALL, LOCAL_QUORUM, EACH_QUORUM, SERIAL, LOCAL_SERIAL, LOCAL_ONE| string| `"ANY"`| 
@@ -53,10 +53,10 @@ spec:
       apiVersion: camel.apache.org/v1alpha1
       name: cassandra-sink
     properties:
-      host: "localhost"
+      connectionHost: "localhost"
+      connectionPort: 9042
       keyspace: "customers"
       password: "The Password"
-      port: 9042
       preparedStatement: "The Prepared Statement"
       username: "The Username"
 
@@ -79,7 +79,7 @@ The procedure described above can be simplified into a single execution of the `
 
 [source,shell]
 ----
-kamel bind channel/mychannel cassandra-sink -p "sink.host=localhost" -p "sink.keyspace=customers" -p "sink.password=The Password" -p sink.port=9042 -p "sink.preparedStatement=The Prepared Statement" -p "sink.username=The Username"
+kamel bind channel/mychannel cassandra-sink -p "sink.connectionHost=localhost" -p sink.connectionPort=9042 -p "sink.keyspace=customers" -p "sink.password=The Password" -p "sink.preparedStatement=The Prepared Statement" -p "sink.username=The Username"
 ----
 
 This will create the KameletBinding under the hood and apply it to the current namespace in the cluster.
@@ -107,10 +107,10 @@ spec:
       apiVersion: camel.apache.org/v1alpha1
       name: cassandra-sink
     properties:
-      host: "localhost"
+      connectionHost: "localhost"
+      connectionPort: 9042
       keyspace: "customers"
       password: "The Password"
-      port: 9042
       preparedStatement: "The Prepared Statement"
       username: "The Username"
 
@@ -134,7 +134,7 @@ The procedure described above can be simplified into a single execution of the `
 
 [source,shell]
 ----
-kamel bind kafka.strimzi.io/v1beta1:KafkaTopic:my-topic cassandra-sink -p "sink.host=localhost" -p "sink.keyspace=customers" -p "sink.password=The Password" -p sink.port=9042 -p "sink.preparedStatement=The Prepared Statement" -p "sink.username=The Username"
+kamel bind kafka.strimzi.io/v1beta1:KafkaTopic:my-topic cassandra-sink -p "sink.connectionHost=localhost" -p sink.connectionPort=9042 -p "sink.keyspace=customers" -p "sink.password=The Password" -p "sink.preparedStatement=The Prepared Statement" -p "sink.username=The Username"
 ----
 
 This will create the KameletBinding under the hood and apply it to the current namespace in the cluster.
diff --git a/docs/modules/ROOT/pages/cassandra-source.adoc b/docs/modules/ROOT/pages/cassandra-source.adoc
index 4009f46..0449488 100644
--- a/docs/modules/ROOT/pages/cassandra-source.adoc
+++ b/docs/modules/ROOT/pages/cassandra-source.adoc
@@ -13,10 +13,10 @@ The following table summarizes the configuration options available for the `cass
 [width="100%",cols="2,^2,3,^2,^2,^3",options="header"]
 |===
 | Property| Name| Description| Type| Default| Example
-| *host {empty}* *| Host| Hostname(s) cassandra server(s). Multiple hosts can be separated by comma.| string| | `"localhost"`
+| *connectionHost {empty}* *| Connection Host| Hostname(s) cassandra server(s). Multiple hosts can be separated by comma.| string| | `"localhost"`
+| *connectionPort {empty}* *| Connection Port| Port number of cassandra server(s)| string| | `9042`
 | *keyspace {empty}* *| Keyspace| Keyspace to use| string| | `"customers"`
 | *password {empty}* *| Password| The password to use for accessing a secured Cassandra Cluster| string| | 
-| *port {empty}* *| Port| Port number of cassandra server(s)| string| | `9042`
 | *query {empty}* *| Query| The query to execute against the Cassandra cluster table| string| | 
 | *username {empty}* *| Username| The username to use for accessing a secured Cassandra Cluster| string| | 
 | consistencyLevel| Consistency Level| Consistency level to use. The value can be one of ANY, ONE, TWO, THREE, QUORUM, ALL, LOCAL_QUORUM, EACH_QUORUM, SERIAL, LOCAL_SERIAL, LOCAL_ONE| string| `"ANY"`| 
@@ -47,10 +47,10 @@ spec:
       apiVersion: camel.apache.org/v1alpha1
       name: cassandra-source
     properties:
-      host: "localhost"
+      connectionHost: "localhost"
+      connectionPort: 9042
       keyspace: "customers"
       password: "The Password"
-      port: 9042
       query: "The Query"
       username: "The Username"
   sink:
@@ -78,7 +78,7 @@ The procedure described above can be simplified into a single execution of the `
 
 [source,shell]
 ----
-kamel bind cassandra-source -p "source.host=localhost" -p "source.keyspace=customers" -p "source.password=The Password" -p source.port=9042 -p "source.query=The Query" -p "source.username=The Username" channel/mychannel
+kamel bind cassandra-source -p "source.connectionHost=localhost" -p source.connectionPort=9042 -p "source.keyspace=customers" -p "source.password=The Password" -p "source.query=The Query" -p "source.username=The Username" channel/mychannel
 ----
 
 This will create the KameletBinding under the hood and apply it to the current namespace in the cluster.
@@ -101,10 +101,10 @@ spec:
       apiVersion: camel.apache.org/v1alpha1
       name: cassandra-source
     properties:
-      host: "localhost"
+      connectionHost: "localhost"
+      connectionPort: 9042
       keyspace: "customers"
       password: "The Password"
-      port: 9042
       query: "The Query"
       username: "The Username"
   sink:
@@ -133,7 +133,7 @@ The procedure described above can be simplified into a single execution of the `
 
 [source,shell]
 ----
-kamel bind cassandra-source -p "source.host=localhost" -p "source.keyspace=customers" -p "source.password=The Password" -p source.port=9042 -p "source.query=The Query" -p "source.username=The Username" kafka.strimzi.io/v1beta1:KafkaTopic:my-topic
+kamel bind cassandra-source -p "source.connectionHost=localhost" -p source.connectionPort=9042 -p "source.keyspace=customers" -p "source.password=The Password" -p "source.query=The Query" -p "source.username=The Username" kafka.strimzi.io/v1beta1:KafkaTopic:my-topic
 ----
 
 This will create the KameletBinding under the hood and apply it to the current namespace in the cluster.
diff --git a/docs/modules/ROOT/pages/file-watch-source.adoc b/docs/modules/ROOT/pages/file-watch-source.adoc
index 805cabe..ec643dd 100644
--- a/docs/modules/ROOT/pages/file-watch-source.adoc
+++ b/docs/modules/ROOT/pages/file-watch-source.adoc
@@ -14,7 +14,7 @@ The following table summarizes the configuration options available for the `file
 |===
 | Property| Name| Description| Type| Default| Example
 | *events {empty}* *| Events| The type of events to consume| string| `"CREATE,MODIFY,DELETE"`| 
-| *path {empty}* *| Path to Watch| Path of file or folder to watch| string| | 
+| *filePath {empty}* *| Path to Watch| Path of file or folder to watch| string| | 
 |===
 
 NOTE: Fields marked with ({empty}*) are mandatory.
@@ -41,7 +41,7 @@ spec:
       apiVersion: camel.apache.org/v1alpha1
       name: file-watch-source
     properties:
-      path: "The Path to Watch"
+      filePath: "The Path to Watch"
   sink:
     ref:
       kind: InMemoryChannel
@@ -67,7 +67,7 @@ The procedure described above can be simplified into a single execution of the `
 
 [source,shell]
 ----
-kamel bind file-watch-source -p "source.path=The Path to Watch" channel/mychannel
+kamel bind file-watch-source -p "source.filePath=The Path to Watch" channel/mychannel
 ----
 
 This will create the KameletBinding under the hood and apply it to the current namespace in the cluster.
@@ -90,7 +90,7 @@ spec:
       apiVersion: camel.apache.org/v1alpha1
       name: file-watch-source
     properties:
-      path: "The Path to Watch"
+      filePath: "The Path to Watch"
   sink:
     ref:
       kind: KafkaTopic
@@ -117,7 +117,7 @@ The procedure described above can be simplified into a single execution of the `
 
 [source,shell]
 ----
-kamel bind file-watch-source -p "source.path=The Path to Watch" kafka.strimzi.io/v1beta1:KafkaTopic:my-topic
+kamel bind file-watch-source -p "source.filePath=The Path to Watch" kafka.strimzi.io/v1beta1:KafkaTopic:my-topic
 ----
 
 This will create the KameletBinding under the hood and apply it to the current namespace in the cluster.
diff --git a/docs/modules/ROOT/pages/ftp-sink.adoc b/docs/modules/ROOT/pages/ftp-sink.adoc
index 2f49216..dcbb4d2 100644
--- a/docs/modules/ROOT/pages/ftp-sink.adoc
+++ b/docs/modules/ROOT/pages/ftp-sink.adoc
@@ -19,10 +19,10 @@ The following table summarizes the configuration options available for the `ftp-
 [width="100%",cols="2,^2,3,^2,^2,^3",options="header"]
 |===
 | Property| Name| Description| Type| Default| Example
+| *connectionHost {empty}* *| Connection Host| Hostname of the FTP server| string| | 
+| *connectionPort {empty}* *| Connection Port| Port of the FTP server| string| `21`| 
 | *directoryName {empty}* *| Directory Name| The starting directory| string| | 
-| *host {empty}* *| Host| Hostname of the FTP server| string| | 
 | *password {empty}* *| Password| The password to access the FTP server| string| | 
-| *port {empty}* *| Port| Port of the FTP server| string| `21`| 
 | *username {empty}* *| Username| The username to access the FTP server| string| | 
 | fileExist| File Existence| How to behave in case of file already existent. There are 4 enums and the value can be one of Override, Append, Fail or Ignore| string| `"Override"`| 
 | passiveMode| Passive Mode| Sets passive mode connection| boolean| `false`| 
@@ -57,8 +57,8 @@ spec:
       apiVersion: camel.apache.org/v1alpha1
       name: ftp-sink
     properties:
+      connectionHost: "The Connection Host"
       directoryName: "The Directory Name"
-      host: "The Host"
       password: "The Password"
       username: "The Username"
 
@@ -81,7 +81,7 @@ The procedure described above can be simplified into a single execution of the `
 
 [source,shell]
 ----
-kamel bind channel/mychannel ftp-sink -p "sink.directoryName=The Directory Name" -p "sink.host=The Host" -p "sink.password=The Password" -p "sink.username=The Username"
+kamel bind channel/mychannel ftp-sink -p "sink.connectionHost=The Connection Host" -p "sink.directoryName=The Directory Name" -p "sink.password=The Password" -p "sink.username=The Username"
 ----
 
 This will create the KameletBinding under the hood and apply it to the current namespace in the cluster.
@@ -109,8 +109,8 @@ spec:
       apiVersion: camel.apache.org/v1alpha1
       name: ftp-sink
     properties:
+      connectionHost: "The Connection Host"
       directoryName: "The Directory Name"
-      host: "The Host"
       password: "The Password"
       username: "The Username"
 
@@ -134,7 +134,7 @@ The procedure described above can be simplified into a single execution of the `
 
 [source,shell]
 ----
-kamel bind kafka.strimzi.io/v1beta1:KafkaTopic:my-topic ftp-sink -p "sink.directoryName=The Directory Name" -p "sink.host=The Host" -p "sink.password=The Password" -p "sink.username=The Username"
+kamel bind kafka.strimzi.io/v1beta1:KafkaTopic:my-topic ftp-sink -p "sink.connectionHost=The Connection Host" -p "sink.directoryName=The Directory Name" -p "sink.password=The Password" -p "sink.username=The Username"
 ----
 
 This will create the KameletBinding under the hood and apply it to the current namespace in the cluster.
diff --git a/docs/modules/ROOT/pages/ftp-source.adoc b/docs/modules/ROOT/pages/ftp-source.adoc
index 65f91cb..e26d5b5 100644
--- a/docs/modules/ROOT/pages/ftp-source.adoc
+++ b/docs/modules/ROOT/pages/ftp-source.adoc
@@ -13,10 +13,10 @@ The following table summarizes the configuration options available for the `ftp-
 [width="100%",cols="2,^2,3,^2,^2,^3",options="header"]
 |===
 | Property| Name| Description| Type| Default| Example
+| *connectionHost {empty}* *| Connection Host| Hostname of the FTP server| string| | 
+| *connectionPort {empty}* *| Connection Port| Port of the FTP server| string| `21`| 
 | *directoryName {empty}* *| Directory Name| The starting directory| string| | 
-| *host {empty}* *| Host| Hostname of the FTP server| string| | 
 | *password {empty}* *| Password| The password to access the FTP server| string| | 
-| *port {empty}* *| Port| Port of the FTP server| string| `21`| 
 | *username {empty}* *| Username| The username to access the FTP server| string| | 
 | idempotent| Idempotency| Skip already processed files.| boolean| `true`| 
 | passiveMode| Passive Mode| Sets passive mode connection| boolean| `false`| 
@@ -47,8 +47,8 @@ spec:
       apiVersion: camel.apache.org/v1alpha1
       name: ftp-source
     properties:
+      connectionHost: "The Connection Host"
       directoryName: "The Directory Name"
-      host: "The Host"
       password: "The Password"
       username: "The Username"
   sink:
@@ -76,7 +76,7 @@ The procedure described above can be simplified into a single execution of the `
 
 [source,shell]
 ----
-kamel bind ftp-source -p "source.directoryName=The Directory Name" -p "source.host=The Host" -p "source.password=The Password" -p "source.username=The Username" channel/mychannel
+kamel bind ftp-source -p "source.connectionHost=The Connection Host" -p "source.directoryName=The Directory Name" -p "source.password=The Password" -p "source.username=The Username" channel/mychannel
 ----
 
 This will create the KameletBinding under the hood and apply it to the current namespace in the cluster.
@@ -99,8 +99,8 @@ spec:
       apiVersion: camel.apache.org/v1alpha1
       name: ftp-source
     properties:
+      connectionHost: "The Connection Host"
       directoryName: "The Directory Name"
-      host: "The Host"
       password: "The Password"
       username: "The Username"
   sink:
@@ -129,7 +129,7 @@ The procedure described above can be simplified into a single execution of the `
 
 [source,shell]
 ----
-kamel bind ftp-source -p "source.directoryName=The Directory Name" -p "source.host=The Host" -p "source.password=The Password" -p "source.username=The Username" kafka.strimzi.io/v1beta1:KafkaTopic:my-topic
+kamel bind ftp-source -p "source.connectionHost=The Connection Host" -p "source.directoryName=The Directory Name" -p "source.password=The Password" -p "source.username=The Username" kafka.strimzi.io/v1beta1:KafkaTopic:my-topic
 ----
 
 This will create the KameletBinding under the hood and apply it to the current namespace in the cluster.
diff --git a/docs/modules/ROOT/pages/ftps-sink.adoc b/docs/modules/ROOT/pages/ftps-sink.adoc
index 11d9293..329869c 100644
--- a/docs/modules/ROOT/pages/ftps-sink.adoc
+++ b/docs/modules/ROOT/pages/ftps-sink.adoc
@@ -19,10 +19,10 @@ The following table summarizes the configuration options available for the `ftps
 [width="100%",cols="2,^2,3,^2,^2,^3",options="header"]
 |===
 | Property| Name| Description| Type| Default| Example
+| *connectionHost {empty}* *| Connection Host| Hostname of the FTP server| string| | 
+| *connectionPort {empty}* *| Connection Port| Port of the FTP server| string| `21`| 
 | *directoryName {empty}* *| Directory Name| The starting directory| string| | 
-| *host {empty}* *| Host| Hostname of the FTP server| string| | 
 | *password {empty}* *| Password| The password to access the FTP server| string| | 
-| *port {empty}* *| Port| Port of the FTP server| string| `21`| 
 | *username {empty}* *| Username| The username to access the FTP server| string| | 
 | fileExist| File Existence| How to behave in case of file already existent. There are 4 enums and the value can be one of Override, Append, Fail or Ignore| string| `"Override"`| 
 | passiveMode| Passive Mode| Sets passive mode connection| boolean| `false`| 
@@ -57,8 +57,8 @@ spec:
       apiVersion: camel.apache.org/v1alpha1
       name: ftps-sink
     properties:
+      connectionHost: "The Connection Host"
       directoryName: "The Directory Name"
-      host: "The Host"
       password: "The Password"
       username: "The Username"
 
@@ -81,7 +81,7 @@ The procedure described above can be simplified into a single execution of the `
 
 [source,shell]
 ----
-kamel bind channel/mychannel ftps-sink -p "sink.directoryName=The Directory Name" -p "sink.host=The Host" -p "sink.password=The Password" -p "sink.username=The Username"
+kamel bind channel/mychannel ftps-sink -p "sink.connectionHost=The Connection Host" -p "sink.directoryName=The Directory Name" -p "sink.password=The Password" -p "sink.username=The Username"
 ----
 
 This will create the KameletBinding under the hood and apply it to the current namespace in the cluster.
@@ -109,8 +109,8 @@ spec:
       apiVersion: camel.apache.org/v1alpha1
       name: ftps-sink
     properties:
+      connectionHost: "The Connection Host"
       directoryName: "The Directory Name"
-      host: "The Host"
       password: "The Password"
       username: "The Username"
 
@@ -134,7 +134,7 @@ The procedure described above can be simplified into a single execution of the `
 
 [source,shell]
 ----
-kamel bind kafka.strimzi.io/v1beta1:KafkaTopic:my-topic ftps-sink -p "sink.directoryName=The Directory Name" -p "sink.host=The Host" -p "sink.password=The Password" -p "sink.username=The Username"
+kamel bind kafka.strimzi.io/v1beta1:KafkaTopic:my-topic ftps-sink -p "sink.connectionHost=The Connection Host" -p "sink.directoryName=The Directory Name" -p "sink.password=The Password" -p "sink.username=The Username"
 ----
 
 This will create the KameletBinding under the hood and apply it to the current namespace in the cluster.
diff --git a/docs/modules/ROOT/pages/ftps-source.adoc b/docs/modules/ROOT/pages/ftps-source.adoc
index d16a18c..e7d7dd5 100644
--- a/docs/modules/ROOT/pages/ftps-source.adoc
+++ b/docs/modules/ROOT/pages/ftps-source.adoc
@@ -13,10 +13,10 @@ The following table summarizes the configuration options available for the `ftps
 [width="100%",cols="2,^2,3,^2,^2,^3",options="header"]
 |===
 | Property| Name| Description| Type| Default| Example
+| *connectionHost {empty}* *| Connection Host| Hostname of the FTPS server| string| | 
+| *connectionPort {empty}* *| Connection Port| Port of the FTPS server| string| `21`| 
 | *directoryName {empty}* *| Directory Name| The starting directory| string| | 
-| *host {empty}* *| Host| Hostname of the FTPS server| string| | 
 | *password {empty}* *| Password| The password to access the FTPS server| string| | 
-| *port {empty}* *| Port| Port of the FTPS server| string| `21`| 
 | *username {empty}* *| Username| The username to access the FTPS server| string| | 
 | idempotent| Idempotency| Skip already processed files.| boolean| `true`| 
 | passiveMode| Passive Mode| Sets passive mode connection| boolean| `false`| 
@@ -47,8 +47,8 @@ spec:
       apiVersion: camel.apache.org/v1alpha1
       name: ftps-source
     properties:
+      connectionHost: "The Connection Host"
       directoryName: "The Directory Name"
-      host: "The Host"
       password: "The Password"
       username: "The Username"
   sink:
@@ -76,7 +76,7 @@ The procedure described above can be simplified into a single execution of the `
 
 [source,shell]
 ----
-kamel bind ftps-source -p "source.directoryName=The Directory Name" -p "source.host=The Host" -p "source.password=The Password" -p "source.username=The Username" channel/mychannel
+kamel bind ftps-source -p "source.connectionHost=The Connection Host" -p "source.directoryName=The Directory Name" -p "source.password=The Password" -p "source.username=The Username" channel/mychannel
 ----
 
 This will create the KameletBinding under the hood and apply it to the current namespace in the cluster.
@@ -99,8 +99,8 @@ spec:
       apiVersion: camel.apache.org/v1alpha1
       name: ftps-source
     properties:
+      connectionHost: "The Connection Host"
       directoryName: "The Directory Name"
-      host: "The Host"
       password: "The Password"
       username: "The Username"
   sink:
@@ -129,7 +129,7 @@ The procedure described above can be simplified into a single execution of the `
 
 [source,shell]
 ----
-kamel bind ftps-source -p "source.directoryName=The Directory Name" -p "source.host=The Host" -p "source.password=The Password" -p "source.username=The Username" kafka.strimzi.io/v1beta1:KafkaTopic:my-topic
+kamel bind ftps-source -p "source.connectionHost=The Connection Host" -p "source.directoryName=The Directory Name" -p "source.password=The Password" -p "source.username=The Username" kafka.strimzi.io/v1beta1:KafkaTopic:my-topic
 ----
 
 This will create the KameletBinding under the hood and apply it to the current namespace in the cluster.
diff --git a/docs/modules/ROOT/pages/mail-imap-source.adoc b/docs/modules/ROOT/pages/mail-imap-source.adoc
index ac8ffbe..34d9509 100644
--- a/docs/modules/ROOT/pages/mail-imap-source.adoc
+++ b/docs/modules/ROOT/pages/mail-imap-source.adoc
@@ -13,9 +13,9 @@ The following table summarizes the configuration options available for the `mail
 [width="100%",cols="2,^2,3,^2,^2,^3",options="header"]
 |===
 | Property| Name| Description| Type| Default| Example
-| *host {empty}* *| Host| The IMAP server host| string| | `"imap.gmail.com"`
+| *connectionHost {empty}* *| Connection Host| The IMAP server host| string| | `"imap.gmail.com"`
+| *connectionPort {empty}* *| Connection Port| The IMAP server port| string| `993`| 
 | *password {empty}* *| Password| The password to access the mail box| string| | 
-| *port {empty}* *| Port| The IMAP server port| string| `993`| 
 | *username {empty}* *| Username| The username to access the mail box| string| | 
 | delay| Delay| The delay between fetches in milliseconds| integer| `60000`| 
 | fetchSize| Fetch Size| The number of messages fetched for each poll (-1 for no limits)| integer| `10`| 
@@ -45,7 +45,7 @@ spec:
       apiVersion: camel.apache.org/v1alpha1
       name: mail-imap-source
     properties:
-      host: "imap.gmail.com"
+      connectionHost: "imap.gmail.com"
       password: "The Password"
       username: "The Username"
   sink:
@@ -73,7 +73,7 @@ The procedure described above can be simplified into a single execution of the `
 
 [source,shell]
 ----
-kamel bind mail-imap-source -p "source.host=imap.gmail.com" -p "source.password=The Password" -p "source.username=The Username" channel/mychannel
+kamel bind mail-imap-source -p "source.connectionHost=imap.gmail.com" -p "source.password=The Password" -p "source.username=The Username" channel/mychannel
 ----
 
 This will create the KameletBinding under the hood and apply it to the current namespace in the cluster.
@@ -96,7 +96,7 @@ spec:
       apiVersion: camel.apache.org/v1alpha1
       name: mail-imap-source
     properties:
-      host: "imap.gmail.com"
+      connectionHost: "imap.gmail.com"
       password: "The Password"
       username: "The Username"
   sink:
@@ -125,7 +125,7 @@ The procedure described above can be simplified into a single execution of the `
 
 [source,shell]
 ----
-kamel bind mail-imap-source -p "source.host=imap.gmail.com" -p "source.password=The Password" -p "source.username=The Username" kafka.strimzi.io/v1beta1:KafkaTopic:my-topic
+kamel bind mail-imap-source -p "source.connectionHost=imap.gmail.com" -p "source.password=The Password" -p "source.username=The Username" kafka.strimzi.io/v1beta1:KafkaTopic:my-topic
 ----
 
 This will create the KameletBinding under the hood and apply it to the current namespace in the cluster.
diff --git a/docs/modules/ROOT/pages/mariadb-sink.adoc b/docs/modules/ROOT/pages/mariadb-sink.adoc
index f783b64..559804f 100644
--- a/docs/modules/ROOT/pages/mariadb-sink.adoc
+++ b/docs/modules/ROOT/pages/mariadb-sink.adoc
@@ -30,7 +30,7 @@ The following table summarizes the configuration options available for the `mari
 | *query {empty}* *| Query| The Query to execute against the MariaDB Database| string| | `"INSERT INTO accounts (username,city) VALUES (:#username,:#city)"`
 | *serverName {empty}* *| Server Name| Server Name for the data source| string| | `"localhost"`
 | *username {empty}* *| Username| The username to use for accessing a secured MariaDB Database| string| | 
-| port| Port| Server Port for the data source| string| `3306`| 
+| serverPort| Server Port| Server Port for the data source| string| `3306`| 
 |===
 
 NOTE: Fields marked with ({empty}*) are mandatory.
diff --git a/docs/modules/ROOT/pages/mariadb-source.adoc b/docs/modules/ROOT/pages/mariadb-source.adoc
index b5ec849..cedbbe6 100644
--- a/docs/modules/ROOT/pages/mariadb-source.adoc
+++ b/docs/modules/ROOT/pages/mariadb-source.adoc
@@ -23,7 +23,7 @@ The following table summarizes the configuration options available for the `mari
 | *serverName {empty}* *| Server Name| Server Name for the data source| string| | `"localhost"`
 | *username {empty}* *| Username| The username to use for accessing a secured MariaDB Database| string| | 
 | consumedQuery| Consumed Query| A query to run on a tuple consumed| string| | `"DELETE FROM accounts where user_id = :#user_id"`
-| port| Port| Server Port for the data source| string| `3306`| 
+| serverPort| Server Port| Server Port for the data source| string| `3306`| 
 |===
 
 NOTE: Fields marked with ({empty}*) are mandatory.
diff --git a/docs/modules/ROOT/pages/mysql-sink.adoc b/docs/modules/ROOT/pages/mysql-sink.adoc
index a53eba8..6dc5f3e 100644
--- a/docs/modules/ROOT/pages/mysql-sink.adoc
+++ b/docs/modules/ROOT/pages/mysql-sink.adoc
@@ -30,7 +30,7 @@ The following table summarizes the configuration options available for the `mysq
 | *query {empty}* *| Query| The Query to execute against the MySQL Database| string| | `"INSERT INTO accounts (username,city) VALUES (:#username,:#city)"`
 | *serverName {empty}* *| Server Name| Server Name for the data source| string| | `"localhost"`
 | *username {empty}* *| Username| The username to use for accessing a secured MySQL Database| string| | 
-| port| Port| Server Port for the data source| string| `3306`| 
+| serverPort| Server Port| Server Port for the data source| string| `3306`| 
 |===
 
 NOTE: Fields marked with ({empty}*) are mandatory.
diff --git a/docs/modules/ROOT/pages/mysql-source.adoc b/docs/modules/ROOT/pages/mysql-source.adoc
index b13ca70..01e577c 100644
--- a/docs/modules/ROOT/pages/mysql-source.adoc
+++ b/docs/modules/ROOT/pages/mysql-source.adoc
@@ -23,7 +23,7 @@ The following table summarizes the configuration options available for the `mysq
 | *serverName {empty}* *| Server Name| Server Name for the data source| string| | `"localhost"`
 | *username {empty}* *| Username| The username to use for accessing a secured MySQL Database| string| | 
 | consumedQuery| Consumed Query| A query to run on a tuple consumed| string| | `"DELETE FROM accounts where user_id = :#user_id"`
-| port| Port| Server Port for the data source| string| `3306`| 
+| serverPort| Server Port| Server Port for the data source| string| `3306`| 
 |===
 
 NOTE: Fields marked with ({empty}*) are mandatory.
diff --git a/docs/modules/ROOT/pages/postgresql-sink.adoc b/docs/modules/ROOT/pages/postgresql-sink.adoc
index ac34c83..18c828a 100644
--- a/docs/modules/ROOT/pages/postgresql-sink.adoc
+++ b/docs/modules/ROOT/pages/postgresql-sink.adoc
@@ -26,7 +26,7 @@ The following table summarizes the configuration options available for the `post
 | *query {empty}* *| Query| The Query to execute against the PostgreSQL Database| string| | `"INSERT INTO accounts (username,city) VALUES (:#username,:#city)"`
 | *serverName {empty}* *| Server Name| Server Name for the data source| string| | `"localhost"`
 | *username {empty}* *| Username| The username to use for accessing a secured PostgreSQL Database| string| | 
-| port| Port| Server Port for the data source| string| `5432`| 
+| serverPort| Server Port| Server Port for the data source| string| `5432`| 
 |===
 
 NOTE: Fields marked with ({empty}*) are mandatory.
diff --git a/docs/modules/ROOT/pages/postgresql-source.adoc b/docs/modules/ROOT/pages/postgresql-source.adoc
index d1a3da6..c7b2658 100644
--- a/docs/modules/ROOT/pages/postgresql-source.adoc
+++ b/docs/modules/ROOT/pages/postgresql-source.adoc
@@ -19,7 +19,7 @@ The following table summarizes the configuration options available for the `post
 | *serverName {empty}* *| Server Name| Server Name for the data source| string| | `"localhost"`
 | *username {empty}* *| Username| The username to use for accessing a secured PostgreSQL Database| string| | 
 | consumedQuery| Consumed Query| A query to run on a tuple consumed| string| | `"DELETE FROM accounts where user_id = :#user_id"`
-| port| Port| Server Port for the data source| string| `5432`| 
+| serverPort| Server Port| Server Port for the data source| string| `5432`| 
 |===
 
 NOTE: Fields marked with ({empty}*) are mandatory.
diff --git a/docs/modules/ROOT/pages/rabbitmq-source.adoc b/docs/modules/ROOT/pages/rabbitmq-source.adoc
index 7183ac7..b4f1224 100644
--- a/docs/modules/ROOT/pages/rabbitmq-source.adoc
+++ b/docs/modules/ROOT/pages/rabbitmq-source.adoc
@@ -17,7 +17,7 @@ The following table summarizes the configuration options available for the `rabb
 | *exchangeName {empty}* *| Exchange name| The exchange name determines the exchange the queue will be bound to| string| | 
 | *password {empty}* *| Password| The password to access the RabbitMQ server| string| | 
 | *username {empty}* *| Username| The username to access the RabbitMQ server| string| | 
-| port| Port| Port of the RabbitMQ server| string| `5672`| 
+| portNumber| Port Number| Port of the RabbitMQ server| string| `5672`| 
 |===
 
 NOTE: Fields marked with ({empty}*) are mandatory.
diff --git a/docs/modules/ROOT/pages/sftp-sink.adoc b/docs/modules/ROOT/pages/sftp-sink.adoc
index 57ac113..77993ca 100644
--- a/docs/modules/ROOT/pages/sftp-sink.adoc
+++ b/docs/modules/ROOT/pages/sftp-sink.adoc
@@ -19,10 +19,10 @@ The following table summarizes the configuration options available for the `sftp
 [width="100%",cols="2,^2,3,^2,^2,^3",options="header"]
 |===
 | Property| Name| Description| Type| Default| Example
+| *connectionHost {empty}* *| Connection Host| Hostname of the FTP server| string| | 
+| *connectionPort {empty}* *| Connection Port| Port of the FTP server| string| `22`| 
 | *directoryName {empty}* *| Directory Name| The starting directory| string| | 
-| *host {empty}* *| Host| Hostname of the FTP server| string| | 
 | *password {empty}* *| Password| The password to access the FTP server| string| | 
-| *port {empty}* *| Port| Port of the FTP server| string| `22`| 
 | *username {empty}* *| Username| The username to access the FTP server| string| | 
 | fileExist| File Existence| How to behave in case of file already existent. There are 4 enums and the value can be one of Override, Append, Fail or Ignore| string| `"Override"`| 
 | passiveMode| Passive Mode| Sets passive mode connection| boolean| `false`| 
@@ -57,8 +57,8 @@ spec:
       apiVersion: camel.apache.org/v1alpha1
       name: sftp-sink
     properties:
+      connectionHost: "The Connection Host"
       directoryName: "The Directory Name"
-      host: "The Host"
       password: "The Password"
       username: "The Username"
 
@@ -81,7 +81,7 @@ The procedure described above can be simplified into a single execution of the `
 
 [source,shell]
 ----
-kamel bind channel/mychannel sftp-sink -p "sink.directoryName=The Directory Name" -p "sink.host=The Host" -p "sink.password=The Password" -p "sink.username=The Username"
+kamel bind channel/mychannel sftp-sink -p "sink.connectionHost=The Connection Host" -p "sink.directoryName=The Directory Name" -p "sink.password=The Password" -p "sink.username=The Username"
 ----
 
 This will create the KameletBinding under the hood and apply it to the current namespace in the cluster.
@@ -109,8 +109,8 @@ spec:
       apiVersion: camel.apache.org/v1alpha1
       name: sftp-sink
     properties:
+      connectionHost: "The Connection Host"
       directoryName: "The Directory Name"
-      host: "The Host"
       password: "The Password"
       username: "The Username"
 
@@ -134,7 +134,7 @@ The procedure described above can be simplified into a single execution of the `
 
 [source,shell]
 ----
-kamel bind kafka.strimzi.io/v1beta1:KafkaTopic:my-topic sftp-sink -p "sink.directoryName=The Directory Name" -p "sink.host=The Host" -p "sink.password=The Password" -p "sink.username=The Username"
+kamel bind kafka.strimzi.io/v1beta1:KafkaTopic:my-topic sftp-sink -p "sink.connectionHost=The Connection Host" -p "sink.directoryName=The Directory Name" -p "sink.password=The Password" -p "sink.username=The Username"
 ----
 
 This will create the KameletBinding under the hood and apply it to the current namespace in the cluster.
diff --git a/docs/modules/ROOT/pages/sftp-source.adoc b/docs/modules/ROOT/pages/sftp-source.adoc
index 6ab94eb..767d4a5 100644
--- a/docs/modules/ROOT/pages/sftp-source.adoc
+++ b/docs/modules/ROOT/pages/sftp-source.adoc
@@ -13,10 +13,10 @@ The following table summarizes the configuration options available for the `sftp
 [width="100%",cols="2,^2,3,^2,^2,^3",options="header"]
 |===
 | Property| Name| Description| Type| Default| Example
+| *connectionHost {empty}* *| Connection Host| Hostname of the SFTP server| string| | 
+| *connectionPort {empty}* *| Connection Port| Port of the FTP server| string| `22`| 
 | *directoryName {empty}* *| Directory Name| The starting directory| string| | 
-| *host {empty}* *| Host| Hostname of the SFTP server| string| | 
 | *password {empty}* *| Password| The password to access the SFTP server| string| | 
-| *port {empty}* *| Port| Port of the FTP server| string| `22`| 
 | *username {empty}* *| Username| The username to access the SFTP server| string| | 
 | idempotent| Idempotency| Skip already processed files.| boolean| `true`| 
 | passiveMode| Passive Mode| Sets passive mode connection| boolean| `false`| 
@@ -47,8 +47,8 @@ spec:
       apiVersion: camel.apache.org/v1alpha1
       name: sftp-source
     properties:
+      connectionHost: "The Connection Host"
       directoryName: "The Directory Name"
-      host: "The Host"
       password: "The Password"
       username: "The Username"
   sink:
@@ -76,7 +76,7 @@ The procedure described above can be simplified into a single execution of the `
 
 [source,shell]
 ----
-kamel bind sftp-source -p "source.directoryName=The Directory Name" -p "source.host=The Host" -p "source.password=The Password" -p "source.username=The Username" channel/mychannel
+kamel bind sftp-source -p "source.connectionHost=The Connection Host" -p "source.directoryName=The Directory Name" -p "source.password=The Password" -p "source.username=The Username" channel/mychannel
 ----
 
 This will create the KameletBinding under the hood and apply it to the current namespace in the cluster.
@@ -99,8 +99,8 @@ spec:
       apiVersion: camel.apache.org/v1alpha1
       name: sftp-source
     properties:
+      connectionHost: "The Connection Host"
       directoryName: "The Directory Name"
-      host: "The Host"
       password: "The Password"
       username: "The Username"
   sink:
@@ -129,7 +129,7 @@ The procedure described above can be simplified into a single execution of the `
 
 [source,shell]
 ----
-kamel bind sftp-source -p "source.directoryName=The Directory Name" -p "source.host=The Host" -p "source.password=The Password" -p "source.username=The Username" kafka.strimzi.io/v1beta1:KafkaTopic:my-topic
+kamel bind sftp-source -p "source.connectionHost=The Connection Host" -p "source.directoryName=The Directory Name" -p "source.password=The Password" -p "source.username=The Username" kafka.strimzi.io/v1beta1:KafkaTopic:my-topic
 ----
 
 This will create the KameletBinding under the hood and apply it to the current namespace in the cluster.
diff --git a/docs/modules/ROOT/pages/sqlserver-sink.adoc b/docs/modules/ROOT/pages/sqlserver-sink.adoc
index 3701bd8..69d7237 100644
--- a/docs/modules/ROOT/pages/sqlserver-sink.adoc
+++ b/docs/modules/ROOT/pages/sqlserver-sink.adoc
@@ -30,7 +30,7 @@ The following table summarizes the configuration options available for the `sqls
 | *query {empty}* *| Query| The Query to execute against the SQL Server Database| string| | `"INSERT INTO accounts (username,city) VALUES (:#username,:#city)"`
 | *serverName {empty}* *| Server Name| Server Name for the data source| string| | `"localhost"`
 | *username {empty}* *| Username| The username to use for accessing a secured SQL Server Database| string| | 
-| port| Port| Server Port for the data source| string| `1433`| 
+| serverPort| Server Port| Server Port for the data source| string| `1433`| 
 |===
 
 NOTE: Fields marked with ({empty}*) are mandatory.
diff --git a/docs/modules/ROOT/pages/sqlserver-source.adoc b/docs/modules/ROOT/pages/sqlserver-source.adoc
index 1227d8d..ec2251f 100644
--- a/docs/modules/ROOT/pages/sqlserver-source.adoc
+++ b/docs/modules/ROOT/pages/sqlserver-source.adoc
@@ -23,7 +23,7 @@ The following table summarizes the configuration options available for the `sqls
 | *serverName {empty}* *| Server Name| Server Name for the data source| string| | `"localhost"`
 | *username {empty}* *| Username| The username to use for accessing a secured SQL Server Database| string| | 
 | consumedQuery| Consumed Query| A query to run on a tuple consumed| string| | `"DELETE FROM accounts where user_id = :#user_id"`
-| port| Port| Server Port for the data source| string| `1433`| 
+| serverPort| Server Port| Server Port for the data source| string| `1433`| 
 |===
 
 NOTE: Fields marked with ({empty}*) are mandatory.
diff --git a/docs/modules/ROOT/pages/ssh-source.adoc b/docs/modules/ROOT/pages/ssh-source.adoc
index 1385aa3..7072fc1 100644
--- a/docs/modules/ROOT/pages/ssh-source.adoc
+++ b/docs/modules/ROOT/pages/ssh-source.adoc
@@ -13,10 +13,10 @@ The following table summarizes the configuration options available for the `ssh-
 [width="100%",cols="2,^2,3,^2,^2,^3",options="header"]
 |===
 | Property| Name| Description| Type| Default| Example
-| *host {empty}* *| Host| The SSH Host| string| | 
+| *connectionHost {empty}* *| Connection Host| The SSH Host| string| | 
+| *connectionPort {empty}* *| Connection Port| The SSH Port| string| `22`| 
 | *password {empty}* *| Password| The SSH password to use| string| | 
 | *pollCommand {empty}* *| Poll Command| The command to run while polling the SSH session| string| | `"date"`
-| *port {empty}* *| Port| The SSH Port| string| `22`| 
 | *username {empty}* *| Username| The SSH username to use| string| | 
 | delay| Delay| Milliseconds before the next poll| integer| `500`| 
 |===
@@ -45,7 +45,7 @@ spec:
       apiVersion: camel.apache.org/v1alpha1
       name: ssh-source
     properties:
-      host: "The Host"
+      connectionHost: "The Connection Host"
       password: "The Password"
       pollCommand: "date"
       username: "The Username"
@@ -74,7 +74,7 @@ The procedure described above can be simplified into a single execution of the `
 
 [source,shell]
 ----
-kamel bind ssh-source -p "source.host=The Host" -p "source.password=The Password" -p "source.pollCommand=date" -p "source.username=The Username" channel/mychannel
+kamel bind ssh-source -p "source.connectionHost=The Connection Host" -p "source.password=The Password" -p "source.pollCommand=date" -p "source.username=The Username" channel/mychannel
 ----
 
 This will create the KameletBinding under the hood and apply it to the current namespace in the cluster.
@@ -97,7 +97,7 @@ spec:
       apiVersion: camel.apache.org/v1alpha1
       name: ssh-source
     properties:
-      host: "The Host"
+      connectionHost: "The Connection Host"
       password: "The Password"
       pollCommand: "date"
       username: "The Username"
@@ -127,7 +127,7 @@ The procedure described above can be simplified into a single execution of the `
 
 [source,shell]
 ----
-kamel bind ssh-source -p "source.host=The Host" -p "source.password=The Password" -p "source.pollCommand=date" -p "source.username=The Username" kafka.strimzi.io/v1beta1:KafkaTopic:my-topic
+kamel bind ssh-source -p "source.connectionHost=The Connection Host" -p "source.password=The Password" -p "source.pollCommand=date" -p "source.username=The Username" kafka.strimzi.io/v1beta1:KafkaTopic:my-topic
 ----
 
 This will create the KameletBinding under the hood and apply it to the current namespace in the cluster.