list of pipeline names

Feuerborn, Diana 0 Reputation points
2024-05-17T20:33:42.42+00:00

How do I easily get a downloaded list of all pipeline names?

Azure Data Factory
Azure Data Factory
An Azure service for ingesting, preparing, and transforming data at scale.
9,804 questions
0 comments No comments
{count} votes

1 answer

Sort by: Most helpful
  1. BhargavaGunnam-MSFT 27,976 Reputation points Microsoft Employee
    2024-05-17T21:21:05.8566667+00:00

    Hello Feuerborn, Diana,

    Welcome to the Microsoft Q&A forum.

    You can use the Get-AzDataFactoryV2Pipeline cmdlet to get the information about pipelines in Azure Data Factory. If you specify the name of a pipeline, this cmdlet gets information about that pipeline. If you do not specify a name, this cmdlet gets information about all the pipelines in the data factory.

    Ex: Get-AzDataFactoryV2Pipeline -ResourceGroupName "ADF" -DataFactoryName "WikiADF"

    Reference document:
    https://learn.microsoft.com/en-us/powershell/module/az.datafactory/get-azdatafactoryv2pipeline?view=azps-11.6.0&viewFallbackFrom=azps-5.8.0

    If you want to export the results, you can follow the below thread:
    https://learn.microsoft.com/en-us/answers/questions/1274917/exporting-selected-azure-data-factory-pipelines

    I hope this answers your question.

    If this answers your question, please consider accepting the answer by hitting the Accept answer and up-vote as it helps the community look for answers to similar questions.