【发布时间】:2020-10-30 09:21:22
【问题描述】:
我已经编写了下面的代码 powershell 脚本来传递从逻辑应用获取值并将其传递给 Azure 数据工厂。
#I am sharing a part of the code which is should pass the parameter to the data factory
# get the clientName value from the logic apps.
Param (
Param (
[Parameter (Mandatory = $true)]
[string]
$clientName
)
$parameters = @{
"clientName" = $clientName
}
#
$Pipeline1 = Invoke-AzureRmDataFactoryV2Pipeline -ResourceGroupName $rg1 -DataFactoryName $adf1 -PipelineName $pn1 -Parameter $parameters
但是不知道我的datafactory是怎么得到这个值的。
【问题讨论】:
标签: azure powershell azure-data-factory azure-automation