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

mgmt, m4 error #3577

Draft
wants to merge 2 commits into
base: appservice_base_branch
Choose a base branch
from
Draft
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 @@ -25728,6 +25728,29 @@
}
}
},
"ErrorPage": {
"description": "A custom error page for a specific status returned by a web app.",
"type": "object",
"properties": {
"statusCode": {
"description": "The status code for which the error page will be used",
"type": "integer",
"format": "int32"
},
"content": {
"description": "The content of the error page",
"type": "string"
},
"contentType": {
"description": "The content type of the error page",
"type": "string"
},
"alwaysUse": {
"description": "If true, the error page will be shown for all requests with a matching status code, regardless of whether they failed on the App Service FrontEnd load balancer or on the app itself.",
"type": "boolean"
}
}
},
"ErrorResponse": {
"description": "Error response indicates Logic service is not able to process the incoming request. The error property contains the error details.",
"type": "object",
Expand Down
Loading