interface WafStage {
    backendStageId?: string;
    createdAt?: Date;
    id: string;
    mode: WafStageMode;
    paranoiaLevel: number;
    pipelineId: string;
    updatedAt?: Date;
}

Properties

backendStageId?: string

ID of the backend stage to forward requests to after the WAF stage.

One-of ('next'): at most one of 'backendStageId' could be set.

createdAt?: Date

Date the WAF stage was created.

id: string

ID of the WAF stage.

Mode defining WAF behavior (disable/log_only/enable).

paranoiaLevel: number

Sensitivity level (1,2,3,4) to use when classifying requests as malicious. With a high level, requests are more likely to be classed as malicious, and false positives are expected. With a lower level, requests are more likely to be classed as benign.

pipelineId: string

Pipeline ID the WAF stage belongs to.

updatedAt?: Date

Date the WAF stage was last updated.