20 lines
447 B
Plaintext
20 lines
447 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.shrink({
|
|
index: "my_source_index",
|
|
target: "my_target_index",
|
|
settings: {
|
|
"index.number_of_replicas": 1,
|
|
"index.number_of_shards": 1,
|
|
"index.codec": "best_compression",
|
|
},
|
|
aliases: {
|
|
my_search_indices: {},
|
|
},
|
|
});
|
|
console.log(response);
|
|
----
|