blob: f9ebc0d5d1da24f74f74ac8e7a51a9b37b4ea01b [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.apache.camel.kafkaconnector.mongodbchangesstreamsource;
import java.util.Map;
import javax.annotation.Generated;
import org.apache.camel.kafkaconnector.CamelSourceConnectorConfig;
import org.apache.kafka.common.config.ConfigDef;
@Generated("This class has been generated by camel-kafka-connector-generator-maven-plugin, remove this annotation to prevent it from being generated.")
public class CamelMongodbchangesstreamsourceSourceConnectorConfig
extends
CamelSourceConnectorConfig {
public static final String CAMEL_SOURCE_MONGODBCHANGESSTREAMSOURCE_KAMELET_HOSTS_CONF = "camel.kamelet.mongodb-changes-stream-source.hosts";
public static final String CAMEL_SOURCE_MONGODBCHANGESSTREAMSOURCE_KAMELET_HOSTS_DOC = "Comma separated list of MongoDB Host Addresses in host:port format.";
public static final String CAMEL_SOURCE_MONGODBCHANGESSTREAMSOURCE_KAMELET_HOSTS_DEFAULT = null;
public static final String CAMEL_SOURCE_MONGODBCHANGESSTREAMSOURCE_KAMELET_COLLECTION_CONF = "camel.kamelet.mongodb-changes-stream-source.collection";
public static final String CAMEL_SOURCE_MONGODBCHANGESSTREAMSOURCE_KAMELET_COLLECTION_DOC = "Sets the name of the MongoDB collection to bind to this endpoint.";
public static final String CAMEL_SOURCE_MONGODBCHANGESSTREAMSOURCE_KAMELET_COLLECTION_DEFAULT = null;
public static final String CAMEL_SOURCE_MONGODBCHANGESSTREAMSOURCE_KAMELET_PASSWORD_CONF = "camel.kamelet.mongodb-changes-stream-source.password";
public static final String CAMEL_SOURCE_MONGODBCHANGESSTREAMSOURCE_KAMELET_PASSWORD_DOC = "User password for accessing MongoDB.";
public static final String CAMEL_SOURCE_MONGODBCHANGESSTREAMSOURCE_KAMELET_PASSWORD_DEFAULT = null;
public static final String CAMEL_SOURCE_MONGODBCHANGESSTREAMSOURCE_KAMELET_USERNAME_CONF = "camel.kamelet.mongodb-changes-stream-source.username";
public static final String CAMEL_SOURCE_MONGODBCHANGESSTREAMSOURCE_KAMELET_USERNAME_DOC = "Username for accessing MongoDB. The username must be present in the MongoDB's authentication database (authenticationDatabase). By default, the MongoDB authenticationDatabase is 'admin'.";
public static final String CAMEL_SOURCE_MONGODBCHANGESSTREAMSOURCE_KAMELET_USERNAME_DEFAULT = null;
public static final String CAMEL_SOURCE_MONGODBCHANGESSTREAMSOURCE_KAMELET_DATABASE_CONF = "camel.kamelet.mongodb-changes-stream-source.database";
public static final String CAMEL_SOURCE_MONGODBCHANGESSTREAMSOURCE_KAMELET_DATABASE_DOC = "Sets the name of the MongoDB database to target.";
public static final String CAMEL_SOURCE_MONGODBCHANGESSTREAMSOURCE_KAMELET_DATABASE_DEFAULT = null;
public static final String CAMEL_SOURCE_MONGODBCHANGESSTREAMSOURCE_KAMELET_STREAM_FILTER_CONF = "camel.kamelet.mongodb-changes-stream-source.streamFilter";
public static final String CAMEL_SOURCE_MONGODBCHANGESSTREAMSOURCE_KAMELET_STREAM_FILTER_DOC = "Filter condition for change streams consumer. Example: { '$match':{'$or':[{'fullDocument.stringValue': 'specificValue'}]} }";
public static final String CAMEL_SOURCE_MONGODBCHANGESSTREAMSOURCE_KAMELET_STREAM_FILTER_DEFAULT = null;
public CamelMongodbchangesstreamsourceSourceConnectorConfig(
ConfigDef config,
Map<String, String> parsedConfig) {
super(config, parsedConfig);
}
public CamelMongodbchangesstreamsourceSourceConnectorConfig(
Map<String, String> parsedConfig) {
this(conf(), parsedConfig);
}
public static ConfigDef conf() {
ConfigDef conf = new ConfigDef(CamelSourceConnectorConfig.conf());
conf.define(CAMEL_SOURCE_MONGODBCHANGESSTREAMSOURCE_KAMELET_HOSTS_CONF, ConfigDef.Type.STRING, CAMEL_SOURCE_MONGODBCHANGESSTREAMSOURCE_KAMELET_HOSTS_DEFAULT, ConfigDef.Importance.HIGH, CAMEL_SOURCE_MONGODBCHANGESSTREAMSOURCE_KAMELET_HOSTS_DOC);
conf.define(CAMEL_SOURCE_MONGODBCHANGESSTREAMSOURCE_KAMELET_COLLECTION_CONF, ConfigDef.Type.STRING, CAMEL_SOURCE_MONGODBCHANGESSTREAMSOURCE_KAMELET_COLLECTION_DEFAULT, ConfigDef.Importance.HIGH, CAMEL_SOURCE_MONGODBCHANGESSTREAMSOURCE_KAMELET_COLLECTION_DOC);
conf.define(CAMEL_SOURCE_MONGODBCHANGESSTREAMSOURCE_KAMELET_PASSWORD_CONF, ConfigDef.Type.PASSWORD, CAMEL_SOURCE_MONGODBCHANGESSTREAMSOURCE_KAMELET_PASSWORD_DEFAULT, ConfigDef.Importance.MEDIUM, CAMEL_SOURCE_MONGODBCHANGESSTREAMSOURCE_KAMELET_PASSWORD_DOC);
conf.define(CAMEL_SOURCE_MONGODBCHANGESSTREAMSOURCE_KAMELET_USERNAME_CONF, ConfigDef.Type.STRING, CAMEL_SOURCE_MONGODBCHANGESSTREAMSOURCE_KAMELET_USERNAME_DEFAULT, ConfigDef.Importance.MEDIUM, CAMEL_SOURCE_MONGODBCHANGESSTREAMSOURCE_KAMELET_USERNAME_DOC);
conf.define(CAMEL_SOURCE_MONGODBCHANGESSTREAMSOURCE_KAMELET_DATABASE_CONF, ConfigDef.Type.STRING, CAMEL_SOURCE_MONGODBCHANGESSTREAMSOURCE_KAMELET_DATABASE_DEFAULT, ConfigDef.Importance.HIGH, CAMEL_SOURCE_MONGODBCHANGESSTREAMSOURCE_KAMELET_DATABASE_DOC);
conf.define(CAMEL_SOURCE_MONGODBCHANGESSTREAMSOURCE_KAMELET_STREAM_FILTER_CONF, ConfigDef.Type.STRING, CAMEL_SOURCE_MONGODBCHANGESSTREAMSOURCE_KAMELET_STREAM_FILTER_DEFAULT, ConfigDef.Importance.MEDIUM, CAMEL_SOURCE_MONGODBCHANGESSTREAMSOURCE_KAMELET_STREAM_FILTER_DOC);
return conf;
}
}