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

21 lines
414 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.putDataLifecycle({
name: "my-weather-sensor-data-stream",
downsampling: [
{
after: "1d",
fixed_interval: "10m",
},
{
after: "7d",
fixed_interval: "1d",
},
],
});
console.log(response);
----