get_forwarding_rule
Retrieve configuration details for a specific forwarding rule within a Vultr load balancer to verify settings and troubleshoot connectivity.
Instructions
Get details of a specific forwarding rule.
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: Forwarding rule details
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"
}