Skip to content

Commit 111a218

Browse files
jamesottingerGitHub Enterprise
authored andcommitted
Merge pull request #130 from wsmith/feature/fast-track-nodebalancer
new: Documented new "configs" parameter to createNodeBalancer
2 parents 8b4f18b + fe1028d commit 111a218

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
@@ -7108,6 +7108,25 @@ paths:
71087108
$ref: '#/components/schemas/NodeBalancer/properties/label'
71097109
client_conn_throttle:
71107110
$ref: '#/components/schemas/NodeBalancer/properties/client_conn_throttle'
7111+
configs:
7112+
type: array
7113+
description: >
7114+
The ports to configure this NodeBalancer with on creation.
7115+
Each config must have a unique port and at least one Node.
7116+
items:
7117+
allOf:
7118+
- $ref: '#/components/schemas/NodeBalancerConfig'
7119+
- type: object
7120+
properties:
7121+
nodes:
7122+
type: array
7123+
description: >
7124+
The NodeBalancer Nodes that serve this port. When
7125+
creating a NodeBalancer this way, at least one Node
7126+
is required per configured port.
7127+
items:
7128+
$ref: '#/components/schemas/NodeBalancerNode'
7129+
71117130
responses:
71127131
'200':
71137132
description: NodeBalancer created successfully.

0 commit comments

Comments
 (0)