@microsoft/windows-admin-center-sdk
Version:
Microsoft - Windows Admin Center Shell
20 lines (19 loc) • 549 B
TypeScript
import { SearchType } from './search-type';
/**
* Active directory search options
*/
export interface ActiveDirectorySearchOptions {
/**
* text to build LDAP search string CN part.
* If searchOn is 'custom', this content will be used literally as LDAP search string.
*/
searchString: string;
/**
* text to build LDAP search string objectCategory/objectClass part
*/
searchOn?: SearchType | string | (SearchType | string)[];
/**
* search result entries size limit
*/
sizeLimit?: number;
}