0

在 Visual Studio 中创建了一个流分析项目,输入作为事件中心,输出作为 Power BI。在构建项目时,生成的模板 json 不包含 power bi 输出详细信息。

以下是 output.json 的详细信息。我看到针对PowellBIProperties提到的 power bi 属性。这是正确的吗 ?该文件是根据通过 Visual Studio 中的 UI 界面输入的值生成的。

{
  "EventHubProperties": null,
  "BlobStorageProperties": null,
  "SQLDatabaseProperties": null,
  "TableStorageProperties": null,
  "ServiceBusQueueProperties": null,
  "ServiceBusTopicProperties": null,
  "DocumentDbProperties": null,
  "PowellBIProperties": {
    "RefreshToken": "XXX",
    "TokenUserPrincipalName": "XXX",
    "TokenUserDisplayName": "XXX",
    "Dataset": "XXX",
    "Table": "XXX",
    "GroupId": "XXX",
    "GroupName": "XXX"
  },
  "AzureDataLakeStoreProperties": null,
  "AzureFunctionProperties": null,
  "DataSourceCredentialDomain": null,
  "Name": "pbiOutput",
  "DataSourceType": "Power BI",
  "Serialization": null,
  "ScriptType": "Output"
}

生成的 template.json 的输出为:

"outputs": [
      {
        "name": "bcbpBIOutput",
        "properties": {}
      }
    ],

已尝试将PowellBIProperties更改为PowerBIProperties。仍然会生成相同的模板。

4

1 回答 1

0

如果我没记错的话,流分析的 ARM 模板不支持 PowerBI 或 Azure Data Lake 输出。至少,这是我上个月从 Visual Studio 创建和尝试部署流分析项目时遇到的错误。

于 2018-10-31T14:02:06.643 回答