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

[Hub Generated] Review request for Microsoft.Advisor to add version stable/2020-01-01 #12020

Merged
Merged
Original file line number Diff line number Diff line change
Expand Up @@ -545,7 +545,7 @@
"404": {
"description": "Suppression name is not specified or Suppression Id not found.",
"schema": {
"$ref": "#/definitions/ARMErrorResponseBody"
"$ref": "#/definitions/ArmErrorResponse"
}
}
},
Expand Down Expand Up @@ -603,6 +603,12 @@
"schema": {
"$ref": "#/definitions/SuppressionContract"
}
},
"404": {
"description": "Recommendation to be suppressed is not found.",
"schema": {
"$ref": "#/definitions/ArmErrorResponse"
}
}
},
"deprecated": false,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,14 @@
"ttl": "07:00:00:00"
}
}
},
"404": {
"body": {
"error": {
"code": "NotFound",
"message": "Recommendation to be suppressed is not found. Subscription Id:{0} Recommendation Id:{1}"
}
}
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,10 @@
},
"404": {
"body": {
"code": "NotFound",
"message": "Suppression name is not specified or Suppression Id not found"
"error": {
"code": "NotFound",
"message": "Suppression name is not specified or Suppression Id not found"
}
}
}
}
Expand Down