// 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.shrink({ index: "my_source_index", target: "my_target_index", settings: { "index.routing.allocation.require._name": null, "index.blocks.write": null, }, }); console.log(response); ----