24 lines
526 B
Plaintext
24 lines
526 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.createApiKey({
|
|
name: "my-restricted-api-key",
|
|
role_descriptors: {
|
|
"my-restricted-role-descriptor": {
|
|
indices: [
|
|
{
|
|
names: ["my-search-app"],
|
|
privileges: ["read"],
|
|
},
|
|
],
|
|
restriction: {
|
|
workflows: ["search_application_query"],
|
|
},
|
|
},
|
|
},
|
|
});
|
|
console.log(response);
|
|
----
|