Files
elasticsearch-js/docs/doc_examples/2e09666d3ad5ad9afc22763ee6e97a2b.asciidoc
2024-08-26 13:57:17 -05:00

17 lines
391 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.slm.putLifecycle({
policy_id: "hourly-snapshots",
schedule: "1h",
name: "<hourly-snap-{now/d}>",
repository: "my_repository",
config: {
indices: ["data-*", "important"],
},
});
console.log(response);
----