Skip to main content

pipelines

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

Overview

Namepipelines
TypeResource
Idazure.data_factory.pipelines

Fields

The following fields are returned by SELECT queries:

OK.

NameDatatypeDescription
idstringThe resource identifier.
namestringThe resource name.
etagstringEtag identifies change in the resource.
propertiesobjectProperties of the pipeline.
typestringThe resource type.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectsubscriptionId, resourceGroupName, factoryName, pipelineNameapi-version, If-None-MatchGets a pipeline.
list_by_factoryselectsubscriptionId, resourceGroupName, factoryNameapi-versionLists pipelines.
create_or_updateinsertsubscriptionId, resourceGroupName, factoryName, pipelineName, data__propertiesapi-version, If-MatchCreates or updates a pipeline.
deletedeletesubscriptionId, resourceGroupName, factoryName, pipelineNameapi-versionDeletes a pipeline.

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
factoryNamestringThe factory name.
pipelineNamestringThe pipeline name.
resourceGroupNamestringThe resource group name.
subscriptionIdstringThe subscription identifier.
If-MatchstringETag of the pipeline entity. Should only be specified for update, for which it should match existing entity or can be * for unconditional update.
If-None-MatchstringETag of the pipeline entity. Should only be specified for get. If the ETag matches the existing entity tag, or if * was provided, then no content will be returned.
api-versionstringThe API version.

SELECT examples

Gets a pipeline.

SELECT
id,
name,
etag,
properties,
type
FROM azure.data_factory.pipelines
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND resourceGroupName = '{{ resourceGroupName }}' -- required
AND factoryName = '{{ factoryName }}' -- required
AND pipelineName = '{{ pipelineName }}' -- required
AND api-version = '{{ api-version }}'
AND If-None-Match = '{{ If-None-Match }}'
;

INSERT examples

Creates or updates a pipeline.

INSERT INTO azure.data_factory.pipelines (
data__properties,
subscriptionId,
resourceGroupName,
factoryName,
pipelineName,
api-version,
If-Match
)
SELECT
'{{ properties }}' /* required */,
'{{ subscriptionId }}',
'{{ resourceGroupName }}',
'{{ factoryName }}',
'{{ pipelineName }}',
'{{ api-version }}',
'{{ If-Match }}'
RETURNING
id,
name,
etag,
properties,
type
;

DELETE examples

Deletes a pipeline.

DELETE FROM azure.data_factory.pipelines
WHERE subscriptionId = '{{ subscriptionId }}' --required
AND resourceGroupName = '{{ resourceGroupName }}' --required
AND factoryName = '{{ factoryName }}' --required
AND pipelineName = '{{ pipelineName }}' --required
AND api-version = '{{ api-version }}'
;