interface Acl {
    action?: AclAction;
    createdAt?: Date;
    description: string;
    frontend?: Frontend;
    id: string;
    index: number;
    match?: AclMatch;
    name: string;
    updatedAt?: Date;
}

Properties

action?: AclAction

Action to take when incoming traffic matches an ACL filter.

createdAt?: Date

Date on which the ACL was created.

description: string

ACL description.

frontend?: Frontend

ACL is attached to this frontend object.

id: string

ACL ID.

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 & http_filter_value are required.

name: string

ACL name.

updatedAt?: Date

Date on which the ACL was last updated.