60 lines
1.3 KiB
Plaintext
60 lines
1.3 KiB
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.bulkPutRole({
|
|
roles: {
|
|
my_admin_role: {
|
|
cluster: ["all"],
|
|
indices: [
|
|
{
|
|
names: ["index1", "index2"],
|
|
privileges: ["all"],
|
|
field_security: {
|
|
grant: ["title", "body"],
|
|
},
|
|
query: '{"match": {"title": "foo"}}',
|
|
},
|
|
],
|
|
applications: [
|
|
{
|
|
application: "myapp",
|
|
privileges: ["admin", "read"],
|
|
resources: ["*"],
|
|
},
|
|
],
|
|
run_as: ["other_user"],
|
|
metadata: {
|
|
version: 1,
|
|
},
|
|
},
|
|
my_user_role: {
|
|
cluster: ["all"],
|
|
indices: [
|
|
{
|
|
names: ["index1"],
|
|
privileges: ["read"],
|
|
field_security: {
|
|
grant: ["title", "body"],
|
|
},
|
|
query: '{"match": {"title": "foo"}}',
|
|
},
|
|
],
|
|
applications: [
|
|
{
|
|
application: "myapp",
|
|
privileges: ["admin", "read"],
|
|
resources: ["*"],
|
|
},
|
|
],
|
|
run_as: ["other_user"],
|
|
metadata: {
|
|
version: 1,
|
|
},
|
|
},
|
|
},
|
|
});
|
|
console.log(response);
|
|
----
|