29 lines
566 B
Plaintext
29 lines
566 B
Plaintext
// This file is autogenerated, DO NOT EDIT
|
|
// Use `node scripts/generate-docs-examples.js` to generate the docs examples
|
|
|
|
[source, js]
|
|
----
|
|
const response = await client.indices.putIndexTemplate({
|
|
name: "template_1",
|
|
index_patterns: ["template*"],
|
|
template: {
|
|
settings: {
|
|
number_of_shards: 1,
|
|
},
|
|
aliases: {
|
|
alias1: {},
|
|
alias2: {
|
|
filter: {
|
|
term: {
|
|
"user.id": "kimchy",
|
|
},
|
|
},
|
|
routing: "shard-1",
|
|
},
|
|
"{index}-alias": {},
|
|
},
|
|
},
|
|
});
|
|
console.log(response);
|
|
----
|