Lets say I have this template
{
"template" : "te*",
"settings" : {
"number_of_shards" : 1
},
"mappings" : {
"type1" : {
properties":{"TemplateField":{"enabled": false },.... }
}
}
}
It matches indices that match the pattern te*.
I want inside the indice to match only entity type that there name is eqaul to TypeA, TypeB, TypeF
something that will look like
{
"template" : "te*",
"settings" : {
"number_of_shards" : 1
},
"mappings" : {
"typeA, TypeB, TypeC" : {
properties":{"TemplateField":{"enabled": false },.... }
}
}
}