16 lines
373 B
TypeScript
16 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;
|
||
|
}
|