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

acosentino pushed a commit to branch sandbox/camel-3.x
in repository https://gitbox.apache.org/repos/asf/camel.git

commit 9e39dc17a7eb638cb7e4e52862d2b583908560d4
Author: Andrea Cosentino <anco...@gmail.com>
AuthorDate: Wed Dec 5 13:57:38 2018 +0100

    Regen docs
---
 .../camel-as2/camel-as2-component/src/main/docs/as2-component.adoc     | 3 ++-
 components/camel-ftp/src/main/docs/ftp-component.adoc                  | 2 +-
 components/camel-ftp/src/main/docs/ftps-component.adoc                 | 2 +-
 components/camel-ftp/src/main/docs/sftp-component.adoc                 | 2 +-
 .../src/main/docs/google-bigquery-sql-component.adoc                   | 2 ++
 5 files changed, 7 insertions(+), 4 deletions(-)

diff --git 
a/components/camel-as2/camel-as2-component/src/main/docs/as2-component.adoc 
b/components/camel-as2/camel-as2-component/src/main/docs/as2-component.adoc
index 11bfb22..0c1180c 100644
--- a/components/camel-as2/camel-as2-component/src/main/docs/as2-component.adoc
+++ b/components/camel-as2/camel-as2-component/src/main/docs/as2-component.adoc
@@ -113,7 +113,7 @@ with the following path and query parameters:
 === Spring Boot Auto-Configuration
 
 
-The component supports 28 options, which are listed below.
+The component supports 29 options, which are listed below.
 
 
 
@@ -126,6 +126,7 @@ The component supports 28 options, which are listed below.
 | *camel.component.as2.configuration.as2-to* | The value of the AS2To header 
of AS2 message. |  | String
 | *camel.component.as2.configuration.as2-version* | The version of the AS2 
protocol. | 1.1 | String
 | *camel.component.as2.configuration.client-fqdn* | The Client Fully Qualified 
Domain Name (FQDN). Used in message ids sent by endpoint. | camel.apache.org | 
String
+| *camel.component.as2.configuration.compression-algorithm* | The algorithm 
used to compress EDI message. |  | AS2Compression Algorithm
 | *camel.component.as2.configuration.disposition-notification-to* | The value 
of the Disposition-Notification-To header. Assigning a value to this parameter 
requests a message disposition notification (MDN) for the AS2 message. |  | 
String
 | *camel.component.as2.configuration.edi-message-transfer-encoding* | The 
transfer encoding of EDI message. |  | String
 | *camel.component.as2.configuration.edi-message-type* | The content type of 
EDI message. One of application/edifact, application/edi-x12, 
application/edi-consent |  | ContentType
diff --git a/components/camel-ftp/src/main/docs/ftp-component.adoc 
b/components/camel-ftp/src/main/docs/ftp-component.adoc
index 8f0127f..77628c4 100644
--- a/components/camel-ftp/src/main/docs/ftp-component.adoc
+++ b/components/camel-ftp/src/main/docs/ftp-component.adoc
@@ -189,7 +189,7 @@ with the following path and query parameters:
 | *readLock* (lock) | Used by consumer, to only poll the files if it has 
exclusive read-lock on the file (i.e. the file is not in-progress or being 
written). Camel will wait until the file lock is granted. This option provides 
the build in strategies: none - No read lock is in use markerFile - Camel 
creates a marker file (fileName.camelLock) and then holds a lock on it. This 
option is not available for the FTP component changed - Changed is using file 
length/modification timestamp to det [...]
 | *readLockCheckInterval* (lock) | Interval in millis for the read-lock, if 
supported by the read lock. This interval is used for sleeping between attempts 
to acquire the read lock. For example when using the changed read lock, you can 
set a higher interval period to cater for slow writes. The default of 1 sec. 
may be too fast if the producer is very slow writing the file. Notice: For FTP 
the default readLockCheckInterval is 5000. The readLockTimeout value must be 
higher than readLockChe [...]
 | *readLockDeleteOrphanLock Files* (lock) | Whether or not read lock with 
marker files should upon startup delete any orphan read lock files, which may 
have been left on the file system, if Camel was not properly shutdown (such as 
a JVM crash). If turning this option to false then any orphaned lock file will 
cause Camel to not attempt to pickup that file, this could also be due another 
node is concurrently reading files from the same shared directory. | true | 
boolean
-| *readLockLoggingLevel* (lock) | Logging level used when a read lock could 
not be acquired. By default a WARN is logged. You can change this level, for 
example to OFF to not have any logging. This option is only applicable for 
readLock of types: changed, fileLock, idempotent, idempotent-changed, 
idempotent-rename, rename. | DEBUG | LoggingLevel
+| *readLockLoggingLevel* (lock) | Logging level used when a read lock could 
not be acquired. By default a DEBUG is logged. You can change this level, for 
example to OFF to not have any logging. This option is only applicable for 
readLock of types: changed, fileLock, idempotent, idempotent-changed, 
idempotent-rename, rename. | DEBUG | LoggingLevel
 | *readLockMarkerFile* (lock) | Whether to use marker file with the changed, 
rename, or exclusive read lock types. By default a marker file is used as well 
to guard against other processes picking up the same files. This behavior can 
be turned off by setting this option to false. For example if you do not want 
to write marker files to the file systems by the Camel application. | true | 
boolean
 | *readLockMinAge* (lock) | This option is applied only for readLock=changed. 
It allows to specify a minimum age the file must be before attempting to 
acquire the read lock. For example use readLockMinAge=300s to require the file 
is at last 5 minutes old. This can speedup the changed read lock as it will 
only attempt to acquire files which are at least that given age. | 0 | long
 | *readLockMinLength* (lock) | This option is applied only for 
readLock=changed. It allows you to configure a minimum file length. By default 
Camel expects the file to contain data, and thus the default value is 1. You 
can set this option to zero, to allow consuming zero-length files. | 1 | long
diff --git a/components/camel-ftp/src/main/docs/ftps-component.adoc 
b/components/camel-ftp/src/main/docs/ftps-component.adoc
index 5d2533c..4bb1b2d 100644
--- a/components/camel-ftp/src/main/docs/ftps-component.adoc
+++ b/components/camel-ftp/src/main/docs/ftps-component.adoc
@@ -153,7 +153,7 @@ with the following path and query parameters:
 | *readLockIdempotentRelease AsyncPoolSize* (lock) | The number of threads in 
the scheduled thread pool when using asynchronous release tasks. Using a 
default of 1 core threads should be sufficient in almost all use-cases, only 
set this to a higher value if either updating the idempotent repository is 
slow, or there are a lot of files to process. This option is not in-use if you 
use a shared thread pool by configuring the 
readLockIdempotentReleaseExecutorService option. See more details  [...]
 | *readLockIdempotentRelease Delay* (lock) | Whether to delay the release task 
for a period of millis. This can be used to delay the release tasks to expand 
the window when a file is regarded as read-locked, in an active/active cluster 
scenario with a shared idempotent repository, to ensure other nodes cannot 
potentially scan and acquire the same file, due to race-conditions. By 
expanding the time-window of the release tasks helps prevents these situations. 
Note delaying is only needed i [...]
 | *readLockIdempotentRelease ExecutorService* (lock) | To use a custom and 
shared thread pool for asynchronous release tasks. See more details at the 
readLockIdempotentReleaseDelay option. |  | ScheduledExecutor Service
-| *readLockLoggingLevel* (lock) | Logging level used when a read lock could 
not be acquired. By default a WARN is logged. You can change this level, for 
example to OFF to not have any logging. This option is only applicable for 
readLock of types: changed, fileLock, idempotent, idempotent-changed, 
idempotent-rename, rename. | DEBUG | LoggingLevel
+| *readLockLoggingLevel* (lock) | Logging level used when a read lock could 
not be acquired. By default a DEBUG is logged. You can change this level, for 
example to OFF to not have any logging. This option is only applicable for 
readLock of types: changed, fileLock, idempotent, idempotent-changed, 
idempotent-rename, rename. | DEBUG | LoggingLevel
 | *readLockMarkerFile* (lock) | Whether to use marker file with the changed, 
rename, or exclusive read lock types. By default a marker file is used as well 
to guard against other processes picking up the same files. This behavior can 
be turned off by setting this option to false. For example if you do not want 
to write marker files to the file systems by the Camel application. | true | 
boolean
 | *readLockMinAge* (lock) | This option is applied only for readLock=changed. 
It allows to specify a minimum age the file must be before attempting to 
acquire the read lock. For example use readLockMinAge=300s to require the file 
is at last 5 minutes old. This can speedup the changed read lock as it will 
only attempt to acquire files which are at least that given age. | 0 | long
 | *readLockMinLength* (lock) | This option is applied only for 
readLock=changed. It allows you to configure a minimum file length. By default 
Camel expects the file to contain data, and thus the default value is 1. You 
can set this option to zero, to allow consuming zero-length files. | 1 | long
diff --git a/components/camel-ftp/src/main/docs/sftp-component.adoc 
b/components/camel-ftp/src/main/docs/sftp-component.adoc
index e2591e5..08e3dc8 100644
--- a/components/camel-ftp/src/main/docs/sftp-component.adoc
+++ b/components/camel-ftp/src/main/docs/sftp-component.adoc
@@ -137,7 +137,7 @@ with the following path and query parameters:
 | *readLockIdempotentRelease AsyncPoolSize* (lock) | The number of threads in 
the scheduled thread pool when using asynchronous release tasks. Using a 
default of 1 core threads should be sufficient in almost all use-cases, only 
set this to a higher value if either updating the idempotent repository is 
slow, or there are a lot of files to process. This option is not in-use if you 
use a shared thread pool by configuring the 
readLockIdempotentReleaseExecutorService option. See more details  [...]
 | *readLockIdempotentRelease Delay* (lock) | Whether to delay the release task 
for a period of millis. This can be used to delay the release tasks to expand 
the window when a file is regarded as read-locked, in an active/active cluster 
scenario with a shared idempotent repository, to ensure other nodes cannot 
potentially scan and acquire the same file, due to race-conditions. By 
expanding the time-window of the release tasks helps prevents these situations. 
Note delaying is only needed i [...]
 | *readLockIdempotentRelease ExecutorService* (lock) | To use a custom and 
shared thread pool for asynchronous release tasks. See more details at the 
readLockIdempotentReleaseDelay option. |  | ScheduledExecutor Service
-| *readLockLoggingLevel* (lock) | Logging level used when a read lock could 
not be acquired. By default a WARN is logged. You can change this level, for 
example to OFF to not have any logging. This option is only applicable for 
readLock of types: changed, fileLock, idempotent, idempotent-changed, 
idempotent-rename, rename. | DEBUG | LoggingLevel
+| *readLockLoggingLevel* (lock) | Logging level used when a read lock could 
not be acquired. By default a DEBUG is logged. You can change this level, for 
example to OFF to not have any logging. This option is only applicable for 
readLock of types: changed, fileLock, idempotent, idempotent-changed, 
idempotent-rename, rename. | DEBUG | LoggingLevel
 | *readLockMarkerFile* (lock) | Whether to use marker file with the changed, 
rename, or exclusive read lock types. By default a marker file is used as well 
to guard against other processes picking up the same files. This behavior can 
be turned off by setting this option to false. For example if you do not want 
to write marker files to the file systems by the Camel application. | true | 
boolean
 | *readLockMinAge* (lock) | This option is applied only for readLock=changed. 
It allows to specify a minimum age the file must be before attempting to 
acquire the read lock. For example use readLockMinAge=300s to require the file 
is at last 5 minutes old. This can speedup the changed read lock as it will 
only attempt to acquire files which are at least that given age. | 0 | long
 | *readLockMinLength* (lock) | This option is applied only for 
readLock=changed. It allows you to configure a minimum file length. By default 
Camel expects the file to contain data, and thus the default value is 1. You 
can set this option to zero, to allow consuming zero-length files. | 1 | long
diff --git 
a/components/camel-google-bigquery/src/main/docs/google-bigquery-sql-component.adoc
 
b/components/camel-google-bigquery/src/main/docs/google-bigquery-sql-component.adoc
index a0e06bb..44379ca 100644
--- 
a/components/camel-google-bigquery/src/main/docs/google-bigquery-sql-component.adoc
+++ 
b/components/camel-google-bigquery/src/main/docs/google-bigquery-sql-component.adoc
@@ -1,6 +1,8 @@
 [[google-bigquery-sql-component]]
 == Google BigQuery Standard SQL Component
 *Available as of Camel version 2.23*
+*Available as of Camel version 2.23*
+
 
 
 The Google Bigquery SQL component provides access

Reply via email to