25 lines
426 B
Plaintext
25 lines
426 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.create({
|
|
index: 'test',
|
|
body: {
|
|
aliases: {
|
|
alias_1: {},
|
|
alias_2: {
|
|
filter: {
|
|
term: {
|
|
user: 'kimchy'
|
|
}
|
|
},
|
|
routing: 'kimchy'
|
|
}
|
|
}
|
|
}
|
|
})
|
|
console.log(response)
|
|
----
|
|
|