Skip to content

Commit

Permalink
fixing ErrorResponse
Browse files Browse the repository at this point in the history
  • Loading branch information
Meha Kaushik committed Jul 16, 2020
1 parent 18d8799 commit cab5d0f
Showing 1 changed file with 59 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -5208,19 +5208,73 @@
},
"description": "The List operation response, that contains the graphs and their properties."
},
"ErrorResponse": {
"ApiErrorBase": {
"properties": {
"code": {
"description": "Error code.",
"type": "string"
"type": "string",
"description": "The error code."
},
"target": {
"type": "string",
"description": "The target of the particular error."
},
"message": {
"description": "Error message indicating why the operation failed.",
"type": "string"
"type": "string",
"description": "The error message."
}
},
"description": "Api error base."
},
"InnerError": {
"properties": {
"exceptiontype": {
"type": "string",
"description": "The exception type."
},
"errordetail": {
"type": "string",
"description": "The internal error message or exception dump."
}
},
"description": "Inner error details."
},
"ErrorResponse": {
"x-ms-external": true,
"properties": {
"error": {
"$ref": "#/definitions/ApiError"
}
},
"description": "Error Response."
},
"ApiError": {
"properties": {
"details": {
"type": "array",
"items": {
"$ref": "#/definitions/ApiErrorBase"
},
"description": "The Api error details"
},
"innererror": {
"$ref": "#/definitions/InnerError",
"description": "The Api inner error"
},
"code": {
"type": "string",
"description": "The error code."
},
"target": {
"type": "string",
"description": "The target of the particular error."
},
"message": {
"type": "string",
"description": "The error message."
}
},
"description": "Api error."
},
"FailoverPolicies": {
"properties": {
"failoverPolicies": {
Expand Down

0 comments on commit cab5d0f

Please sign in to comment.