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

Add new status code for application gateway custom error page #22151

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 @@ -3746,10 +3746,18 @@
"properties": {
"statusCode": {
"type": "string",
"description": "Status code of the application gateway customer error.",
"description": "Status code of the application gateway custom error.",
"enum": [
"HttpStatus400",
"HttpStatus403",
"HttpStatus502"
"HttpStatus404",
"HttpStatus405",
"HttpStatus408",
"HttpStatus499",
"HttpStatus500",
"HttpStatus502",
"HttpStatus503",
"HttpStatus504"
],
"x-ms-enum": {
"name": "ApplicationGatewayCustomErrorStatusCode",
Expand All @@ -3758,10 +3766,10 @@
},
"customErrorPageUrl": {
"type": "string",
"description": "Error page URL of the application gateway customer error."
"description": "Error page URL of the application gateway custom error."
}
},
"description": "Customer error of an application gateway."
"description": "Custom error of an application gateway."
},
"PolicyNameEnum": {
"type": "string",
Expand Down