interface AclSpec {
    action: AclAction;
    description: string;
    index: number;
    match?: AclMatch;
    name: string;
}

Properties

action: AclAction

Action to take when incoming traffic matches an ACL filter.

description: string

ACL description.

index: number

Priority of this ACL (ACLs are applied in ascending order, 0 is the first ACL executed).

match?: AclMatch

ACL match filter object. One of ip_subnet or http_filter and http_filter_value are required.

name: string

ACL name.