in src/main/java/com/azure/cosmos/kafka/connect/sink/id/strategy/TemplateStrategyConfig.java [30:49]
public static ConfigDef getConfig() {
ConfigDef result = new ConfigDef();
final String groupName = "Template Parameters";
int groupOrder = 0;
result.define(
TEMPLATE_CONFIG,
ConfigDef.Type.STRING,
TEMPLATE_CONFIG_DEFAULT,
ConfigDef.Importance.MEDIUM,
TEMPLATE_CONFIG_DOC,
groupName,
groupOrder++,
ConfigDef.Width.MEDIUM,
TEMPLATE_CONFIG_DISPLAY
);
return result;
}