@datatr-ux/ovhcloud-types
Version:
TypeScript types for OVHCloud projects
17 lines • 607 B
TypeScript
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