21 lines
414 B
Plaintext
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);
|
|
----
|