SDK Warning
ARM OpenAPI(swagger) specs
- RPC-Async-V1-05
The operation '{0}' returns 202 status code, which indicates a long running operation, please enable 'x-ms-long-running-operation'.
Per x-ms-long-running-operation ,The operation which returns 202 status code indicates a long running operation. Every long running operation must have the x-ms-long-running-operation enabled.
Having the "x-ms-long-running-operation" enabled. Eg:
......
......
"put": {
"operationId": "Foo_Create",
"responses": {
"202": {
"description": ""
},
"x-ms-long-running-operation": true
}
}
......
......