mirror of
https://github.com/TeaOSLab/EdgeCommon.git
synced 2026-01-08 21:45:49 +08:00
11 lines
408 B
Go
11 lines
408 B
Go
package firewallconfigs
|
|
|
|
// HTTPFirewallBlockAction url client configure
|
|
type HTTPFirewallBlockAction struct {
|
|
StatusCode int `yaml:"statusCode" json:"statusCode"`
|
|
Body string `yaml:"body" json:"body"` // supports HTML
|
|
URL string `yaml:"url" json:"url"`
|
|
Timeout int32 `yaml:"timeout" json:"timeout"`
|
|
Scope FirewallScope `yaml:"scope" json:"scope"`
|
|
}
|