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

22 lines
410 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: "my_policy",
policy: {
phases: {
warm: {
actions: {
shrink: {
max_primary_shard_size: "50gb",
},
},
},
},
},
});
console.log(response);
----