OpenAPI: Fix alerting DeleteMuteTiming errors (#91109)

The `GenericPublicError` is not what is actually returned by the API. Using `PublicError` describes the API correctly
This commit is contained in:
Julien Duchesne
2024-08-26 10:04:36 -04:00
committed by GitHub
parent 0075abe383
commit 087df1d8e5
8 changed files with 66 additions and 116 deletions
+12 -21
View File
@@ -1315,14 +1315,6 @@
"title": "Frames is a slice of Frame pointers.",
"type": "array"
},
"GenericPublicError": {
"properties": {
"body": {
"$ref": "#/definitions/PublicError"
}
},
"type": "object"
},
"GettableAlertmanagers": {
"properties": {
"data": {
@@ -4583,7 +4575,6 @@
"type": "object"
},
"alertGroups": {
"description": "AlertGroups alert groups",
"items": {
"$ref": "#/definitions/alertGroup",
"type": "object"
@@ -5919,9 +5910,9 @@
"description": " The mute timing was deleted successfully."
},
"409": {
"description": "GenericPublicError",
"description": "PublicError",
"schema": {
"$ref": "#/definitions/GenericPublicError"
"$ref": "#/definitions/PublicError"
}
}
},
@@ -5997,9 +5988,9 @@
}
},
"409": {
"description": "GenericPublicError",
"description": "PublicError",
"schema": {
"$ref": "#/definitions/GenericPublicError"
"$ref": "#/definitions/PublicError"
}
}
},
@@ -6211,9 +6202,9 @@
"description": " The template was deleted successfully."
},
"409": {
"description": "GenericPublicError",
"description": "PublicError",
"schema": {
"$ref": "#/definitions/GenericPublicError"
"$ref": "#/definitions/PublicError"
}
}
},
@@ -6241,9 +6232,9 @@
}
},
"404": {
"description": "GenericPublicError",
"description": "PublicError",
"schema": {
"$ref": "#/definitions/GenericPublicError"
"$ref": "#/definitions/PublicError"
}
}
},
@@ -6286,15 +6277,15 @@
}
},
"400": {
"description": "GenericPublicError",
"description": "PublicError",
"schema": {
"$ref": "#/definitions/GenericPublicError"
"$ref": "#/definitions/PublicError"
}
},
"409": {
"description": "GenericPublicError",
"description": "PublicError",
"schema": {
"$ref": "#/definitions/GenericPublicError"
"$ref": "#/definitions/PublicError"
}
}
},