@datatr-ux/ovhcloud-types
Version:
TypeScript types for OVHCloud projects
28 lines • 1.12 kB
TypeScript
import { SmartHostAuthMechanismEnum } from './SmartHostAuthMechanismEnum';
import { ObjectStateEnum } from './ObjectStateEnum';
/** Exchange Send Connector */
export interface SendConnector {
/** Creation date */
creationDate: string;
/** Name of your send connector */
displayName: string;
/** Id of this send connector */
id?: number;
/** Last update date */
lastUpdateDate?: string;
/** Maximum send size in MB */
maxSendSize: number;
/** Port adress that will be used to all e-mails send via this send connector */
port: number;
/** All messages sent through this connector will be transmitted using TLS */
requireTLS: boolean;
/** Relay domain address that will be used to all e-mails send via this send connector */
smartHost: string;
/** Authentication mechanism to use for authentication with a smart host */
smartHostAuthMechanism: SmartHostAuthMechanismEnum;
/** Send connector state */
state: ObjectStateEnum;
/** Pending task for this send connector */
taskPendingId?: number;
}
//# sourceMappingURL=SendConnector.d.ts.map