ArmIotOperationsModelFactory.DataflowBuiltInTransformationMap Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
public static Azure.ResourceManager.IotOperations.Models.DataflowBuiltInTransformationMap DataflowBuiltInTransformationMap(Azure.ResourceManager.IotOperations.Models.DataflowMappingType? type = default, string description = default, System.Collections.Generic.IEnumerable<string> inputs = default, string expression = default, string output = default);
static member DataflowBuiltInTransformationMap : Nullable<Azure.ResourceManager.IotOperations.Models.DataflowMappingType> * string * seq<string> * string * string -> Azure.ResourceManager.IotOperations.Models.DataflowBuiltInTransformationMap
Public Shared Function DataflowBuiltInTransformationMap (Optional type As Nullable(Of DataflowMappingType) = Nothing, Optional description As String = Nothing, Optional inputs As IEnumerable(Of String) = Nothing, Optional expression As String = Nothing, Optional output As String = Nothing) As DataflowBuiltInTransformationMap
Parameters
- type
- Nullable<DataflowMappingType>
Type of transformation.
- description
- String
A user provided optional description of the mapping function.
- inputs
- IEnumerable<String>
List of fields for mapping in JSON path expression.
- expression
- String
Modify the inputs field(s) to the final output field. Example: $1 * 2.2 (Assuming inputs section $1 is provided).
- output
- String
Where and how the input fields to be organized in the output record.
Returns
A new DataflowBuiltInTransformationMap instance for mocking.