Skip to content

Commit

Permalink
Amend error response to indicate that we return additional error info. (
Browse files Browse the repository at this point in the history
  • Loading branch information
jimmyca15 authored Nov 16, 2020
1 parent 33fc25f commit ee92c07
Showing 1 changed file with 23 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1656,6 +1656,14 @@
"description": "Error message indicating why the operation failed.",
"type": "string",
"readOnly": true
},
"additionalInfo": {
"readOnly": true,
"type": "array",
"items": {
"$ref": "#/definitions/ErrorAdditionalInfo"
},
"description": "The error additional info."
}
}
},
Expand All @@ -1669,6 +1677,21 @@
}
}
},
"ErrorAdditionalInfo": {
"properties": {
"type": {
"readOnly": true,
"type": "string",
"description": "The additional info type."
},
"info": {
"readOnly": true,
"type": "object",
"description": "The additional info."
}
},
"description": "The resource management error additional info."
},
"Resource": {
"description": "An Azure resource.",
"required": [
Expand Down

0 comments on commit ee92c07

Please sign in to comment.