22 lines
402 B
Plaintext
22 lines
402 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",
|
|
aliases: {
|
|
alias_1: {},
|
|
alias_2: {
|
|
filter: {
|
|
term: {
|
|
"user.id": "kimchy",
|
|
},
|
|
},
|
|
routing: "shard-1",
|
|
},
|
|
},
|
|
});
|
|
console.log(response);
|
|
----
|