async_operations
Creates, updates, deletes, gets or lists an async_operations
resource.
Overview
Name | async_operations |
Type | Resource |
Id | azure_stack.storage_admin.async_operations |
Fields
The following fields are returned by SELECT
queries:
- get
OK -- The async operation has been returned.
Name | Datatype | Description |
---|---|---|
id | string | The operation id. |
context | object | Operation context. |
httpStatus | string | Http status for the async operation. |
locationHeader | string | Location header for async operation. |
operation | object | Async operation content. |
operationEndTime | string | Operation end time. |
operationStartTime | string | Operation start time. |
response | string | Response for the async operation. |
subscriptionId | string | Subscription id for async operation. |
Methods
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
get | select | subscriptionId , location , asyncOperationId | Returns the async operation specified by asyncOperationId. |
Parameters
Parameters can be passed in the WHERE
clause of a query. Check the Methods section to see which parameters are required or optional for each operation.
Name | Datatype | Description |
---|---|---|
asyncOperationId | string | Async Operation Id. |
location | string | Resource location. |
subscriptionId | string | Subscription Id. |
SELECT
examples
- get
Returns the async operation specified by asyncOperationId.
SELECT
id,
context,
httpStatus,
locationHeader,
operation,
operationEndTime,
operationStartTime,
response,
subscriptionId
FROM azure_stack.storage_admin.async_operations
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND location = '{{ location }}' -- required
AND asyncOperationId = '{{ asyncOperationId }}' -- required
;