在 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。仍然会生成相同的模板。