Azure数据工厂:在定义文件中获取Datatset和LinkedService参数

时间:2020-03-18 21:45:38

标签: azure-data-factory

我正在尝试使用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,但是无法获取参数。

0 个答案:

没有答案