18 lines
418 B
Plaintext
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);
|
|
----
|