Test run of new docs
This commit is contained in:
67
docs/reference-security-suggest_user_profiles.asciidoc
Normal file
67
docs/reference-security-suggest_user_profiles.asciidoc
Normal file
@ -0,0 +1,67 @@
|
||||
[[reference-security-suggest_user_profiles]]
|
||||
|
||||
////////
|
||||
===========================================================================================================================
|
||||
|| ||
|
||||
|| ||
|
||||
|| ||
|
||||
|| ██████╗ ███████╗ █████╗ ██████╗ ███╗ ███╗███████╗ ||
|
||||
|| ██╔══██╗██╔════╝██╔══██╗██╔══██╗████╗ ████║██╔════╝ ||
|
||||
|| ██████╔╝█████╗ ███████║██║ ██║██╔████╔██║█████╗ ||
|
||||
|| ██╔══██╗██╔══╝ ██╔══██║██║ ██║██║╚██╔╝██║██╔══╝ ||
|
||||
|| ██║ ██║███████╗██║ ██║██████╔╝██║ ╚═╝ ██║███████╗ ||
|
||||
|| ╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝╚═════╝ ╚═╝ ╚═╝╚══════╝ ||
|
||||
|| ||
|
||||
|| ||
|
||||
|| 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.suggestUserProfiles
|
||||
|
||||
Suggest a user profile. Get suggestions for user profiles that match specified search criteria.
|
||||
|
||||
{ref}/security-api-suggest-user-profile.html[{es} documentation]
|
||||
|
||||
[discrete]
|
||||
==== Function signature
|
||||
|
||||
[source,ts]
|
||||
----
|
||||
(SecuritySuggestUserProfilesRequest, options?): Promise<SecuritySuggestUserProfilesResponse>
|
||||
----
|
||||
|
||||
[discrete]
|
||||
===== `SecuritySuggestUserProfilesRequest`
|
||||
|
||||
[source,ts]
|
||||
----
|
||||
interface SecuritySuggestUserProfilesRequest extends <<shared-type-request-base, RequestBase>> {
|
||||
name?: string
|
||||
size?: <<shared-type-long, long>>
|
||||
data?: string | string[]
|
||||
hint?: SecuritySuggestUserProfilesHint
|
||||
}
|
||||
----
|
||||
|
||||
[discrete]
|
||||
===== `SecuritySuggestUserProfilesResponse`
|
||||
|
||||
[source,ts]
|
||||
----
|
||||
interface SecuritySuggestUserProfilesResponse {
|
||||
total: SecuritySuggestUserProfilesTotalUserProfiles
|
||||
took: <<shared-type-long, long>>
|
||||
profiles: SecurityUserProfile[]
|
||||
}
|
||||
----
|
||||
|
||||
Reference in New Issue
Block a user