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

14 lines
366 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.putUser({
username: "remote_monitor",
password: "changeme",
roles: ["remote_monitoring_agent"],
full_name: "Internal Agent For Remote Monitoring",
});
console.log(response);
----