async_operations
Creates, updates, deletes, gets or lists a async_operations
resource.
Overview
Name | async_operations |
Type | Resource |
Id | azure_stack.storage_admin.async_operations |
Fields
Name | Datatype | Description |
---|---|---|
id | string | The operation id. |
context | object | Operation request 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
Name | Accessible by | Required Params | Description |
---|---|---|---|
get | SELECT | asyncOperationId, location, subscriptionId | Returns the async operation specified by asyncOperationId. |
SELECT
examples
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 asyncOperationId = '{{ asyncOperationId }}'
AND location = '{{ location }}'
AND subscriptionId = '{{ subscriptionId }}';