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

acosentino pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/camel-spring-boot.git


The following commit(s) were added to refs/heads/master by this push:
     new d79be75  [create-pull-request] automated change
d79be75 is described below

commit d79be75dfb8e32964ab504fcfe46c8479aa9d511
Author: github-actions[bot] 
<41898282+github-actions[bot]@users.noreply.github.com>
AuthorDate: Mon Dec 21 00:52:01 2020 +0000

    [create-pull-request] automated change
---
 .../resources/org/apache/camel/springboot/catalog/components/file.json  | 2 ++
 .../resources/org/apache/camel/springboot/catalog/components/ftp.json   | 2 ++
 .../resources/org/apache/camel/springboot/catalog/components/ftps.json  | 2 ++
 .../resources/org/apache/camel/springboot/catalog/components/sftp.json  | 2 ++
 4 files changed, 8 insertions(+)

diff --git 
a/catalog/camel-catalog-provider-springboot/src/main/resources/org/apache/camel/springboot/catalog/components/file.json
 
b/catalog/camel-catalog-provider-springboot/src/main/resources/org/apache/camel/springboot/catalog/components/file.json
index ec93bbb..d049064 100644
--- 
a/catalog/camel-catalog-provider-springboot/src/main/resources/org/apache/camel/springboot/catalog/components/file.json
+++ 
b/catalog/camel-catalog-provider-springboot/src/main/resources/org/apache/camel/springboot/catalog/components/file.json
@@ -76,6 +76,7 @@
     "antInclude": { "kind": "parameter", "displayName": "Ant Include", 
"group": "filter", "label": "consumer,filter", "required": false, "type": 
"string", "javaType": "java.lang.String", "deprecated": false, "autowired": 
false, "secret": false, "description": "Ant style filter inclusion. Multiple 
inclusions may be specified in comma-delimited format." },
     "eagerMaxMessagesPerPoll": { "kind": "parameter", "displayName": "Eager 
Max Messages Per Poll", "group": "filter", "label": "consumer,filter", 
"required": false, "type": "boolean", "javaType": "boolean", "deprecated": 
false, "autowired": false, "secret": false, "defaultValue": true, 
"description": "Allows for controlling whether the limit from 
maxMessagesPerPoll is eager or not. If eager then the limit is during the 
scanning of files. Where as false would scan all files, and then per [...]
     "exclude": { "kind": "parameter", "displayName": "Exclude", "group": 
"filter", "label": "consumer,filter", "required": false, "type": "string", 
"javaType": "java.lang.String", "deprecated": false, "autowired": false, 
"secret": false, "description": "Is used to exclude files, if filename matches 
the regex pattern (matching is case in-senstive). Notice if you use symbols 
such as plus sign and others you would need to configure this using the RAW() 
syntax if configuring this as an endpo [...]
+    "excludeExt": { "kind": "parameter", "displayName": "Exclude Ext", 
"group": "filter", "label": "consumer,filter", "required": false, "type": 
"string", "javaType": "java.lang.String", "deprecated": false, "autowired": 
false, "secret": false, "description": "Is used to exclude files matching file 
extension name (case insensitive). For example to exclude bak files, then use 
excludeExt=bak. Multiple extensions can be separated by comma, for example to 
exclude bak and dat files, use exclu [...]
     "filter": { "kind": "parameter", "displayName": "Filter", "group": 
"filter", "label": "consumer,filter", "required": false, "type": "object", 
"javaType": "org.apache.camel.component.file.GenericFileFilter<java.io.File>", 
"deprecated": false, "autowired": false, "secret": false, "description": 
"Pluggable filter as a org.apache.camel.component.file.GenericFileFilter class. 
Will skip files if filter returns false in its accept() method." },
     "filterDirectory": { "kind": "parameter", "displayName": "Filter 
Directory", "group": "filter", "label": "consumer,filter", "required": false, 
"type": "string", "javaType": "java.lang.String", "deprecated": false, 
"autowired": false, "secret": false, "description": "Filters the directory 
based on Simple language. For example to filter on current date, you can use a 
simple date pattern such as ${date:now:yyyMMdd}" },
     "filterFile": { "kind": "parameter", "displayName": "Filter File", 
"group": "filter", "label": "consumer,filter", "required": false, "type": 
"string", "javaType": "java.lang.String", "deprecated": false, "autowired": 
false, "secret": false, "description": "Filters the file based on Simple 
language. For example to filter on file size, you can use ${file:size} 5000" },
@@ -83,6 +84,7 @@
     "idempotentKey": { "kind": "parameter", "displayName": "Idempotent Key", 
"group": "filter", "label": "consumer,filter", "required": false, "type": 
"string", "javaType": "java.lang.String", "deprecated": false, "autowired": 
false, "secret": false, "description": "To use a custom idempotent key. By 
default the absolute path of the file is used. You can use the File Language, 
for example to use the file name and file size, you can do: 
idempotentKey=${file:name}-${file:size}" },
     "idempotentRepository": { "kind": "parameter", "displayName": "Idempotent 
Repository", "group": "filter", "label": "consumer,filter", "required": false, 
"type": "object", "javaType": "org.apache.camel.spi.IdempotentRepository", 
"deprecated": false, "autowired": false, "secret": false, "description": "A 
pluggable repository org.apache.camel.spi.IdempotentRepository which by default 
use MemoryMessageIdRepository if none is specified and idempotent is true." },
     "include": { "kind": "parameter", "displayName": "Include", "group": 
"filter", "label": "consumer,filter", "required": false, "type": "string", 
"javaType": "java.lang.String", "deprecated": false, "autowired": false, 
"secret": false, "description": "Is used to include files, if filename matches 
the regex pattern (matching is case in-sensitive). Notice if you use symbols 
such as plus sign and others you would need to configure this using the RAW() 
syntax if configuring this as an endp [...]
+    "includeExt": { "kind": "parameter", "displayName": "Include Ext", 
"group": "filter", "label": "consumer,filter", "required": false, "type": 
"string", "javaType": "java.lang.String", "deprecated": false, "autowired": 
false, "secret": false, "description": "Is used to include files matching file 
extension name (case insensitive). For example to include txt files, then use 
includeExt=txt. Multiple extensions can be separated by comma, for example to 
include txt and xml files, use inclu [...]
     "maxDepth": { "kind": "parameter", "displayName": "Max Depth", "group": 
"filter", "label": "consumer,filter", "required": false, "type": "integer", 
"javaType": "int", "deprecated": false, "autowired": false, "secret": false, 
"defaultValue": 2147483647, "description": "The maximum depth to traverse when 
recursively processing a directory." },
     "maxMessagesPerPoll": { "kind": "parameter", "displayName": "Max Messages 
Per Poll", "group": "filter", "label": "consumer,filter", "required": false, 
"type": "integer", "javaType": "int", "deprecated": false, "autowired": false, 
"secret": false, "description": "To define a maximum messages to gather per 
poll. By default no maximum is set. Can be used to set a limit of e.g. 1000 to 
avoid when starting up the server that there are thousands of files. Set a 
value of 0 or negative to di [...]
     "minDepth": { "kind": "parameter", "displayName": "Min Depth", "group": 
"filter", "label": "consumer,filter", "required": false, "type": "integer", 
"javaType": "int", "deprecated": false, "autowired": false, "secret": false, 
"description": "The minimum depth to start processing when recursively 
processing a directory. Using minDepth=1 means the base directory. Using 
minDepth=2 means the first sub directory." },
diff --git 
a/catalog/camel-catalog-provider-springboot/src/main/resources/org/apache/camel/springboot/catalog/components/ftp.json
 
b/catalog/camel-catalog-provider-springboot/src/main/resources/org/apache/camel/springboot/catalog/components/ftp.json
index 410b52c..89acabb 100644
--- 
a/catalog/camel-catalog-provider-springboot/src/main/resources/org/apache/camel/springboot/catalog/components/ftp.json
+++ 
b/catalog/camel-catalog-provider-springboot/src/main/resources/org/apache/camel/springboot/catalog/components/ftp.json
@@ -99,6 +99,7 @@
     "antInclude": { "kind": "parameter", "displayName": "Ant Include", 
"group": "filter", "label": "consumer,filter", "required": false, "type": 
"string", "javaType": "java.lang.String", "deprecated": false, "autowired": 
false, "secret": false, "description": "Ant style filter inclusion. Multiple 
inclusions may be specified in comma-delimited format." },
     "eagerMaxMessagesPerPoll": { "kind": "parameter", "displayName": "Eager 
Max Messages Per Poll", "group": "filter", "label": "consumer,filter", 
"required": false, "type": "boolean", "javaType": "boolean", "deprecated": 
false, "autowired": false, "secret": false, "defaultValue": true, 
"description": "Allows for controlling whether the limit from 
maxMessagesPerPoll is eager or not. If eager then the limit is during the 
scanning of files. Where as false would scan all files, and then per [...]
     "exclude": { "kind": "parameter", "displayName": "Exclude", "group": 
"filter", "label": "consumer,filter", "required": false, "type": "string", 
"javaType": "java.lang.String", "deprecated": false, "autowired": false, 
"secret": false, "description": "Is used to exclude files, if filename matches 
the regex pattern (matching is case in-senstive). Notice if you use symbols 
such as plus sign and others you would need to configure this using the RAW() 
syntax if configuring this as an endpo [...]
+    "excludeExt": { "kind": "parameter", "displayName": "Exclude Ext", 
"group": "filter", "label": "consumer,filter", "required": false, "type": 
"string", "javaType": "java.lang.String", "deprecated": false, "autowired": 
false, "secret": false, "description": "Is used to exclude files matching file 
extension name (case insensitive). For example to exclude bak files, then use 
excludeExt=bak. Multiple extensions can be separated by comma, for example to 
exclude bak and dat files, use exclu [...]
     "filter": { "kind": "parameter", "displayName": "Filter", "group": 
"filter", "label": "consumer,filter", "required": false, "type": "object", 
"javaType": 
"org.apache.camel.component.file.GenericFileFilter<org.apache.commons.net.ftp.FTPFile>",
 "deprecated": false, "autowired": false, "secret": false, "description": 
"Pluggable filter as a org.apache.camel.component.file.GenericFileFilter class. 
Will skip files if filter returns false in its accept() method." },
     "filterDirectory": { "kind": "parameter", "displayName": "Filter 
Directory", "group": "filter", "label": "consumer,filter", "required": false, 
"type": "string", "javaType": "java.lang.String", "deprecated": false, 
"autowired": false, "secret": false, "description": "Filters the directory 
based on Simple language. For example to filter on current date, you can use a 
simple date pattern such as ${date:now:yyyMMdd}" },
     "filterFile": { "kind": "parameter", "displayName": "Filter File", 
"group": "filter", "label": "consumer,filter", "required": false, "type": 
"string", "javaType": "java.lang.String", "deprecated": false, "autowired": 
false, "secret": false, "description": "Filters the file based on Simple 
language. For example to filter on file size, you can use ${file:size} 5000" },
@@ -106,6 +107,7 @@
     "idempotentKey": { "kind": "parameter", "displayName": "Idempotent Key", 
"group": "filter", "label": "consumer,filter", "required": false, "type": 
"string", "javaType": "java.lang.String", "deprecated": false, "autowired": 
false, "secret": false, "description": "To use a custom idempotent key. By 
default the absolute path of the file is used. You can use the File Language, 
for example to use the file name and file size, you can do: 
idempotentKey=${file:name}-${file:size}" },
     "idempotentRepository": { "kind": "parameter", "displayName": "Idempotent 
Repository", "group": "filter", "label": "consumer,filter", "required": false, 
"type": "object", "javaType": "org.apache.camel.spi.IdempotentRepository", 
"deprecated": false, "autowired": false, "secret": false, "description": "A 
pluggable repository org.apache.camel.spi.IdempotentRepository which by default 
use MemoryMessageIdRepository if none is specified and idempotent is true." },
     "include": { "kind": "parameter", "displayName": "Include", "group": 
"filter", "label": "consumer,filter", "required": false, "type": "string", 
"javaType": "java.lang.String", "deprecated": false, "autowired": false, 
"secret": false, "description": "Is used to include files, if filename matches 
the regex pattern (matching is case in-sensitive). Notice if you use symbols 
such as plus sign and others you would need to configure this using the RAW() 
syntax if configuring this as an endp [...]
+    "includeExt": { "kind": "parameter", "displayName": "Include Ext", 
"group": "filter", "label": "consumer,filter", "required": false, "type": 
"string", "javaType": "java.lang.String", "deprecated": false, "autowired": 
false, "secret": false, "description": "Is used to include files matching file 
extension name (case insensitive). For example to include txt files, then use 
includeExt=txt. Multiple extensions can be separated by comma, for example to 
include txt and xml files, use inclu [...]
     "maxDepth": { "kind": "parameter", "displayName": "Max Depth", "group": 
"filter", "label": "consumer,filter", "required": false, "type": "integer", 
"javaType": "int", "deprecated": false, "autowired": false, "secret": false, 
"defaultValue": 2147483647, "description": "The maximum depth to traverse when 
recursively processing a directory." },
     "maxMessagesPerPoll": { "kind": "parameter", "displayName": "Max Messages 
Per Poll", "group": "filter", "label": "consumer,filter", "required": false, 
"type": "integer", "javaType": "int", "deprecated": false, "autowired": false, 
"secret": false, "description": "To define a maximum messages to gather per 
poll. By default no maximum is set. Can be used to set a limit of e.g. 1000 to 
avoid when starting up the server that there are thousands of files. Set a 
value of 0 or negative to di [...]
     "minDepth": { "kind": "parameter", "displayName": "Min Depth", "group": 
"filter", "label": "consumer,filter", "required": false, "type": "integer", 
"javaType": "int", "deprecated": false, "autowired": false, "secret": false, 
"description": "The minimum depth to start processing when recursively 
processing a directory. Using minDepth=1 means the base directory. Using 
minDepth=2 means the first sub directory." },
diff --git 
a/catalog/camel-catalog-provider-springboot/src/main/resources/org/apache/camel/springboot/catalog/components/ftps.json
 
b/catalog/camel-catalog-provider-springboot/src/main/resources/org/apache/camel/springboot/catalog/components/ftps.json
index 5f9874f..9e55a82 100644
--- 
a/catalog/camel-catalog-provider-springboot/src/main/resources/org/apache/camel/springboot/catalog/components/ftps.json
+++ 
b/catalog/camel-catalog-provider-springboot/src/main/resources/org/apache/camel/springboot/catalog/components/ftps.json
@@ -100,6 +100,7 @@
     "antInclude": { "kind": "parameter", "displayName": "Ant Include", 
"group": "filter", "label": "consumer,filter", "required": false, "type": 
"string", "javaType": "java.lang.String", "deprecated": false, "autowired": 
false, "secret": false, "description": "Ant style filter inclusion. Multiple 
inclusions may be specified in comma-delimited format." },
     "eagerMaxMessagesPerPoll": { "kind": "parameter", "displayName": "Eager 
Max Messages Per Poll", "group": "filter", "label": "consumer,filter", 
"required": false, "type": "boolean", "javaType": "boolean", "deprecated": 
false, "autowired": false, "secret": false, "defaultValue": true, 
"description": "Allows for controlling whether the limit from 
maxMessagesPerPoll is eager or not. If eager then the limit is during the 
scanning of files. Where as false would scan all files, and then per [...]
     "exclude": { "kind": "parameter", "displayName": "Exclude", "group": 
"filter", "label": "consumer,filter", "required": false, "type": "string", 
"javaType": "java.lang.String", "deprecated": false, "autowired": false, 
"secret": false, "description": "Is used to exclude files, if filename matches 
the regex pattern (matching is case in-senstive). Notice if you use symbols 
such as plus sign and others you would need to configure this using the RAW() 
syntax if configuring this as an endpo [...]
+    "excludeExt": { "kind": "parameter", "displayName": "Exclude Ext", 
"group": "filter", "label": "consumer,filter", "required": false, "type": 
"string", "javaType": "java.lang.String", "deprecated": false, "autowired": 
false, "secret": false, "description": "Is used to exclude files matching file 
extension name (case insensitive). For example to exclude bak files, then use 
excludeExt=bak. Multiple extensions can be separated by comma, for example to 
exclude bak and dat files, use exclu [...]
     "filter": { "kind": "parameter", "displayName": "Filter", "group": 
"filter", "label": "consumer,filter", "required": false, "type": "object", 
"javaType": 
"org.apache.camel.component.file.GenericFileFilter<org.apache.commons.net.ftp.FTPFile>",
 "deprecated": false, "autowired": false, "secret": false, "description": 
"Pluggable filter as a org.apache.camel.component.file.GenericFileFilter class. 
Will skip files if filter returns false in its accept() method." },
     "filterDirectory": { "kind": "parameter", "displayName": "Filter 
Directory", "group": "filter", "label": "consumer,filter", "required": false, 
"type": "string", "javaType": "java.lang.String", "deprecated": false, 
"autowired": false, "secret": false, "description": "Filters the directory 
based on Simple language. For example to filter on current date, you can use a 
simple date pattern such as ${date:now:yyyMMdd}" },
     "filterFile": { "kind": "parameter", "displayName": "Filter File", 
"group": "filter", "label": "consumer,filter", "required": false, "type": 
"string", "javaType": "java.lang.String", "deprecated": false, "autowired": 
false, "secret": false, "description": "Filters the file based on Simple 
language. For example to filter on file size, you can use ${file:size} 5000" },
@@ -107,6 +108,7 @@
     "idempotentKey": { "kind": "parameter", "displayName": "Idempotent Key", 
"group": "filter", "label": "consumer,filter", "required": false, "type": 
"string", "javaType": "java.lang.String", "deprecated": false, "autowired": 
false, "secret": false, "description": "To use a custom idempotent key. By 
default the absolute path of the file is used. You can use the File Language, 
for example to use the file name and file size, you can do: 
idempotentKey=${file:name}-${file:size}" },
     "idempotentRepository": { "kind": "parameter", "displayName": "Idempotent 
Repository", "group": "filter", "label": "consumer,filter", "required": false, 
"type": "object", "javaType": "org.apache.camel.spi.IdempotentRepository", 
"deprecated": false, "autowired": false, "secret": false, "description": "A 
pluggable repository org.apache.camel.spi.IdempotentRepository which by default 
use MemoryMessageIdRepository if none is specified and idempotent is true." },
     "include": { "kind": "parameter", "displayName": "Include", "group": 
"filter", "label": "consumer,filter", "required": false, "type": "string", 
"javaType": "java.lang.String", "deprecated": false, "autowired": false, 
"secret": false, "description": "Is used to include files, if filename matches 
the regex pattern (matching is case in-sensitive). Notice if you use symbols 
such as plus sign and others you would need to configure this using the RAW() 
syntax if configuring this as an endp [...]
+    "includeExt": { "kind": "parameter", "displayName": "Include Ext", 
"group": "filter", "label": "consumer,filter", "required": false, "type": 
"string", "javaType": "java.lang.String", "deprecated": false, "autowired": 
false, "secret": false, "description": "Is used to include files matching file 
extension name (case insensitive). For example to include txt files, then use 
includeExt=txt. Multiple extensions can be separated by comma, for example to 
include txt and xml files, use inclu [...]
     "maxDepth": { "kind": "parameter", "displayName": "Max Depth", "group": 
"filter", "label": "consumer,filter", "required": false, "type": "integer", 
"javaType": "int", "deprecated": false, "autowired": false, "secret": false, 
"defaultValue": 2147483647, "description": "The maximum depth to traverse when 
recursively processing a directory." },
     "maxMessagesPerPoll": { "kind": "parameter", "displayName": "Max Messages 
Per Poll", "group": "filter", "label": "consumer,filter", "required": false, 
"type": "integer", "javaType": "int", "deprecated": false, "autowired": false, 
"secret": false, "description": "To define a maximum messages to gather per 
poll. By default no maximum is set. Can be used to set a limit of e.g. 1000 to 
avoid when starting up the server that there are thousands of files. Set a 
value of 0 or negative to di [...]
     "minDepth": { "kind": "parameter", "displayName": "Min Depth", "group": 
"filter", "label": "consumer,filter", "required": false, "type": "integer", 
"javaType": "int", "deprecated": false, "autowired": false, "secret": false, 
"description": "The minimum depth to start processing when recursively 
processing a directory. Using minDepth=1 means the base directory. Using 
minDepth=2 means the first sub directory." },
diff --git 
a/catalog/camel-catalog-provider-springboot/src/main/resources/org/apache/camel/springboot/catalog/components/sftp.json
 
b/catalog/camel-catalog-provider-springboot/src/main/resources/org/apache/camel/springboot/catalog/components/sftp.json
index 7ef7083..f80ba4a 100644
--- 
a/catalog/camel-catalog-provider-springboot/src/main/resources/org/apache/camel/springboot/catalog/components/sftp.json
+++ 
b/catalog/camel-catalog-provider-springboot/src/main/resources/org/apache/camel/springboot/catalog/components/sftp.json
@@ -94,6 +94,7 @@
     "antInclude": { "kind": "parameter", "displayName": "Ant Include", 
"group": "filter", "label": "consumer,filter", "required": false, "type": 
"string", "javaType": "java.lang.String", "deprecated": false, "autowired": 
false, "secret": false, "description": "Ant style filter inclusion. Multiple 
inclusions may be specified in comma-delimited format." },
     "eagerMaxMessagesPerPoll": { "kind": "parameter", "displayName": "Eager 
Max Messages Per Poll", "group": "filter", "label": "consumer,filter", 
"required": false, "type": "boolean", "javaType": "boolean", "deprecated": 
false, "autowired": false, "secret": false, "defaultValue": true, 
"description": "Allows for controlling whether the limit from 
maxMessagesPerPoll is eager or not. If eager then the limit is during the 
scanning of files. Where as false would scan all files, and then per [...]
     "exclude": { "kind": "parameter", "displayName": "Exclude", "group": 
"filter", "label": "consumer,filter", "required": false, "type": "string", 
"javaType": "java.lang.String", "deprecated": false, "autowired": false, 
"secret": false, "description": "Is used to exclude files, if filename matches 
the regex pattern (matching is case in-senstive). Notice if you use symbols 
such as plus sign and others you would need to configure this using the RAW() 
syntax if configuring this as an endpo [...]
+    "excludeExt": { "kind": "parameter", "displayName": "Exclude Ext", 
"group": "filter", "label": "consumer,filter", "required": false, "type": 
"string", "javaType": "java.lang.String", "deprecated": false, "autowired": 
false, "secret": false, "description": "Is used to exclude files matching file 
extension name (case insensitive). For example to exclude bak files, then use 
excludeExt=bak. Multiple extensions can be separated by comma, for example to 
exclude bak and dat files, use exclu [...]
     "filter": { "kind": "parameter", "displayName": "Filter", "group": 
"filter", "label": "consumer,filter", "required": false, "type": "object", 
"javaType": 
"org.apache.camel.component.file.GenericFileFilter<org.apache.camel.component.file.remote.SftpRemoteFile>",
 "deprecated": false, "autowired": false, "secret": false, "description": 
"Pluggable filter as a org.apache.camel.component.file.GenericFileFilter class. 
Will skip files if filter returns false in its accept() method." },
     "filterDirectory": { "kind": "parameter", "displayName": "Filter 
Directory", "group": "filter", "label": "consumer,filter", "required": false, 
"type": "string", "javaType": "java.lang.String", "deprecated": false, 
"autowired": false, "secret": false, "description": "Filters the directory 
based on Simple language. For example to filter on current date, you can use a 
simple date pattern such as ${date:now:yyyMMdd}" },
     "filterFile": { "kind": "parameter", "displayName": "Filter File", 
"group": "filter", "label": "consumer,filter", "required": false, "type": 
"string", "javaType": "java.lang.String", "deprecated": false, "autowired": 
false, "secret": false, "description": "Filters the file based on Simple 
language. For example to filter on file size, you can use ${file:size} 5000" },
@@ -101,6 +102,7 @@
     "idempotentKey": { "kind": "parameter", "displayName": "Idempotent Key", 
"group": "filter", "label": "consumer,filter", "required": false, "type": 
"string", "javaType": "java.lang.String", "deprecated": false, "autowired": 
false, "secret": false, "description": "To use a custom idempotent key. By 
default the absolute path of the file is used. You can use the File Language, 
for example to use the file name and file size, you can do: 
idempotentKey=${file:name}-${file:size}" },
     "idempotentRepository": { "kind": "parameter", "displayName": "Idempotent 
Repository", "group": "filter", "label": "consumer,filter", "required": false, 
"type": "object", "javaType": "org.apache.camel.spi.IdempotentRepository", 
"deprecated": false, "autowired": false, "secret": false, "description": "A 
pluggable repository org.apache.camel.spi.IdempotentRepository which by default 
use MemoryMessageIdRepository if none is specified and idempotent is true." },
     "include": { "kind": "parameter", "displayName": "Include", "group": 
"filter", "label": "consumer,filter", "required": false, "type": "string", 
"javaType": "java.lang.String", "deprecated": false, "autowired": false, 
"secret": false, "description": "Is used to include files, if filename matches 
the regex pattern (matching is case in-sensitive). Notice if you use symbols 
such as plus sign and others you would need to configure this using the RAW() 
syntax if configuring this as an endp [...]
+    "includeExt": { "kind": "parameter", "displayName": "Include Ext", 
"group": "filter", "label": "consumer,filter", "required": false, "type": 
"string", "javaType": "java.lang.String", "deprecated": false, "autowired": 
false, "secret": false, "description": "Is used to include files matching file 
extension name (case insensitive). For example to include txt files, then use 
includeExt=txt. Multiple extensions can be separated by comma, for example to 
include txt and xml files, use inclu [...]
     "maxDepth": { "kind": "parameter", "displayName": "Max Depth", "group": 
"filter", "label": "consumer,filter", "required": false, "type": "integer", 
"javaType": "int", "deprecated": false, "autowired": false, "secret": false, 
"defaultValue": 2147483647, "description": "The maximum depth to traverse when 
recursively processing a directory." },
     "maxMessagesPerPoll": { "kind": "parameter", "displayName": "Max Messages 
Per Poll", "group": "filter", "label": "consumer,filter", "required": false, 
"type": "integer", "javaType": "int", "deprecated": false, "autowired": false, 
"secret": false, "description": "To define a maximum messages to gather per 
poll. By default no maximum is set. Can be used to set a limit of e.g. 1000 to 
avoid when starting up the server that there are thousands of files. Set a 
value of 0 or negative to di [...]
     "minDepth": { "kind": "parameter", "displayName": "Min Depth", "group": 
"filter", "label": "consumer,filter", "required": false, "type": "integer", 
"javaType": "int", "deprecated": false, "autowired": false, "secret": false, 
"description": "The minimum depth to start processing when recursively 
processing a directory. Using minDepth=1 means the base directory. Using 
minDepth=2 means the first sub directory." },

Reply via email to