activity_runs
Creates, updates, deletes, gets or lists an activity_runs
resource.
Overview
Name | activity_runs |
Type | Resource |
Id | azure.data_factory.activity_runs |
Fields
The following fields are returned by SELECT
queries:
SELECT
not supported for this resource, use SHOW METHODS
to view available operations for the resource.
Methods
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
query_by_pipeline_run | exec | subscriptionId , resourceGroupName , factoryName , runId , lastUpdatedAfter , lastUpdatedBefore | api-version | Query activity runs based on input filter conditions. |
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 |
---|---|---|
factoryName | string | The factory name. |
resourceGroupName | string | The resource group name. |
runId | string | The pipeline run identifier. |
subscriptionId | string | The subscription identifier. |
api-version | string | The API version. |
Lifecycle Methods
- query_by_pipeline_run
Query activity runs based on input filter conditions.
EXEC azure.data_factory.activity_runs.query_by_pipeline_run
@subscriptionId='{{ subscriptionId }}' --required,
@resourceGroupName='{{ resourceGroupName }}' --required,
@factoryName='{{ factoryName }}' --required,
@runId='{{ runId }}' --required,
@api-version='{{ api-version }}'
@@json=
'{
"continuationToken": "{{ continuationToken }}",
"lastUpdatedAfter": "{{ lastUpdatedAfter }}",
"lastUpdatedBefore": "{{ lastUpdatedBefore }}",
"filters": "{{ filters }}",
"orderBy": "{{ orderBy }}"
}'
;