27 lines
643 B
Plaintext
27 lines
643 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-connector-api-key",
|
|
role_descriptors: {
|
|
"my-connector-connector-role": {
|
|
cluster: ["monitor", "manage_connector"],
|
|
indices: [
|
|
{
|
|
names: [
|
|
"my-index_name",
|
|
".search-acl-filter-my-index_name",
|
|
".elastic-connectors*",
|
|
],
|
|
privileges: ["all"],
|
|
allow_restricted_indices: false,
|
|
},
|
|
],
|
|
},
|
|
},
|
|
});
|
|
console.log(response);
|
|
----
|