WAF参数定义增加优先级

This commit is contained in:
GoEdgeLab
2022-10-24 17:56:37 +08:00
parent 1424922f13
commit 5a57df66c0
2 changed files with 41 additions and 1 deletions

View File

@@ -18,8 +18,9 @@ type HTTPFirewallCheckpointDefinition struct {
Description string `json:"description"` // 描述
Prefix string `json:"prefix"` // 前缀
IsRequest bool `json:"isRequest"` // 是否为请求
HasParams bool `json:"hasParams"` // 是否有子参数
HasParams bool `json:"hasParams"` // 是否有子参数
Params []*KeyValue `json:"params"` // 参数
Options []OptionInterface `json:"options"` // 选项
IsComposed bool `json:"isComposed"` // 是否为组合的checkpoint
Priority int `json:"priority"` // 优先级
}