UNPKG

unifi-client

Version:

NodeJs client for Unifi products (https://www.ui.com/)

23 lines (22 loc) 606 B
import { FWRuleActions, ruleSet } from './types'; export interface IFWRuleBaseRaw { _id: string; ruleset: ruleSet; rule_index: string | number; name: string; enabled: boolean; action: FWRuleActions; protocol_match_excepted: boolean; logging: boolean; state_new: boolean; state_established: boolean; state_invalid: boolean; state_related: boolean; ipsec: string; src_firewallgroup_ids: Array<string>; src_mac_address: string; dst_firewallgroup_ids: Array<string>; site_id: string; setting_preference?: string; dst_port?: string; }