0

What is Power shell command for Updating Properties of either (datasets/Pipelines/Triggers) in Azure Data factory?

Ex: Set-AzDataFactoryV2Pipeline - create/update a pipeline in Azure Data factory.

Incase Set-AzDataFactoryV2Pipeline command can useful for updating pipeline, How can I set new name properties ?which parameter in this command suitable for renaming pipeline?

But I want to know command which can update properties such as Pipeline Name/ Trigger Name /Dataset Name.

1 Answer 1

0

According to the official document, there is no update command about Pipeline Name/ Trigger Name /Dataset Name.

I think we have two ways to rename them.

  1. Using powershell, we need to remove the resources first and then create it again.
    Here I take the pipeline as an example:
Remove-AzDataFactoryV2Pipeline -ResourceGroupName "<ResourceGroupName>" -Name "<PipelineName>" -DataFactoryName "<DataFactoryName>"

Set-AzDataFactoryV2Pipeline -ResourceGroupName "<ResourceGroupName>" -Name "<PipelineName>" -DataFactoryName "<DataFactoryName>" -File ".\***.json"

  1. Using Azure Data Factory UI, we can rename them in place easily.
    Here I take the pipeline as an example:

enter image description here

Sign up to request clarification or add additional context in comments.

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.