import { IpBlock } from '../../IpBlock';
/** Backup Ftp ACL for this server and Backup Ftp */
export interface BackupFtpAcl {
    /** Whether to allow the CIFS (SMB) protocol for this ACL */
    cifs: boolean;
    /** Whether to allow the FTP protocol for this ACL */
    ftp: boolean;
    /** The IP Block specific to this ACL */
    ipBlock: IpBlock;
    /** Whether the rule has been applied on the Backup Ftp */
    isApplied: boolean;
    /** Date of the last object modification */
    lastUpdate: string;
    /** Whether to allow the NFS protocol for this ACL */
    nfs: boolean;
}
//# sourceMappingURL=BackupFtpAcl.d.ts.map