Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Connection Draining add new properties #18052

Merged
merged 3 commits into from
Mar 3, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -1726,6 +1726,20 @@
"$ref": "#/definitions/NatRulePortMapping"
},
"description": "Collection of inbound NAT rule port mappings."
},
"adminState": {
"type": "string",
"description": "A list of administrative states which once set can override health probe so that Load Balancer will always forward new connections to backend, or deny new connections and reset existing connections.",
"enum": [
"None",
"Up",
"Down",
"Drain"
],
"x-ms-enum": {
"name": "LoadBalancerBackendAddressAdminState",
"modelAsString": true
}
}
},
"description": "Properties of the load balancer backend addresses."
Expand Down Expand Up @@ -1805,6 +1819,11 @@
"readOnly": true,
"$ref": "./network.json#/definitions/ProvisioningState",
"description": "The provisioning state of the backend address pool resource."
},
"drainPeriodInSeconds": {
"type": "integer",
"format": "int32",
"description": "Amount of seconds Load Balancer waits for before sending RESET to client and backend address."
}
},
"description": "Properties of the backend address pool."
Expand Down