interface AclRule {
    action: Action;
    description?: string;
    destination: string;
    dstPortHigh: number;
    dstPortLow: number;
    protocol: AclRuleProtocol;
    source: string;
    srcPortHigh: number;
    srcPortLow: number;
}

Properties

action: Action

Policy to apply to the packet.

description?: string

Rule description.

destination: string

Destination IP range to which this rule applies (CIDR notation with subnet mask).

dstPortHigh: number

Ending port of the destination port range to which this rule applies (inclusive).

dstPortLow: number

Starting port of the destination port range to which this rule applies (inclusive).

protocol: AclRuleProtocol

Protocol to which this rule applies.

source: string

Source IP range to which this rule applies (CIDR notation with subnet mask).

srcPortHigh: number

Ending port of the source port range to which this rule applies (inclusive).

srcPortLow: number

Starting port of the source port range to which this rule applies (inclusive).