Files
elasticsearch-js/docs/doc_examples/1b37e2237c9e3aaf84d56cc5c0bdb9ec.asciidoc
2024-07-29 17:10:05 -05:00

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);
----