链接服务是否支持 Azure 数据工厂中的动态 json?

Does the linked service support dynamic json in azure data factory?

目前,我正在尝试设置动态密钥保管库链接服务。 不幸的是,无论我尝试什么,我都无法成功测试连接。

{
    "name": "AzureKeyVault1",
    "properties": {
        "type": "AzureKeyVault",
        "typeProperties": {
            "baseUrl": {
                "value": "@concat('https://vault.azure.net','/')",
                "type": "Expression"
            }
        }
    }
}

上面使用 concat 的代码不是真正的用例,而只是一种测试动态 json 是否可以用于链接服务的方法。 我期待(根据文档)我可以使 baseUrl 属性 动态。我使用的格式正确吗?

我收到以下错误:

错误:错误:无法获取 属性 concat

Wim,基于official document,参数化链接服务仅支持以下服务,不包括Azure Key Vault。

您可以提交反馈 here 来推动您想要的 Azure 数据工厂的一些改进。

@Wim

为了回答您的问题,这是正确的格式。

我已经能够参数化管道参数,然后将其作为动态表达式中的 baseurl 传递。