Skip to main content

operations_azure_async_header_results

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

Overview

Nameoperations_azure_async_header_results
TypeResource
Idazure.synapse.operations_azure_async_header_results

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
idstringOperation ID
namestringOperation name
endTimestring (date-time)Operation start time
errorobjectErrors from the operation
percentCompletenumberCompletion percentage of the operation
propertiesobjectOperation properties
startTimestring (date-time)Operation start time
statusstringOperation status

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectsubscriptionId, resourceGroupName, workspaceName, operationIdGet the status of an operation

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
operationIdstringOperation ID
resourceGroupNamestringThe name of the resource group. The name is case insensitive.
subscriptionIdstringThe ID of the target subscription.
workspaceNamestringThe name of the workspace.

SELECT examples

Get the status of an operation

SELECT
id,
name,
endTime,
error,
percentComplete,
properties,
startTime,
status
FROM azure.synapse.operations_azure_async_header_results
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND resourceGroupName = '{{ resourceGroupName }}' -- required
AND workspaceName = '{{ workspaceName }}' -- required
AND operationId = '{{ operationId }}' -- required
;