Skip to content

Commit 5e7f6ad

Browse files
Add in_response_to field to SAML response (#5805)
Adds a new field in the response of SAML authentication request, reflecting recent change in elasticsearch Closes elastic/elasticsearch#128179
1 parent 9e6143b commit 5e7f6ad

File tree

5 files changed

+26
-4
lines changed

5 files changed

+26
-4
lines changed

output/openapi/elasticsearch-openapi.json

Lines changed: 5 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

output/schema/schema.json

Lines changed: 14 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

output/typescript/types.ts

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

specification/security/saml_authenticate/Response.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,5 +41,9 @@ export class Response {
4141
* The name of the realm where the user was authenticated.
4242
*/
4343
realm: string
44+
/**
45+
* The id of the request that initiated the authentication process.
46+
*/
47+
in_response_to?: string
4448
}
4549
}

specification/security/saml_authenticate/examples/response/SamlAuthenticateResponseExample1.yaml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,5 +8,6 @@ value: |-
88
"username" : "Bearer",
99
"expires_in" : 1200,
1010
"refresh_token": "mJdXLtmvTUSpoLwMvdBt_w",
11-
"realm": "saml1"
11+
"realm": "saml1",
12+
"in_response_to": "4fee3b046395c4e751011e97f8900b5273d56685"
1213
}

0 commit comments

Comments
 (0)