asc_operations
Creates, updates, deletes, gets or lists an asc_operations
resource.
Overview
Name | asc_operations |
Type | Resource |
Id | azure.storage_cache.asc_operations |
Fields
The following fields are returned by SELECT
queries:
- get
The asynchronous operation was returned.
Name | Datatype | Description |
---|---|---|
id | string | The operation Id. |
name | string | The operation name. |
endTime | string | The end time of the operation. |
error | object | The error detail of the operation if any. |
properties | object | Additional operation-specific properties |
startTime | string | The start time of the operation. |
status | string | The status of the operation. |
Methods
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
get | select | subscriptionId , location , operationId | Gets the status of an asynchronous operation for the Azure HPC Cache |
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 |
---|---|---|
location | string | The name of the Azure region. |
operationId | string | The ID of an ongoing async operation. |
subscriptionId | string (uuid) | The ID of the target subscription. The value must be an UUID. |
SELECT
examples
- get
Gets the status of an asynchronous operation for the Azure HPC Cache
SELECT
id,
name,
endTime,
error,
properties,
startTime,
status
FROM azure.storage_cache.asc_operations
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND location = '{{ location }}' -- required
AND operationId = '{{ operationId }}' -- required
;