Skip to main content

asc_operations

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

Overview

Nameasc_operations
TypeResource
Idazure.storage_cache.asc_operations

Fields

NameDatatypeDescription
idtextThe operation Id.
nametextThe operation name.
end_timetextfield from the properties object
errortextDescribes the format of Error response.
locationtextfield from the properties object
operationIdtextfield from the properties object
outputtextfield from the properties object
start_timetextfield from the properties object
statustextThe status of the operation.
subscriptionIdtextfield from the properties object

Methods

NameAccessible byRequired ParamsDescription
getSELECTlocation, operationId, subscriptionIdGets the status of an asynchronous operation for the Azure HPC Cache

SELECT examples

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

SELECT
id,
name,
end_time,
error,
location,
operationId,
output,
start_time,
status,
subscriptionId
FROM azure.storage_cache.vw_asc_operations
WHERE location = '{{ location }}'
AND operationId = '{{ operationId }}'
AND subscriptionId = '{{ subscriptionId }}';