Skip to main content

pipelines_runs

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

Overview

Namepipelines_runs
TypeResource
Idazure.data_factory.pipelines_runs

Fields

SELECT not supported for this resource, use SHOW METHODS to view available operations for the resource.

Methods

NameAccessible byRequired ParamsDescription
createINSERTfactoryName, pipelineName, resourceGroupName, subscriptionIdCreates a run of a pipeline.

INSERT example

Use the following StackQL query and manifest file to create a new pipelines_runs resource.

/*+ create */
INSERT INTO azure.data_factory.pipelines_runs (
factoryName,
pipelineName,
resourceGroupName,
subscriptionId
)
SELECT
'{{ factoryName }}',
'{{ pipelineName }}',
'{{ resourceGroupName }}',
'{{ subscriptionId }}'
;