asc_operations
Creates, updates, deletes, gets or lists a asc_operations
resource.
Overview
Name | asc_operations |
Type | Resource |
Id | azure.storage_cache.asc_operations |
Fields
- vw_asc_operations
- asc_operations
Name | Datatype | Description |
---|---|---|
id | text | The operation Id. |
name | text | The operation name. |
end_time | text | field from the properties object |
error | text | Describes the format of Error response. |
location | text | field from the properties object |
operationId | text | field from the properties object |
output | text | field from the properties object |
start_time | text | field from the properties object |
status | text | The status of the operation. |
subscriptionId | text | field from the properties object |
Name | Datatype | Description |
---|---|---|
id | string | The operation Id. |
name | string | The operation name. |
endTime | string | The end time of the operation. |
error | object | Describes the format of Error response. |
properties | object | Additional operation-specific output. |
startTime | string | The start time of the operation. |
status | string | The status of the operation. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
get | SELECT | location, operationId, subscriptionId | Gets 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
- vw_asc_operations
- asc_operations
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 }}';
SELECT
id,
name,
endTime,
error,
properties,
startTime,
status
FROM azure.storage_cache.asc_operations
WHERE location = '{{ location }}'
AND operationId = '{{ operationId }}'
AND subscriptionId = '{{ subscriptionId }}';