get_rule
Retrieve detailed information about a specific firewall rule using its group and rule identifiers to manage network security configurations.
Instructions
Get information about a specific firewall rule.
Args: firewall_group_id: The firewall group ID or description (e.g., "web-servers" or UUID) firewall_rule_id: The firewall rule ID
Returns: Firewall rule information
Input Schema
| Name | Required | Description | Default | 
|---|---|---|---|
| firewall_group_id | Yes | ||
| firewall_rule_id | Yes | 
Input Schema (JSON Schema)
{
  "properties": {
    "firewall_group_id": {
      "title": "Firewall Group Id",
      "type": "string"
    },
    "firewall_rule_id": {
      "title": "Firewall Rule Id",
      "type": "string"
    }
  },
  "required": [
    "firewall_group_id",
    "firewall_rule_id"
  ],
  "type": "object"
}