15 lines
390 B
TypeScript
15 lines
390 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;
|
|
}
|