Files
elasticsearch-js/docs/doc_examples/cf9f51d719a2e90ffe36ed6fe56a4a69.asciidoc
2024-07-29 17:10:05 -05:00

18 lines
418 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.security.putRole({
name: "remote-replication",
cluster: ["manage_ccr"],
indices: [
{
names: ["follower-index-name"],
privileges: ["monitor", "read", "write", "manage_follow_index"],
},
],
});
console.log(response);
----