ARM Error
ARM OpenAPI(swagger) specs
- RPC-Delete-V1-01, RPC-Async-V1-09
The delete operation is defined without a 200 or 204 error response implementation,please add it.
Per ARM Specs, all DELETE methods (non-async) must have responses code implementation: 200, 204.
May 21, 2020
May 21, 2020
For each operation response, please add the missing code response implementation:
The following would be valid:
...
"path1":{
"delete": {
"parameters": [
.....
.....
]
"response":{
"default": {
"schema":{
"$ref":#/definition/Error
}
},
"200": {
"schema":{
"$ref":#/definition/response
}
},
"204": {
"schema":{
"$ref":#/definition/response
}
}
}
}
}
...