// 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: "logs", policy: { phases: { hot: { actions: { rollover: { max_primary_shard_size: "50gb", }, }, }, warm: { min_age: "30d", actions: { shrink: { number_of_shards: 1, }, forcemerge: { max_num_segments: 1, }, }, }, cold: { min_age: "60d", actions: { searchable_snapshot: { snapshot_repository: "found-snapshots", }, }, }, frozen: { min_age: "90d", actions: { searchable_snapshot: { snapshot_repository: "found-snapshots", }, }, }, delete: { min_age: "735d", actions: { delete: {}, }, }, }, }, }); console.log(response); ----