Skip to content

Commit bd3f68c

Browse files
committed
new: Documented new "configs" parameter to createNodeBalancer
1 parent 54719d3 commit bd3f68c

File tree

1 file changed

+19
-0
lines changed

1 file changed

+19
-0
lines changed

openapi.yaml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7111,6 +7111,25 @@ paths:
71117111
$ref: '#/components/schemas/NodeBalancer/properties/label'
71127112
client_conn_throttle:
71137113
$ref: '#/components/schemas/NodeBalancer/properties/client_conn_throttle'
7114+
configs:
7115+
type: array
7116+
description: >
7117+
The ports to configure this NodeBalancer with on creation.
7118+
Each config must have a unique port and at least one Node.
7119+
items:
7120+
allOf:
7121+
- $ref: '#/components/schemas/NodeBalancerConfig'
7122+
- type: object
7123+
properties:
7124+
nodes:
7125+
type: array
7126+
description: >
7127+
The NodeBalancer Nodes that serve this port. When
7128+
creating a NodeBalancer this way, at least one Node
7129+
is required per configured port.
7130+
items:
7131+
$ref: '#/components/schemas/NodeBalancerNode'
7132+
71147133
responses:
71157134
'200':
71167135
description: NodeBalancer created successfully.

0 commit comments

Comments
 (0)