23 lines
425 B
Plaintext
23 lines
425 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.ilm.putLifecycle({
|
|
name: "shrink-index",
|
|
policy: {
|
|
phases: {
|
|
warm: {
|
|
min_age: "5d",
|
|
actions: {
|
|
shrink: {
|
|
number_of_shards: 4,
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
});
|
|
console.log(response);
|
|
----
|