@datatr-ux/ovhcloud-types
Version:
TypeScript types for OVHCloud projects
30 lines • 963 B
TypeScript
import { Ipv4Block } from '../../Ipv4Block';
import { AuthorizedIpStatusEnum } from './AuthorizedIpStatusEnum';
/** Get authorized IPs for POP(s),IMAP(s), SMTP(s) and HTTP(s) */
export interface ExchangeServiceAuthorizedIp {
/** Webmail,outlook,web Service(EWS) and active sync access (port 443) */
HTTPS: boolean;
/** IMAP access (port 143) */
IMAP: boolean;
/** IMAPS access (port 993) */
IMAPS: boolean;
/** POP access (port 110) */
POP: boolean;
/** POPS access (port 995) */
POPS: boolean;
/** SMTP access (port 25) */
SMTP: boolean;
/** SMTPS access (port 587) */
SMTPS: boolean;
/** Creation date */
creationDate: string;
/** display name */
displayName: string;
/** Allowed IP */
ip: Ipv4Block;
/** Authorized IP status */
status: AuthorizedIpStatusEnum;
/** Last update date */
updateDate?: string;
}
//# sourceMappingURL=ExchangeServiceAuthorizedIp.d.ts.map