operations_azure_async_header_results
Creates, updates, deletes, gets or lists an operations_azure_async_header_results
resource.
Overview
Name | operations_azure_async_header_results |
Type | Resource |
Id | azure.synapse.operations_azure_async_header_results |
Fields
The following fields are returned by SELECT
queries:
- get
Name | Datatype | Description |
---|---|---|
id | string | Operation ID |
name | string | Operation name |
endTime | string (date-time) | Operation start time |
error | object | Errors from the operation |
percentComplete | number | Completion percentage of the operation |
properties | object | Operation properties |
startTime | string (date-time) | Operation start time |
status | string | Operation status |
Methods
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
get | select | subscriptionId , resourceGroupName , workspaceName , operationId | Get 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.
Name | Datatype | Description |
---|---|---|
operationId | string | Operation ID |
resourceGroupName | string | The name of the resource group. The name is case insensitive. |
subscriptionId | string | The ID of the target subscription. |
workspaceName | string | The name of the workspace. |
SELECT
examples
- get
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
;