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

13 lines
281 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.cluster.allocationExplain({
index: "my-index",
shard: 0,
primary: false,
});
console.log(response);
----