import { Ipv4 } from '../../Ipv4';
import { FirewallModeEnum } from './FirewallModeEnum';
import { FirewallModelEnum } from './FirewallModelEnum';
/** Firewall attached to this server */
export interface Firewall {
    /**  */
    enabled: boolean;
    /**  */
    firewall: string;
    /** Firewall management IP */
    ip: Ipv4;
    /** transparent mode : device is invisible on the network; routed mode : the security appliance is considered to be a router hop in the network */
    mode: FirewallModeEnum;
    /** Firewall model */
    model?: FirewallModelEnum;
}
//# sourceMappingURL=Firewall.d.ts.map