如何使用Powershell触发ADF管道

如何使用Powershell触发ADF管道

本文介绍了Azure:如何使用Powershell触发ADF管道?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

大家好,

我已经创建了Azure数据工厂管道,并根据计划触发了运行管道.但是现在,我需要使用powershell脚本运行管道.请提出建议.

I have created Azure data factory pipelines and trigger to run the pipeline based on the schedule. But now, I need to run the pipeline using powershell script. Please suggest.

谢谢

julie

推荐答案

调用- AzureRmDataFactoryV2Pipeline 将启动管道.并且 Start-AzureRmDataFactoryV2Trigger  将 启动触发器.

Invoke-AzureRmDataFactoryV2Pipeline will start the pipeline. And Start-AzureRmDataFactoryV2Trigger will start the trigger.

请尝试一下.


这篇关于Azure:如何使用Powershell触发ADF管道?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-23 18:41