Test run of new docs
This commit is contained in:
68
docs/reference-security-saml_authenticate.asciidoc
Normal file
68
docs/reference-security-saml_authenticate.asciidoc
Normal file
@ -0,0 +1,68 @@
|
||||
[[reference-security-saml_authenticate]]
|
||||
|
||||
////////
|
||||
===========================================================================================================================
|
||||
|| ||
|
||||
|| ||
|
||||
|| ||
|
||||
|| ██████╗ ███████╗ █████╗ ██████╗ ███╗ ███╗███████╗ ||
|
||||
|| ██╔══██╗██╔════╝██╔══██╗██╔══██╗████╗ ████║██╔════╝ ||
|
||||
|| ██████╔╝█████╗ ███████║██║ ██║██╔████╔██║█████╗ ||
|
||||
|| ██╔══██╗██╔══╝ ██╔══██║██║ ██║██║╚██╔╝██║██╔══╝ ||
|
||||
|| ██║ ██║███████╗██║ ██║██████╔╝██║ ╚═╝ ██║███████╗ ||
|
||||
|| ╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝╚═════╝ ╚═╝ ╚═╝╚══════╝ ||
|
||||
|| ||
|
||||
|| ||
|
||||
|| 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.samlAuthenticate
|
||||
|
||||
Authenticate SAML. Submits a SAML response message to Elasticsearch for consumption.
|
||||
|
||||
{ref}/security-api-saml-authenticate.html[{es} documentation]
|
||||
|
||||
[discrete]
|
||||
==== Function signature
|
||||
|
||||
[source,ts]
|
||||
----
|
||||
(SecuritySamlAuthenticateRequest, options?): Promise<SecuritySamlAuthenticateResponse>
|
||||
----
|
||||
|
||||
[discrete]
|
||||
===== `SecuritySamlAuthenticateRequest`
|
||||
|
||||
[source,ts]
|
||||
----
|
||||
interface SecuritySamlAuthenticateRequest extends <<shared-type-request-base, RequestBase>> {
|
||||
content: string
|
||||
ids: <<shared-type-ids, Ids>>
|
||||
realm?: string
|
||||
}
|
||||
----
|
||||
|
||||
[discrete]
|
||||
===== `SecuritySamlAuthenticateResponse`
|
||||
|
||||
[source,ts]
|
||||
----
|
||||
interface SecuritySamlAuthenticateResponse {
|
||||
access_token: string
|
||||
username: string
|
||||
expires_in: <<shared-type-integer, integer>>
|
||||
refresh_token: string
|
||||
realm: string
|
||||
}
|
||||
----
|
||||
|
||||
Reference in New Issue
Block a user