如何为数据工厂而不是 Git 配置 Azure Devops 帐户?

How do I configure the Azure Devops account for a Data factory instead of Git?

 "repoConfiguration": {
                                "type": "FactoryGitHubConfiguration",
                                "accountName": "[parameters('gitAccountName')]",
                                "repositoryName": "[parameters('gitRepositoryName')]",
                                "collaborationBranch": "[parameters('gitBranchName')]",
                                "rootFolder": "[parameters('gitRootFolder')]"
                            }

我已经在配置属性下的模板中添加了上述行Git。让我知道我们如何为 Azure DevOps 做到这一点。

查看此模板...

        "repoConfiguration": {
        "type": "FactoryVSTSConfiguration",
        "accountName": "parameter_value",
        "repositoryName": "parameter_value",
        "projectName": "parameter_value",
        "collaborationBranch": "parameter_value",
        "rootFolder": "parameter_value",
        "tenantId": "parameter_value"
    }