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

Modify CircuitBreaker and BackendPool Contract #28397

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 @@ -2349,6 +2349,10 @@
"type": "string",
"format": "duration",
"description": "The duration for which the circuit will be tripped."
},
"acceptRetryAfter": {
"type": "boolean",
"description": "flag to accept Retry-After header from the backend."
}
}
},
Expand Down Expand Up @@ -2441,6 +2445,26 @@
"example": {
"id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/backends/proxybackend"
}
},
"weight": {
"type": "integer",
"format": "int32",
"description": "The weight of the backend entity in the backend pool. Must be between 0 and 100. It can be also null if the value not specified.",
"minimum": 0,
"maximum": 100,
"example": {
"weight": 1
}
},
"priority": {
"type": "integer",
"format": "int32",
"description": "The priority of the backend entity in the backend pool. Must be between 0 and 100. It can be also null if the value not specified.",
"minimum": 0,
"maximum": 100,
"example": {
"priority": 1
}
}
},
"required": [
Expand Down