(ruleGroup *RuleGroup)
| 127 | } |
| 128 | |
| 129 | func (this *WAF) AddRuleGroup(ruleGroup *RuleGroup) { |
| 130 | if ruleGroup.IsInbound { |
| 131 | this.Inbound = append(this.Inbound, ruleGroup) |
| 132 | } else { |
| 133 | this.Outbound = append(this.Outbound, ruleGroup) |
| 134 | } |
| 135 | } |
| 136 | |
| 137 | func (this *WAF) RemoveRuleGroup(ruleGroupId int64) { |
| 138 | { |
no outgoing calls