import { Ipv4 } from '../Ipv4';
import { StateEnum } from './optionAccessNetwork/StateEnum';
/** VMware Aria Operations outgoing flows */
export interface VropsOutgoingFlow {
    /** Outgoing flow description */
    description: string;
    /** IP address of the remote service */
    ip: Ipv4;
    /** Id of the VMware Aria Operations outgoing flow */
    outgoingFlowId: number;
    /** Remote service port (25, 465, 587 or 2525) */
    servicePort: number;
    /** Outgoing flow state */
    state: StateEnum;
}
//# sourceMappingURL=VropsOutgoingFlow.d.ts.map