Skip to content

Commit 8c450c0

Browse files
added details for transformation
1 parent 7a381a7 commit 8c450c0

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

articles/iot-operations/connect-to-cloud/howto-configure-fabric-endpoint.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -92,6 +92,7 @@ This Bicep template file from [Bicep File for Microsoft Fabric OneLake dataflow
9292
```azurecli
9393
az stack group create --name MyDeploymentStack --resource-group $RESOURCE_GROUP --template-file /workspaces/explore-iot-operations/<filename>.bicep --action-on-unmanage 'deleteResources' --deny-settings-mode 'none' --yes
9494
```
95+
9596
This endpoint is the destination for the dataflow that receives messages to Fabric OneLake.
9697

9798
```bicep
@@ -247,6 +248,8 @@ resource dataflow_onelake 'Microsoft.IoTOperations/instances/dataflowProfiles/da
247248
}
248249
```
249250

251+
The `BuiltInTransformation` in this Bicep file transforms the data flowing through the dataflow pipeline. It applies a pass-through operation, mapping all input fields `(inputs: array('*'))` directly to the output `(output: '*')`, without altering the data. It also references the defined OPC-UA schema to ensure the data is structured according to the OPC UA protocol. The transformation then serializes the data in Delta format (or Parquet if specified). This step ensures that the data adheres to the required schema and format before being sent to the destination.
252+
250253
---
251254

252255
For more information about dataflow destination settings, see [Create a dataflow](howto-create-dataflow.md).

0 commit comments

Comments
 (0)