Create HTTP Load Balancer¶
Medium Risk
Some operations on this resource may modify or delete data.
Create HTTP/HTTPS load balancer using the discovered virtual server as an origin server.
Tools¶
| Tool | Description |
|---|---|
f5xc-api-statistics-create-http-load-balancer-create | Create HTTP/HTTPS load balancer. |
Parameters¶
Path Parameters¶
| Parameter | Description | Example |
|---|---|---|
name | Service Name | - |
namespace | Namespace | - |
Side Effects¶
Operations on this resource may have the following effects:
Creates:
- create-http-load-balancer
Example Usage¶
Ask Claude to help you work with Create HTTP Load Balancer resources:
Create Create HTTP Load Balancer¶
"Create a create-http-load-balancer named 'example' in the 'production' namespace"
CURL Examples¶
# List resources
curl -X GET "https://${TENANT}.console.ves.volterra.io/api/config/namespaces/${NAMESPACE}/create_http_load_balancers" \
-H "Authorization: APIToken ${F5XC_API_TOKEN}" \
-H "Content-Type: application/json"
# Get specific resource
curl -X GET "https://${TENANT}.console.ves.volterra.io/api/config/namespaces/${NAMESPACE}/create_http_load_balancers/<name>" \
-H "Authorization: APIToken ${F5XC_API_TOKEN}" \
-H "Content-Type: application/json"
# Create resource
curl -X POST "https://${TENANT}.console.ves.volterra.io/api/config/namespaces/${NAMESPACE}/create_http_load_balancers" \
-H "Authorization: APIToken ${F5XC_API_TOKEN}" \
-H "Content-Type: application/json" \
-d @create_http_load_balancer.json
# Delete resource
curl -X DELETE "https://${TENANT}.console.ves.volterra.io/api/config/namespaces/${NAMESPACE}/create_http_load_balancers/<name>" \
-H "Authorization: APIToken ${F5XC_API_TOKEN}"