List Pending CDN Operations
Updated: October 20, 2011
The List Pending CDN Operations operation returns a list of all pending asynchronous CDN Endpoint operation requests. After calling an asynchronous CDN Endpoint operation, you can call List Pending CDN Operations to determine which operations are still in progress.
The List Pending CDN Operations request may be specified as follows. Replace <subscription-id> with your subscription ID.
Method | Request URI | HTTP Version |
|---|---|---|
GET | https://management.core.windows.net/<subscription-id>/services/cdn/operations | HTTP/1.1 |
None.
The following table describes required and optional request headers.
Request Header | Description |
|---|---|
Content-Type | Required. Set this header to application/xml. |
x-ms-version | Required. Specifies the version of the operation to use for this request. This header should be set to 2011-06-30 or later. For more information about versioning headers, see Service Management Versioning. |
None.
The response includes an HTTP status code, a set of response headers, and a response body.
A successful operation returns status code 200 (OK).
For information about status codes, see Service Management Status and Error Codes.
The response for this operation includes the following headers. The response may also include additional standard HTTP headers. All standard headers conform to the HTTP/1.1 protocol specification.
Response Header | Description |
|---|---|
x-ms-request-id | A value that uniquely identifies a request made against the management service. |
The response body contains the collection of asynchronous operations that are currently in progress.
<CdnOperations xmlns="http://schemas.microsoft.com/windowsazure"> <CdnOperation> <Id>request-id</Id> <Name>operation-name</Name> <SubscriberId>subscriber-id</SubscriberId> <Status>InProgress</Status> </CdnOperation> </CdnOperations>
The following table describes the key elements in the response body:
Element name | Description |
|---|---|
CdnOperation | The response includes zero or more of this element, one for each pending asynchronous CDN Endpoint operation request. |
Id | The request ID of the asynchronous request. This value is returned in the x-ms-request-id response header of the asynchronous request. |
Name | The operation name of the asynchronous request. This name is associated internally with the CDN REST API call made with the corresponding request ID. Possible values include CreateCdnEndpoint, DeleteCdnEndpoint, GetCdnEndpoint, GetCdnEndpointConfiguration, UpdateCdnEndpointConfiguration, ListCdnEndpoints, CreateCName, UpdateCName, and DeleteCName. |
SubscriberId | The asynchronous request caller’s subscription ID. |
Status | The status of the asynchronous request. The only value returned for this call is InProgress. |
Any management certificate associated with the subscription specified by <subscription-id> can be used to authenticate this operation. For additional details, see Authenticating Service Management Requests.
The List Pending CDN Operations operation lists only the asynchronous operations that are in progress when the request is received. Use the Get CDN Operation Status operation to obtain information on specific asynchronous CDN Endpoint operations that are in progress or completed.