32 lines
551 B
Plaintext
32 lines
551 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.putTemplate({
|
|
name: 'template_1',
|
|
body: {
|
|
index_patterns: [
|
|
'te*'
|
|
],
|
|
settings: {
|
|
number_of_shards: 1
|
|
},
|
|
aliases: {
|
|
alias1: {},
|
|
alias2: {
|
|
filter: {
|
|
term: {
|
|
user: 'kimchy'
|
|
}
|
|
},
|
|
routing: 'kimchy'
|
|
},
|
|
'{index}-alias': {}
|
|
}
|
|
}
|
|
})
|
|
console.log(response)
|
|
----
|
|
|