Open Context Protocol is live! 🚀 Read the launch post
createLoadBalancerForwardingRules

createLoadBalancerForwardingRules

Create Forwarding Rule

POST /load-balancers/{load-balancer-id}/forwarding-rules HTTP/1.1

Parameters

{
  "frontend_protocol": {
    "description": "The protocol on the Load Balancer to forward to the backend.\n\n* HTTP\n* HTTPS\n* TCP",
    "required": true,
    "location": "body",
    "type": "string"
  },
  "frontend_port": {
    "description": "The port number on the Load Balancer to forward to the backend.",
    "required": true,
    "location": "body",
    "type": "integer"
  },
  "backend_protocol": {
    "description": "The protocol destination on the backend server.\n\n* HTTP\n* HTTPS\n* TCP",
    "required": true,
    "location": "body",
    "type": "string"
  },
  "backend_port": {
    "description": "The port number destination on the backend server.",
    "required": true,
    "location": "body",
    "type": "integer"
  }
}