Skip to content

Commit 93dd383

Browse files
Apply suggestions from PR review
Co-authored-by: Weidong Xu <[email protected]>
1 parent f13e0dc commit 93dd383

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

azure/ConsiderationsForServiceDesign.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,7 @@ operation request.
152152

153153
A POST or DELETE operation returns a `202 Accepted` response with the status monitor in the response body.
154154
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.
156156
If a long-running update is required it should be implemented with POST.
157157

158158
There is a special form of long-running operation initiated with PUT that is described
@@ -176,15 +176,15 @@ sequenceDiagram
176176
```
177177

178178
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.
180180
The request may contain an `operation-id` header that the service uses as the ID of the status monitor created for the operation.
181181

182182
2. The service validates the request and initiates the operation processing.
183183
If there are any problems with the request, the service responds with a `4xx` status code and error response body.
184184
Otherwise the service responds with a `202-Accepted` HTTP status code.
185185
The response body is the status monitor for the operation including the ID, either from the request header or generated by the service.
186186
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.
188188
For backward compatibility, the response may also include an `Operation-Location` header containing the absolute URL
189189
of the status monitor resource (without an api-version query parameter).
190190

0 commit comments

Comments
 (0)