delete_forwarding_rule
Remove a forwarding rule from a Vultr load balancer to manage traffic routing configurations and optimize network performance.
Instructions
Delete a forwarding rule from a load balancer.
Args: load_balancer_id: The load balancer ID or label (e.g., "web-lb", "api-load-balancer", or UUID) forwarding_rule_id: The forwarding rule ID
Returns: Status message confirming deletion
Input Schema
Name | Required | Description | Default |
---|---|---|---|
forwarding_rule_id | Yes | ||
load_balancer_id | Yes |
Input Schema (JSON Schema)
{
"properties": {
"forwarding_rule_id": {
"title": "Forwarding Rule Id",
"type": "string"
},
"load_balancer_id": {
"title": "Load Balancer Id",
"type": "string"
}
},
"required": [
"load_balancer_id",
"forwarding_rule_id"
],
"type": "object"
}