Get all load-balancer custom rules
GET/api/v1/services/:service_id/load-balancers/:load_balancer_id/custom-rules/
Returns the list of load-balancer custom rules of a load-balancer.
Request
Path Parameters
load_balancer_id stringrequired
service_id stringrequired
Responses
- 200
- application/json
- Schema
- Example (from schema)
Schema
Array [
]
id uuidrequired
load_balancer uuidrequired
matching_rule required
name stringrequired
Possible values: <= 255 characters
, Value must match regular expression ^[a-zA-Z0-9_\-\s]*$
origin_set uuidrequired
origin_set_name stringrequired
priority int64nullable
Possible values: >= -9223372036854776000
and <= 9223372036854776000
[
{
"id": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"load_balancer": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"matching_rule": {},
"name": "string",
"origin_set": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"origin_set_name": "string",
"priority": 0
}
]
Loading...