我正在尝试使用arm-template-parameters-definition.json文件获取Azure数据工厂参数。我可以成功获取管道参数,但努力配置为数据集和链接的服务定义的参数。
以下是文件定义:
{
"Microsoft.DataFactory/factories/pipelines": {
"properties": {
"parameters": {
"*": {
"defaultValue": "="
}
}
}
},
"Microsoft.DataFactory/factories/linkedServices": {
"properties": {
"parameters": {
"*": {
"defaultValue": "="
}
}
}
},
"Microsoft.DataFactory/factories/datasets": {
"properties": {
"parameters": {
"*": {
"defaultValue": "="
}
}
}
}
}
我曾尝试为数据集和链接服务使用Type-properties,但是无法获取参数。