Skip to content

[Github Actions] Periodic Sync Camel-kafka-connector main Branch #1717

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@
},
"camel.sink.endpoint.properties": {
"name": "camel.sink.endpoint.properties",
"description": "To set additional CXF options using the key\/value pairs from the Map. For example to turn on stacktraces in SOAP faults, properties.faultStackTraceEnabled=true",
"description": "To set additional CXF options using the key\/value pairs from the Map. For example to turn on stacktraces in SOAP faults, properties.faultStackTraceEnabled=true. This is a multi-value option with prefix: properties.",
"priority": "MEDIUM",
"required": "false"
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@
},
"camel.source.endpoint.properties": {
"name": "camel.source.endpoint.properties",
"description": "To set additional CXF options using the key\/value pairs from the Map. For example to turn on stacktraces in SOAP faults, properties.faultStackTraceEnabled=true",
"description": "To set additional CXF options using the key\/value pairs from the Map. For example to turn on stacktraces in SOAP faults, properties.faultStackTraceEnabled=true. This is a multi-value option with prefix: properties.",
"priority": "MEDIUM",
"required": "false"
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -544,7 +544,7 @@
},
"camel.source.endpoint.schedulerProperties": {
"name": "camel.source.endpoint.schedulerProperties",
"description": "To configure additional properties when using a custom scheduler or any of the Quartz, Spring based scheduler.",
"description": "To configure additional properties when using a custom scheduler or any of the Quartz, Spring based scheduler. This is a multi-value option with prefix: scheduler.",
"priority": "MEDIUM",
"required": "false"
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,20 @@
"priority": "MEDIUM",
"required": "false"
},
"camel.sink.endpoint.multipartUpload": {
"name": "camel.sink.endpoint.multipartUpload",
"description": "Whether to force using multipart\/form-data for easy file uploads. This is only to be used for uploading the message body as a single entity form-data. For uploading multiple entries then use org.apache.hc.client5.http.entity.mime.MultipartEntityBuilder to build the form.",
"defaultValue": "false",
"priority": "MEDIUM",
"required": "false"
},
"camel.sink.endpoint.multipartUploadName": {
"name": "camel.sink.endpoint.multipartUploadName",
"description": "The name of the multipart\/form-data when multipartUpload is enabled.",
"defaultValue": "\"data\"",
"priority": "MEDIUM",
"required": "false"
},
"camel.sink.endpoint.skipRequestHeaders": {
"name": "camel.sink.endpoint.skipRequestHeaders",
"description": "Whether to skip mapping all the Camel headers as HTTP request headers. If there are no data from Camel headers needed to be included in the HTTP request then this can avoid parsing overhead with many object allocations for the JVM garbage collector.",
Expand Down Expand Up @@ -212,13 +226,13 @@
},
"camel.sink.endpoint.httpClientOptions": {
"name": "camel.sink.endpoint.httpClientOptions",
"description": "To configure the HttpClient using the key\/values from the Map.",
"description": "To configure the HttpClient using the key\/values from the Map. This is a multi-value option with prefix: httpClient.",
"priority": "MEDIUM",
"required": "false"
},
"camel.sink.endpoint.httpConnectionOptions": {
"name": "camel.sink.endpoint.httpConnectionOptions",
"description": "To configure the connection and the socket using the key\/values from the Map.",
"description": "To configure the connection and the socket using the key\/values from the Map. This is a multi-value option with prefix: httpConnection.",
"priority": "MEDIUM",
"required": "false"
},
Expand All @@ -244,8 +258,8 @@
},
"camel.sink.endpoint.proxyAuthDomain": {
"name": "camel.sink.endpoint.proxyAuthDomain",
"description": "Proxy authentication domain to use with NTML",
"priority": "MEDIUM",
"description": "Proxy authentication domain to use with NTLM",
"priority": "LOW",
"required": "false"
},
"camel.sink.endpoint.proxyAuthHost": {
Expand All @@ -256,19 +270,19 @@
},
"camel.sink.endpoint.proxyAuthMethod": {
"name": "camel.sink.endpoint.proxyAuthMethod",
"description": "Proxy authentication method to use One of: [Basic] [Digest] [NTLM]",
"description": "Proxy authentication method to use One of: [Basic] [Bearer] [NTLM]",
"priority": "MEDIUM",
"required": "false",
"enum": [
"Basic",
"Digest",
"Bearer",
"NTLM"
]
},
"camel.sink.endpoint.proxyAuthNtHost": {
"name": "camel.sink.endpoint.proxyAuthNtHost",
"description": "Proxy authentication domain (workstation name) to use with NTML",
"priority": "MEDIUM",
"description": "Proxy authentication domain (workstation name) to use with NTLM",
"priority": "LOW",
"required": "false"
},
"camel.sink.endpoint.proxyAuthPassword": {
Expand Down Expand Up @@ -311,10 +325,16 @@
"priority": "MEDIUM",
"required": "false"
},
"camel.sink.endpoint.authBearerToken": {
"name": "camel.sink.endpoint.authBearerToken",
"description": "Authentication bearer token",
"priority": "MEDIUM",
"required": "false"
},
"camel.sink.endpoint.authDomain": {
"name": "camel.sink.endpoint.authDomain",
"description": "Authentication domain to use with NTML",
"priority": "MEDIUM",
"description": "Authentication domain to use with NTLM",
"priority": "LOW",
"required": "false"
},
"camel.sink.endpoint.authenticationPreemptive": {
Expand All @@ -326,24 +346,18 @@
},
"camel.sink.endpoint.authHost": {
"name": "camel.sink.endpoint.authHost",
"description": "Authentication host to use with NTML",
"priority": "MEDIUM",
"description": "Authentication host to use with NTLM",
"priority": "LOW",
"required": "false"
},
"camel.sink.endpoint.authMethod": {
"name": "camel.sink.endpoint.authMethod",
"description": "Authentication methods allowed to use as a comma separated list of values Basic, Digest or NTLM.",
"priority": "MEDIUM",
"required": "false"
},
"camel.sink.endpoint.authMethodPriority": {
"name": "camel.sink.endpoint.authMethodPriority",
"description": "Which authentication method to prioritize to use, either as Basic, Digest or NTLM. One of: [Basic] [Digest] [NTLM]",
"description": "Authentication methods allowed to use as a comma separated list of values Basic, Bearer, or NTLM. (NTLM is deprecated) One of: [Basic] [Bearer] [NTLM]",
"priority": "MEDIUM",
"required": "false",
"enum": [
"Basic",
"Digest",
"Bearer",
"NTLM"
]
},
Expand Down Expand Up @@ -392,6 +406,12 @@
"priority": "MEDIUM",
"required": "false"
},
"camel.sink.endpoint.oauth2ResourceIndicator": {
"name": "camel.sink.endpoint.oauth2ResourceIndicator",
"description": "OAuth2 Token endpoint",
"priority": "MEDIUM",
"required": "false"
},
"camel.sink.endpoint.oauth2Scope": {
"name": "camel.sink.endpoint.oauth2Scope",
"description": "OAuth2 scope",
Expand All @@ -400,7 +420,7 @@
},
"camel.sink.endpoint.oauth2TokenEndpoint": {
"name": "camel.sink.endpoint.oauth2TokenEndpoint",
"description": "OAuth2 Token endpoint",
"description": "OAuth2 Resource Indicator",
"priority": "MEDIUM",
"required": "false"
},
Expand Down Expand Up @@ -623,7 +643,7 @@
},
"camel.component.https.proxyAuthMethod": {
"name": "camel.component.https.proxyAuthMethod",
"description": "Proxy authentication method to use One of: [Basic] [Digest] [NTLM]",
"description": "Proxy authentication method to use (NTLM is deprecated) One of: [Basic] [Digest] [NTLM]",
"priority": "MEDIUM",
"required": "false",
"enum": [
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@
},
"camel.sink.endpoint.parameters": {
"name": "camel.sink.endpoint.parameters",
"description": "Optional parameters to the java.sql.Statement. For example to set maxRows, fetchSize etc.",
"description": "Optional parameters to the java.sql.Statement. For example to set maxRows, fetchSize etc. This is a multi-value option with prefix: statement.",
"priority": "MEDIUM",
"required": "false"
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@
},
"camel.sink.endpoint.disconnect": {
"name": "camel.sink.endpoint.disconnect",
"description": "Whether or not to disconnect(close) from Netty Channel right after use. Can be used for both consumer and producer.",
"description": "Whether or not to disconnect(close) from Netty Channel right after use.",
"defaultValue": "false",
"priority": "MEDIUM",
"required": "false"
Expand All @@ -68,14 +68,14 @@
},
"camel.sink.endpoint.reuseChannel": {
"name": "camel.sink.endpoint.reuseChannel",
"description": "This option allows producers and consumers (in client mode) to reuse the same Netty Channel for the lifecycle of processing the Exchange. This is useful if you need to call a server multiple times in a Camel route and want to use the same network connection. When using this, the channel is not returned to the connection pool until the Exchange is done; or disconnected if the disconnect option is set to true. The reused Channel is stored on the Exchange as an exchange property with the key NettyConstants#NETTY_CHANNEL which allows you to obtain the channel during routing and use it as well.",
"description": "This option allows producers and consumers (in client mode) to reuse the same Netty Channel for the lifecycle of processing the Exchange. This is useful if you need to call a server multiple times in a Camel route and want to use the same network connection. When using this, the channel is not returned to the connection pool until the Exchange is done; or disconnected if the disconnect option is set to true. The reused Channel is stored on the Exchange as an exchange property with the key CamelNettyChannel which allows you to obtain the channel during routing and use it as well.",
"defaultValue": "false",
"priority": "MEDIUM",
"required": "false"
},
"camel.sink.endpoint.sync": {
"name": "camel.sink.endpoint.sync",
"description": "Setting to set endpoint as one-way or request-response",
"description": "Setting to set endpoint as one-way (false) or request-response (true)",
"defaultValue": "true",
"priority": "MEDIUM",
"required": "false"
Expand Down Expand Up @@ -204,7 +204,7 @@
},
"camel.sink.endpoint.channelGroup": {
"name": "camel.sink.endpoint.channelGroup",
"description": "To use a explicit ChannelGroup.",
"description": "To use an explicit ChannelGroup.",
"priority": "MEDIUM",
"required": "false"
},
Expand Down Expand Up @@ -242,7 +242,7 @@
},
"camel.sink.endpoint.options": {
"name": "camel.sink.endpoint.options",
"description": "Allows to configure additional netty options using option. as prefix. For example option.child.keepAlive=false to set the netty option child.keepAlive=false. See the Netty documentation for possible options that can be used.",
"description": "Allows to configure additional netty options using option. as prefix. For example option.child.keepAlive=false. See the Netty documentation for possible options that can be used. This is a multi-value option with prefix: option.",
"priority": "MEDIUM",
"required": "false"
},
Expand Down Expand Up @@ -341,7 +341,7 @@
"camel.sink.endpoint.keyStoreFile": {
"name": "camel.sink.endpoint.keyStoreFile",
"description": "Client side certificate keystore to be used for encryption",
"priority": "MEDIUM",
"priority": "LOW",
"required": "false"
},
"camel.sink.endpoint.keyStoreFormat": {
Expand Down Expand Up @@ -397,7 +397,7 @@
"camel.sink.endpoint.trustStoreFile": {
"name": "camel.sink.endpoint.trustStoreFile",
"description": "Server side certificate keystore to be used for encryption",
"priority": "MEDIUM",
"priority": "LOW",
"required": "false"
},
"camel.sink.endpoint.trustStoreResource": {
Expand All @@ -408,13 +408,13 @@
},
"camel.component.netty-http.configuration": {
"name": "camel.component.netty-http.configuration",
"description": "To use the NettyConfiguration as configuration when creating endpoints.",
"description": "To use the NettyConfiguration as configuration when creating endpoints",
"priority": "MEDIUM",
"required": "false"
},
"camel.component.netty-http.disconnect": {
"name": "camel.component.netty-http.disconnect",
"description": "Whether or not to disconnect(close) from Netty Channel right after use. Can be used for both consumer and producer.",
"description": "Whether or not to disconnect(close) from Netty Channel right after use.",
"defaultValue": "false",
"priority": "MEDIUM",
"required": "false"
Expand All @@ -435,14 +435,14 @@
},
"camel.component.netty-http.reuseChannel": {
"name": "camel.component.netty-http.reuseChannel",
"description": "This option allows producers and consumers (in client mode) to reuse the same Netty Channel for the lifecycle of processing the Exchange. This is useful if you need to call a server multiple times in a Camel route and want to use the same network connection. When using this, the channel is not returned to the connection pool until the Exchange is done; or disconnected if the disconnect option is set to true. The reused Channel is stored on the Exchange as an exchange property with the key NettyConstants#NETTY_CHANNEL which allows you to obtain the channel during routing and use it as well.",
"description": "This option allows producers and consumers (in client mode) to reuse the same Netty Channel for the lifecycle of processing the Exchange. This is useful if you need to call a server multiple times in a Camel route and want to use the same network connection. When using this, the channel is not returned to the connection pool until the Exchange is done; or disconnected if the disconnect option is set to true. The reused Channel is stored on the Exchange as an exchange property with the key CamelNettyChannel which allows you to obtain the channel during routing and use it as well.",
"defaultValue": "false",
"priority": "MEDIUM",
"required": "false"
},
"camel.component.netty-http.sync": {
"name": "camel.component.netty-http.sync",
"description": "Setting to set endpoint as one-way or request-response",
"description": "Setting to set endpoint as one-way (false) or request-response (true)",
"defaultValue": "true",
"priority": "MEDIUM",
"required": "false"
Expand Down Expand Up @@ -571,7 +571,7 @@
},
"camel.component.netty-http.channelGroup": {
"name": "camel.component.netty-http.channelGroup",
"description": "To use a explicit ChannelGroup.",
"description": "To use an explicit ChannelGroup.",
"priority": "MEDIUM",
"required": "false"
},
Expand All @@ -596,7 +596,7 @@
},
"camel.component.netty-http.options": {
"name": "camel.component.netty-http.options",
"description": "Allows to configure additional netty options using option. as prefix. For example option.child.keepAlive=false to set the netty option child.keepAlive=false. See the Netty documentation for possible options that can be used.",
"description": "Allows to configure additional netty options using option. as prefix. For example option.child.keepAlive=false. See the Netty documentation for possible options that can be used. This is a multi-value option with prefix: option.",
"priority": "MEDIUM",
"required": "false"
},
Expand Down Expand Up @@ -733,7 +733,7 @@
"camel.component.netty-http.keyStoreFile": {
"name": "camel.component.netty-http.keyStoreFile",
"description": "Client side certificate keystore to be used for encryption",
"priority": "MEDIUM",
"priority": "LOW",
"required": "false"
},
"camel.component.netty-http.keyStoreFormat": {
Expand Down Expand Up @@ -795,7 +795,7 @@
"camel.component.netty-http.trustStoreFile": {
"name": "camel.component.netty-http.trustStoreFile",
"description": "Server side certificate keystore to be used for encryption",
"priority": "MEDIUM",
"priority": "LOW",
"required": "false"
},
"camel.component.netty-http.trustStoreResource": {
Expand Down
Loading