import { IpBlock } from '../../IpBlock';
import { AclTypeEnum } from '../storage/AclTypeEnum';
/** Define Acl for partition */
export interface Access {
    /** the id of the access */
    accessId: number;
    /** a brief description of the acl */
    aclDescription?: string;
    /** the ip in root on storage */
    ip: IpBlock;
    /** ACL type */
    type: AclTypeEnum;
}
//# sourceMappingURL=Access.d.ts.map