Skip to content

Commit ab51718

Browse files
authored
Merge pull request #49613 from tfitzmac/0821async
changed toc
2 parents 154cafe + 0972c5a commit ab51718

File tree

2 files changed

+8
-10
lines changed

2 files changed

+8
-10
lines changed

articles/azure-resource-manager/resource-manager-async-operations.md

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4,21 +4,19 @@ description: Describes how to track asynchronous operations in Azure.
44
services: azure-resource-manager
55
documentationcenter: na
66
author: tfitzmac
7-
manager: timlt
8-
editor: tysonn
97

108
ms.assetid:
119
ms.service: azure-resource-manager
1210
ms.devlang: na
1311
ms.topic: conceptual
1412
ms.tgt_pltfrm: na
1513
ms.workload: na
16-
ms.date: 01/11/2017
14+
ms.date: 08/21/2018
1715
ms.author: tomfitz
1816

1917
---
2018
# Track asynchronous Azure operations
21-
Some Azure REST operations run asynchronously because the operation cannot be completed quickly. This topic describes how to track the status of asynchronous operations through values returned in the response.
19+
Some Azure REST operations run asynchronously because the operation can't be completed quickly. This article describes how to track the status of asynchronous operations through values returned in the response.
2220

2321
## Status codes for asynchronous operations
2422
An asynchronous operation initially returns an HTTP status code of either:
@@ -31,13 +29,13 @@ When the operation successfully completes, it returns either:
3129
* 200 (OK)
3230
* 204 (No Content)
3331

34-
Refer to the [REST API documentation](/rest/api/) to see the responses for the operation you are executing.
32+
Refer to the [REST API documentation](/rest/api/) to see the responses for the operation you're executing.
3533

3634
## Monitor status of operation
3735
The asynchronous REST operations return header values, which you use to determine the status of the operation. There are potentially three header values to examine:
3836

3937
* `Azure-AsyncOperation` - URL for checking the ongoing status of the operation. If your operation returns this value, always use it (instead of Location) to track the status of the operation.
40-
* `Location` - URL for determining when an operation has completed. Use this value only when Azure-AsyncOperation is not returned.
38+
* `Location` - URL for determining when an operation has completed. Use this value only when Azure-AsyncOperation isn't returned.
4139
* `Retry-After` - The number of seconds to wait before checking the status of the asynchronous operation.
4240

4341
However, not every asynchronous operation returns all these values. For example, you may need to evaluate the Azure-AsyncOperation header value for one operation, and the Location header value for another operation.

articles/azure-resource-manager/toc.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -167,6 +167,10 @@
167167
href: resource-manager-sku-not-available-errors.md
168168
- name: Windows deployment issues
169169
href: ../virtual-machines/windows/troubleshoot-deploy-vm.md
170+
- name: Throttling requests
171+
href: resource-manager-request-limits.md
172+
- name: Track asynchronous operations
173+
href: resource-manager-async-operations.md
170174
- name: Reference
171175
items:
172176
- name: Template reference
@@ -212,9 +216,5 @@
212216
href: http://stackoverflow.com/questions/tagged/azure-resource-manager
213217
- name: Manage personal data
214218
href: resource-manager-personal-data.md
215-
- name: Throttling requests
216-
href: resource-manager-request-limits.md
217-
- name: Track asynchronous operations
218-
href: resource-manager-async-operations.md
219219
- name: Videos
220220
href: https://azure.microsoft.com/documentation/videos/index/?services=azure-resource-manager

0 commit comments

Comments
 (0)