Skip to content

Commit 6e73ae7

Browse files
added passthrough sub-section
1 parent c5d1b16 commit 6e73ae7

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed

articles/iot-operations/connect-to-cloud/howto-create-dataflow.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -419,6 +419,23 @@ builtInTransformationSettings: {
419419
420420
```
421421

422+
## Passthrough operation
423+
424+
For example, you could apply a mapping operation that takes all the input fields (inputs: array('*')) and maps them to the output (output: '*'), essentially passing through all fields.
425+
426+
```bicep
427+
builtInTransformationSettings: {
428+
map: [
429+
{
430+
inputs: array('*')
431+
output: '*'
432+
}
433+
]
434+
schemaRef: 'aio-sr://${opcuaSchemaName}:${opcuaSchemaVer}'
435+
serializationFormat: 'Delta' // Can also be 'Parquet'
436+
}
437+
```
438+
422439
# [Kubernetes](#tab/kubernetes)
423440

424441
For example, you could use the `deviceId` field in the source data to match the `asset` field in the dataset:

0 commit comments

Comments
 (0)