Skip to main content

asc_operations

Creates, updates, deletes, gets or lists an asc_operations resource.

Overview

Nameasc_operations
TypeResource
Idazure.storage_cache.asc_operations

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
idstringThe operation Id.
namestringThe operation name.
endTimestringThe end time of the operation.
errorobjectThe error detail of the operation if any.
outputobjectAdditional operation-specific output.
startTimestringThe start time of the operation.
statusstringThe status of the operation.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectlocation, operation_id, subscription_idGets 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.

NameDatatypeDescription
locationstringThe name of the Azure region. Required.
operation_idstringThe ID of an ongoing async operation. Required.
subscription_idstring

SELECT examples

Gets the status of an asynchronous operation for the Azure HPC Cache.

SELECT
id,
name,
endTime,
error,
output,
startTime,
status
FROM azure.storage_cache.asc_operations
WHERE location = '{{ location }}' -- required
AND operation_id = '{{ operation_id }}' -- required
AND subscription_id = '{{ subscription_id }}' -- required
;