Skip to content

Commit

Permalink
Connection Draining add new properties (#18052)
Browse files Browse the repository at this point in the history
* merge

* fix

* fix
  • Loading branch information
matyang22 authored Mar 3, 2022
1 parent 9713086 commit cb3a28c
Showing 1 changed file with 19 additions and 0 deletions.
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

0 comments on commit cb3a28c

Please sign in to comment.