pause_rule
Temporarily disable a specific firewall rule for a set duration, allowing controlled exceptions without permanent changes. Ideal for testing or temporary access needs.
Instructions
Temporarily disable an active firewall rule for a specified duration
Input Schema
Name | Required | Description | Default |
---|---|---|---|
box | Yes | Box GID for context (required by API) | |
duration | No | Duration in minutes to pause the rule (optional, default: 60, range: 1-1440) | |
rule_id | Yes | Rule ID to pause |
Input Schema (JSON Schema)
{
"properties": {
"box": {
"description": "Box GID for context (required by API)",
"type": "string"
},
"duration": {
"default": 60,
"description": "Duration in minutes to pause the rule (optional, default: 60, range: 1-1440)",
"maximum": 1440,
"minimum": 1,
"type": "number"
},
"rule_id": {
"description": "Rule ID to pause",
"type": "string"
}
},
"required": [
"rule_id",
"box"
],
"type": "object"
}