Skip to content
Merged
Changes from 1 commit
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
Next Next commit
add customer error spec for Application Gateway
  • Loading branch information
KaiChiLin committed Sep 19, 2018
commit d9a3af34891cc703ecc3ba298fc737d6cc3e0fc0
Original file line number Diff line number Diff line change
Expand Up @@ -1217,7 +1217,14 @@
"provisioningState": {
"type": "string",
"description": "Provisioning state of the HTTP listener resource. Possible values are: 'Updating', 'Deleting', and 'Failed'."
}
},
"CustomErrorConfiguration": {
"type": "array",
"items": {
"$ref": "#/definitions/ApplicationGatewayCustomError"
},
"description": "Custom error configurations of the HTTP listener."
}
},
"description": "Properties of HTTP listener of an application gateway."
},
Expand Down Expand Up @@ -1683,7 +1690,14 @@
"provisioningState": {
"type": "string",
"description": "Provisioning state of the application gateway resource. Possible values are: 'Updating', 'Deleting', and 'Failed'."
}
},
"CustomErrorConfiguration": {
"type": "array",
"items": {
"$ref": "#/definitions/ApplicationGatewayCustomError"
},
"description": "Custom error configurations of the application gateway resource."
}
},
"description": "Properties of the application gateway."
},
Expand Down Expand Up @@ -2084,6 +2098,27 @@
}
},
"description": "Properties of ApplicationGatewaySslPredefinedPolicy"
},
"ApplicationGatewayCustomError": {
"properties": {
"StatusCode": {
"type": "string",
"description": "Status code of the application gateway customer error.",
"enum": [
"403",
"502"
],
"x-ms-enum": {
"name": "ApplicationGatewayCustomErrorStatusCode",
"modelAsString": true
}
},
"CustomErrorPageUrl": {
"type": "string",
"description": "Error page URL of the application gateway customer error."
}
},
"description": "Customer error of an application gateway."
},
"PolicyNameEnum": {
"type": "string",
Expand Down