8cb202eb29
* Add JavaScript admin client to repository * Apply review feedback Co-authored-by: Stian Thorgersen <stian@redhat.com> --------- Co-authored-by: Stian Thorgersen <stian@redhat.com>
15 lines
373 B
TypeScript
15 lines
373 B
TypeScript
/**
|
|
* https://www.keycloak.org/docs-api/11.0/rest-api/#_testldapconnectionrepresentation
|
|
*/
|
|
|
|
export default interface TestLdapConnectionRepresentation {
|
|
action?: string;
|
|
connectionUrl?: string;
|
|
bindDn?: string;
|
|
bindCredential?: string;
|
|
useTruststoreSpi?: string;
|
|
connectionTimeout?: string;
|
|
componentId?: string;
|
|
startTls?: string;
|
|
authType?: string;
|
|
}
|