Files
elasticsearch-js/docs/reference-security-get_api_key.asciidoc
2024-12-05 14:46:52 -06:00

81 lines
4.3 KiB
Plaintext

[[reference-security-get_api_key]]
////////
===========================================================================================================================
|| ||
|| ||
|| ||
|| ██████╗ ███████╗ █████╗ ██████╗ ███╗ ███╗███████╗ ||
|| ██╔══██╗██╔════╝██╔══██╗██╔══██╗████╗ ████║██╔════╝ ||
|| ██████╔╝█████╗ ███████║██║ ██║██╔████╔██║█████╗ ||
|| ██╔══██╗██╔══╝ ██╔══██║██║ ██║██║╚██╔╝██║██╔══╝ ||
|| ██║ ██║███████╗██║ ██║██████╔╝██║ ╚═╝ ██║███████╗ ||
|| ╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝╚═════╝ ╚═╝ ╚═╝╚══════╝ ||
|| ||
|| ||
|| This file is autogenerated, DO NOT send pull requests that changes this file directly. ||
|| You should update the script that does the generation, which can be found in: ||
|| https://github.com/elastic/elastic-client-generator-js ||
|| ||
|| You can run the script with the following command: ||
|| npm run elasticsearch -- --version <version> ||
|| ||
|| ||
|| ||
===========================================================================================================================
////////
[discrete]
[[client.security.getApiKey]]
=== client.security.getApiKey
Get API key information. Retrieves information for one or more API keys. NOTE: If you have only the `manage_own_api_key` privilege, this API returns only the API keys that you own. If you have `read_security`, `manage_api_key` or greater privileges (including `manage_security`), this API returns all API keys regardless of ownership.
{ref}/security-api-get-api-key.html[{es} documentation]
[discrete]
==== Function signature
[source,ts]
----
(SecurityGetApiKeyRequest, options?): Promise<SecurityGetApiKeyResponse>
----
[discrete]
==== SecurityGetApiKeyRequest
[pass]
++++
<pre>
++++
interface SecurityGetApiKeyRequest extends <<RequestBase>> {
id?: <<Id>>
name?: <<Name>>
owner?: boolean
realm_name?: <<Name>>
username?: <<Username>>
with_limited_by?: boolean
active_only?: boolean
with_profile_uid?: boolean
}
[pass]
++++
</pre>
++++
[discrete]
==== SecurityGetApiKeyResponse
[pass]
++++
<pre>
++++
interface SecurityGetApiKeyResponse {
api_keys: SecurityApiKey[]
}
[pass]
++++
</pre>
++++