Files
elasticsearch-js/docs/doc_examples/91c925fc71abe0ddfe52457e9130363b.asciidoc
2024-07-29 17:10:05 -05:00

17 lines
383 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.grantApiKey({
grant_type: "password",
username: "test_admin",
password: "x-pack-test-password",
run_as: "test_user",
api_key: {
name: "another-api-key",
},
});
console.log(response);
----