You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: azure/ConsiderationsForServiceDesign.md
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -152,7 +152,7 @@ operation request.
152
152
153
153
A POST or DELETE operation returns a `202 Accepted` response with the status monitor in the response body.
154
154
A long-running POST should not be used for resource create -- use PUT as described below.
155
-
PATCH must never be used for LROs -- it should be reserved for simple resource updates.
155
+
PATCH must never be used for long-running operations -- it should be reserved for simple resource updates.
156
156
If a long-running update is required it should be implemented with POST.
157
157
158
158
There is a special form of long-running operation initiated with PUT that is described
@@ -176,15 +176,15 @@ sequenceDiagram
176
176
```
177
177
178
178
1. The client sends the request to initiate the long-running operation.
179
-
The initial request could be a PUT, POST, or DELETE method.
179
+
The initial request could be a POST or DELETE method.
180
180
The request may contain an `operation-id` header that the service uses as the ID of the status monitor created for the operation.
181
181
182
182
2. The service validates the request and initiates the operation processing.
183
183
If there are any problems with the request, the service responds with a `4xx` status code and error response body.
184
184
Otherwise the service responds with a `202-Accepted` HTTP status code.
185
185
The response body is the status monitor for the operation including the ID, either from the request header or generated by the service.
186
186
When returning a status monitor whose status is not in a terminal state, the response must also include a `retry-after` header indicating the minimum number of seconds the client should wait
187
-
before polling (GETting) the status monitor URL again for an update.
187
+
before polling (GETing) the status monitor URL again for an update.
188
188
For backward compatibility, the response may also include an `Operation-Location` header containing the absolute URL
189
189
of the status monitor resource (without an api-version query parameter).
0 commit comments