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