List a cluster's load balancers
GET
/api/v1/organizations/{orgID}/clusters/{clusterID}/loadbalancers
const url = 'https://api.aetherplatform.cloud/api/v1/organizations/2489E9AD-2EE2-8E00-8EC9-32D5F69181C0/clusters/2489E9AD-2EE2-8E00-8EC9-32D5F69181C0/loadbalancers';const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request GET \ --url https://api.aetherplatform.cloud/api/v1/organizations/2489E9AD-2EE2-8E00-8EC9-32D5F69181C0/clusters/2489E9AD-2EE2-8E00-8EC9-32D5F69181C0/loadbalancers \ --header 'Authorization: Bearer <token>'Read-only listing of load balancers provisioned for the cluster.
Authorizations
Section titled “Authorizations ”Parameters
Section titled “ Parameters ”Path Parameters
Section titled “Path Parameters ” orgID
required
string format: uuid
Organization UUID.
clusterID
required
string format: uuid
Cluster UUID.
Responses
Section titled “ Responses ”A list of load balancers.
Media type application/json
object
items
required
Array<object>
A Kubernetes load-balancer Service exported from the tenant cluster. Currently returns an empty list; populated pending tenant-cluster integration.
object
service_name
required
The Kubernetes Service name.
string
namespace
required
The Kubernetes namespace containing the Service.
string
external_ip
The external IP address assigned by the load balancer (if available).
string
dns_name
The DNS name associated with the load balancer (if available).
string
ports
required
List of port numbers the load balancer is listening on.
Array<integer>
Example generated
{ "items": [ { "service_name": "example", "namespace": "example", "external_ip": "example", "dns_name": "example", "ports": [ 1 ] } ]}Missing or invalid credentials.
Media type application/json
object
error
required
object
code
required
A stable, machine-readable error code.
string
message
required
string
details
Array<object>
object
field
required
string
code
required
string
message
required
string
Example generated
{ "error": { "code": "example", "message": "example", "details": [ { "field": "example", "code": "example", "message": "example" } ] }}The requested resource was not found.
Media type application/json
object
error
required
object
code
required
A stable, machine-readable error code.
string
message
required
string
details
Array<object>
object
field
required
string
code
required
string
message
required
string
Example generated
{ "error": { "code": "example", "message": "example", "details": [ { "field": "example", "code": "example", "message": "example" } ] }}