35 lines
848 B
Plaintext
35 lines
848 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.hasPrivilegesUserProfile({
|
|
uids: [
|
|
"u_LQPnxDxEjIH0GOUoFkZr5Y57YUwSkL9Joiq-g4OCbPc_0",
|
|
"u_rzRnxDgEHIH0GOUoFkZr5Y27YUwSk19Joiq=g4OCxxB_1",
|
|
"u_does-not-exist_0",
|
|
],
|
|
privileges: {
|
|
cluster: ["monitor", "create_snapshot", "manage_ml"],
|
|
index: [
|
|
{
|
|
names: ["suppliers", "products"],
|
|
privileges: ["create_doc"],
|
|
},
|
|
{
|
|
names: ["inventory"],
|
|
privileges: ["read", "write"],
|
|
},
|
|
],
|
|
application: [
|
|
{
|
|
application: "inventory_manager",
|
|
privileges: ["read", "data:write/inventory"],
|
|
resources: ["product/1852563"],
|
|
},
|
|
],
|
|
},
|
|
});
|
|
console.log(response);
|
|
----
|