Skip to content

Commit

Permalink
[create-pull-request] automated change
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] authored and oscerd committed Apr 29, 2021
1 parent c1c8ee7 commit 2c668e0
Show file tree
Hide file tree
Showing 15 changed files with 82 additions and 22 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -60,12 +60,6 @@
"priority": "MEDIUM",
"required": "false"
},
"camel.sink.endpoint.propertiesFile": {
"name": "camel.sink.endpoint.propertiesFile",
"description": "The URI of the properties file which is used for AtlasContextFactory initialization.",
"priority": "MEDIUM",
"required": "false"
},
"camel.component.atlasmap.lazyStartProducer": {
"name": "camel.component.atlasmap.lazyStartProducer",
"description": "Whether the producer should be started lazy (on the first message). By starting lazy you can use this to allow CamelContext and routes to startup in situations where a producer may otherwise fail during starting and cause the route to fail being started. By deferring this startup to be lazy then the startup failure can be handled during routing messages via Camel's routing error handlers. Beware that when the first message is processed then creating and starting the producer may take a little time and prolong the total processing time of the processing.",
Expand All @@ -85,6 +79,12 @@
"defaultValue": "true",
"priority": "MEDIUM",
"required": "false"
},
"camel.component.atlasmap.propertiesFile": {
"name": "camel.component.atlasmap.propertiesFile",
"description": "The URI of the properties file which is used for AtlasContextFactory initialization.",
"priority": "MEDIUM",
"required": "false"
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -127,6 +127,13 @@
"priority": "MEDIUM",
"required": "false"
},
"camel.sink.endpoint.useDefaultCredentialsProvider": {
"name": "camel.sink.endpoint.useDefaultCredentialsProvider",
"description": "Set whether the S3 client should expect to load credentials through a default credentials provider or to expect static credentials to be passed in.",
"defaultValue": "false",
"priority": "MEDIUM",
"required": "false"
},
"camel.sink.endpoint.writeCapacity": {
"name": "camel.sink.endpoint.writeCapacity",
"description": "The provisioned throughput to reserved for writing resources to your table",
Expand Down Expand Up @@ -263,6 +270,13 @@
"priority": "MEDIUM",
"required": "false"
},
"camel.component.aws2-ddb.useDefaultCredentialsProvider": {
"name": "camel.component.aws2-ddb.useDefaultCredentialsProvider",
"description": "Set whether the S3 client should expect to load credentials through a default credentials provider or to expect static credentials to be passed in.",
"defaultValue": "false",
"priority": "MEDIUM",
"required": "false"
},
"camel.component.aws2-ddb.writeCapacity": {
"name": "camel.component.aws2-ddb.writeCapacity",
"description": "The provisioned throughput to reserved for writing resources to your table",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -130,6 +130,13 @@
"priority": "MEDIUM",
"required": "false"
},
"camel.source.endpoint.sendingReply": {
"name": "camel.source.endpoint.sendingReply",
"description": "If true, the consumer endpoint will set the Jt400Constants.MESSAGE_REPLYTO_KEY header of the camel message for any IBM i inquiry messages received. If that message is then routed to a producer endpoint, the action will not be processed as sending a message to the queue, but rather a reply to the specific inquiry message.",
"defaultValue": "true",
"priority": "MEDIUM",
"required": "false"
},
"camel.source.endpoint.exceptionHandler": {
"name": "camel.source.endpoint.exceptionHandler",
"description": "To let the consumer use a custom ExceptionHandler. Notice if the option bridgeErrorHandler is enabled then this option is not in use. By default the consumer will deal with exceptions, that will be logged at WARN or ERROR level and ignored.",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -60,12 +60,6 @@
"priority": "MEDIUM",
"required": "false"
},
"camel.sink.endpoint.propertiesFile": {
"name": "camel.sink.endpoint.propertiesFile",
"description": "The URI of the properties file which is used for AtlasContextFactory initialization.",
"priority": "MEDIUM",
"required": "false"
},
"camel.component.atlasmap.lazyStartProducer": {
"name": "camel.component.atlasmap.lazyStartProducer",
"description": "Whether the producer should be started lazy (on the first message). By starting lazy you can use this to allow CamelContext and routes to startup in situations where a producer may otherwise fail during starting and cause the route to fail being started. By deferring this startup to be lazy then the startup failure can be handled during routing messages via Camel's routing error handlers. Beware that when the first message is processed then creating and starting the producer may take a little time and prolong the total processing time of the processing.",
Expand All @@ -85,6 +79,12 @@
"defaultValue": "true",
"priority": "MEDIUM",
"required": "false"
},
"camel.component.atlasmap.propertiesFile": {
"name": "camel.component.atlasmap.propertiesFile",
"description": "The URI of the properties file which is used for AtlasContextFactory initialization.",
"priority": "MEDIUM",
"required": "false"
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -38,10 +38,10 @@ The camel-atlasmap sink connector supports 11 options, which are listed below.
| *camel.sink.endpoint.sourceMapName* | The Exchange property name for a source message map which hold java.util.Map<String, Message> where the key is AtlasMap Document ID. AtlasMap consumes Message bodies as source documents, as well as message headers as source properties where the scope equals to Document ID. | null | false | MEDIUM
| *camel.sink.endpoint.targetMapMode* | TargetMapMode enum value to specify how multiple target documents are delivered if exist. 'MAP': Stores them into a java.util.Map, and the java.util.Map is set to an exchange property if 'targetMapName' is specified, otherwise message body. 'MESSAGE_HEADER': Stores them into message headers. 'EXCHANGE_PROPERTY': Stores them into exchange properties. ) One of: [MAP] [MESSAGE_HEADER] [EXCHANGE_PROPERTY] | "MAP" | false | MEDIUM
| *camel.sink.endpoint.targetMapName* | The Exchange property name for a target document map which hold java.util.Map<String, Object> where the key is AtlasMap Document ID. AtlasMap populates multiple target documents into this map. | null | false | MEDIUM
| *camel.sink.endpoint.propertiesFile* | The URI of the properties file which is used for AtlasContextFactory initialization. | null | false | MEDIUM
| *camel.component.atlasmap.lazyStartProducer* | Whether the producer should be started lazy (on the first message). By starting lazy you can use this to allow CamelContext and routes to startup in situations where a producer may otherwise fail during starting and cause the route to fail being started. By deferring this startup to be lazy then the startup failure can be handled during routing messages via Camel's routing error handlers. Beware that when the first message is processed then creating and starting the producer may take a little time and prolong the total processing time of the processing. | false | false | MEDIUM
| *camel.component.atlasmap.atlasContextFactory* | To use the AtlasContextFactory otherwise a new engine is created. | null | false | MEDIUM
| *camel.component.atlasmap.autowiredEnabled* | Whether autowiring is enabled. This is used for automatic autowiring options (the option must be marked as autowired) by looking up in the registry to find if there is a single instance of matching type, which then gets configured on the component. This can be used for automatic configuring JDBC data sources, JMS connection factories, AWS Clients, etc. | true | false | MEDIUM
| *camel.component.atlasmap.propertiesFile* | The URI of the properties file which is used for AtlasContextFactory initialization. | null | false | MEDIUM
|===


Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -47,9 +47,6 @@ public class CamelAtlasmapSinkConnectorConfig
public static final String CAMEL_SINK_ATLASMAP_ENDPOINT_TARGET_MAP_NAME_CONF = "camel.sink.endpoint.targetMapName";
public static final String CAMEL_SINK_ATLASMAP_ENDPOINT_TARGET_MAP_NAME_DOC = "The Exchange property name for a target document map which hold java.util.Map<String, Object> where the key is AtlasMap Document ID. AtlasMap populates multiple target documents into this map.";
public static final String CAMEL_SINK_ATLASMAP_ENDPOINT_TARGET_MAP_NAME_DEFAULT = null;
public static final String CAMEL_SINK_ATLASMAP_ENDPOINT_PROPERTIES_FILE_CONF = "camel.sink.endpoint.propertiesFile";
public static final String CAMEL_SINK_ATLASMAP_ENDPOINT_PROPERTIES_FILE_DOC = "The URI of the properties file which is used for AtlasContextFactory initialization.";
public static final String CAMEL_SINK_ATLASMAP_ENDPOINT_PROPERTIES_FILE_DEFAULT = null;
public static final String CAMEL_SINK_ATLASMAP_COMPONENT_LAZY_START_PRODUCER_CONF = "camel.component.atlasmap.lazyStartProducer";
public static final String CAMEL_SINK_ATLASMAP_COMPONENT_LAZY_START_PRODUCER_DOC = "Whether the producer should be started lazy (on the first message). By starting lazy you can use this to allow CamelContext and routes to startup in situations where a producer may otherwise fail during starting and cause the route to fail being started. By deferring this startup to be lazy then the startup failure can be handled during routing messages via Camel's routing error handlers. Beware that when the first message is processed then creating and starting the producer may take a little time and prolong the total processing time of the processing.";
public static final Boolean CAMEL_SINK_ATLASMAP_COMPONENT_LAZY_START_PRODUCER_DEFAULT = false;
Expand All @@ -59,6 +56,9 @@ public class CamelAtlasmapSinkConnectorConfig
public static final String CAMEL_SINK_ATLASMAP_COMPONENT_AUTOWIRED_ENABLED_CONF = "camel.component.atlasmap.autowiredEnabled";
public static final String CAMEL_SINK_ATLASMAP_COMPONENT_AUTOWIRED_ENABLED_DOC = "Whether autowiring is enabled. This is used for automatic autowiring options (the option must be marked as autowired) by looking up in the registry to find if there is a single instance of matching type, which then gets configured on the component. This can be used for automatic configuring JDBC data sources, JMS connection factories, AWS Clients, etc.";
public static final Boolean CAMEL_SINK_ATLASMAP_COMPONENT_AUTOWIRED_ENABLED_DEFAULT = true;
public static final String CAMEL_SINK_ATLASMAP_COMPONENT_PROPERTIES_FILE_CONF = "camel.component.atlasmap.propertiesFile";
public static final String CAMEL_SINK_ATLASMAP_COMPONENT_PROPERTIES_FILE_DOC = "The URI of the properties file which is used for AtlasContextFactory initialization.";
public static final String CAMEL_SINK_ATLASMAP_COMPONENT_PROPERTIES_FILE_DEFAULT = null;

public CamelAtlasmapSinkConnectorConfig(
ConfigDef config,
Expand All @@ -79,10 +79,10 @@ public static ConfigDef conf() {
conf.define(CAMEL_SINK_ATLASMAP_ENDPOINT_SOURCE_MAP_NAME_CONF, ConfigDef.Type.STRING, CAMEL_SINK_ATLASMAP_ENDPOINT_SOURCE_MAP_NAME_DEFAULT, ConfigDef.Importance.MEDIUM, CAMEL_SINK_ATLASMAP_ENDPOINT_SOURCE_MAP_NAME_DOC);
conf.define(CAMEL_SINK_ATLASMAP_ENDPOINT_TARGET_MAP_MODE_CONF, ConfigDef.Type.STRING, CAMEL_SINK_ATLASMAP_ENDPOINT_TARGET_MAP_MODE_DEFAULT, ConfigDef.Importance.MEDIUM, CAMEL_SINK_ATLASMAP_ENDPOINT_TARGET_MAP_MODE_DOC);
conf.define(CAMEL_SINK_ATLASMAP_ENDPOINT_TARGET_MAP_NAME_CONF, ConfigDef.Type.STRING, CAMEL_SINK_ATLASMAP_ENDPOINT_TARGET_MAP_NAME_DEFAULT, ConfigDef.Importance.MEDIUM, CAMEL_SINK_ATLASMAP_ENDPOINT_TARGET_MAP_NAME_DOC);
conf.define(CAMEL_SINK_ATLASMAP_ENDPOINT_PROPERTIES_FILE_CONF, ConfigDef.Type.STRING, CAMEL_SINK_ATLASMAP_ENDPOINT_PROPERTIES_FILE_DEFAULT, ConfigDef.Importance.MEDIUM, CAMEL_SINK_ATLASMAP_ENDPOINT_PROPERTIES_FILE_DOC);
conf.define(CAMEL_SINK_ATLASMAP_COMPONENT_LAZY_START_PRODUCER_CONF, ConfigDef.Type.BOOLEAN, CAMEL_SINK_ATLASMAP_COMPONENT_LAZY_START_PRODUCER_DEFAULT, ConfigDef.Importance.MEDIUM, CAMEL_SINK_ATLASMAP_COMPONENT_LAZY_START_PRODUCER_DOC);
conf.define(CAMEL_SINK_ATLASMAP_COMPONENT_ATLAS_CONTEXT_FACTORY_CONF, ConfigDef.Type.STRING, CAMEL_SINK_ATLASMAP_COMPONENT_ATLAS_CONTEXT_FACTORY_DEFAULT, ConfigDef.Importance.MEDIUM, CAMEL_SINK_ATLASMAP_COMPONENT_ATLAS_CONTEXT_FACTORY_DOC);
conf.define(CAMEL_SINK_ATLASMAP_COMPONENT_AUTOWIRED_ENABLED_CONF, ConfigDef.Type.BOOLEAN, CAMEL_SINK_ATLASMAP_COMPONENT_AUTOWIRED_ENABLED_DEFAULT, ConfigDef.Importance.MEDIUM, CAMEL_SINK_ATLASMAP_COMPONENT_AUTOWIRED_ENABLED_DOC);
conf.define(CAMEL_SINK_ATLASMAP_COMPONENT_PROPERTIES_FILE_CONF, ConfigDef.Type.STRING, CAMEL_SINK_ATLASMAP_COMPONENT_PROPERTIES_FILE_DEFAULT, ConfigDef.Importance.MEDIUM, CAMEL_SINK_ATLASMAP_COMPONENT_PROPERTIES_FILE_DOC);
return conf;
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -127,6 +127,13 @@
"priority": "MEDIUM",
"required": "false"
},
"camel.sink.endpoint.useDefaultCredentialsProvider": {
"name": "camel.sink.endpoint.useDefaultCredentialsProvider",
"description": "Set whether the S3 client should expect to load credentials through a default credentials provider or to expect static credentials to be passed in.",
"defaultValue": "false",
"priority": "MEDIUM",
"required": "false"
},
"camel.sink.endpoint.writeCapacity": {
"name": "camel.sink.endpoint.writeCapacity",
"description": "The provisioned throughput to reserved for writing resources to your table",
Expand Down Expand Up @@ -263,6 +270,13 @@
"priority": "MEDIUM",
"required": "false"
},
"camel.component.aws2-ddb.useDefaultCredentialsProvider": {
"name": "camel.component.aws2-ddb.useDefaultCredentialsProvider",
"description": "Set whether the S3 client should expect to load credentials through a default credentials provider or to expect static credentials to be passed in.",
"defaultValue": "false",
"priority": "MEDIUM",
"required": "false"
},
"camel.component.aws2-ddb.writeCapacity": {
"name": "camel.component.aws2-ddb.writeCapacity",
"description": "The provisioned throughput to reserved for writing resources to your table",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ connector.class=org.apache.camel.kafkaconnector.aws2ddb.CamelAws2ddbSinkConnecto
----


The camel-aws2-ddb sink connector supports 39 options, which are listed below.
The camel-aws2-ddb sink connector supports 41 options, which are listed below.



Expand All @@ -47,6 +47,7 @@ The camel-aws2-ddb sink connector supports 39 options, which are listed below.
| *camel.sink.endpoint.region* | The region in which DDB client needs to work | null | false | MEDIUM
| *camel.sink.endpoint.trustAllCertificates* | If we want to trust all certificates in case of overriding the endpoint | false | false | MEDIUM
| *camel.sink.endpoint.uriEndpointOverride* | Set the overriding uri endpoint. This option needs to be used in combination with overrideEndpoint option | null | false | MEDIUM
| *camel.sink.endpoint.useDefaultCredentialsProvider* | Set whether the S3 client should expect to load credentials through a default credentials provider or to expect static credentials to be passed in. | false | false | MEDIUM
| *camel.sink.endpoint.writeCapacity* | The provisioned throughput to reserved for writing resources to your table | null | false | MEDIUM
| *camel.sink.endpoint.accessKey* | Amazon AWS Access Key | null | false | MEDIUM
| *camel.sink.endpoint.secretKey* | Amazon AWS Secret Key | null | false | MEDIUM
Expand All @@ -66,6 +67,7 @@ The camel-aws2-ddb sink connector supports 39 options, which are listed below.
| *camel.component.aws2-ddb.region* | The region in which DDB client needs to work | null | false | MEDIUM
| *camel.component.aws2-ddb.trustAllCertificates* | If we want to trust all certificates in case of overriding the endpoint | false | false | MEDIUM
| *camel.component.aws2-ddb.uriEndpointOverride* | Set the overriding uri endpoint. This option needs to be used in combination with overrideEndpoint option | null | false | MEDIUM
| *camel.component.aws2-ddb.useDefaultCredentials Provider* | Set whether the S3 client should expect to load credentials through a default credentials provider or to expect static credentials to be passed in. | false | false | MEDIUM
| *camel.component.aws2-ddb.writeCapacity* | The provisioned throughput to reserved for writing resources to your table | null | false | MEDIUM
| *camel.component.aws2-ddb.autowiredEnabled* | Whether autowiring is enabled. This is used for automatic autowiring options (the option must be marked as autowired) by looking up in the registry to find if there is a single instance of matching type, which then gets configured on the component. This can be used for automatic configuring JDBC data sources, JMS connection factories, AWS Clients, etc. | true | false | MEDIUM
| *camel.component.aws2-ddb.accessKey* | Amazon AWS Access Key | null | false | MEDIUM
Expand Down
Loading

0 comments on commit 2c668e0

Please sign in to comment.