ADF only supports specific data types for what we call RunParameter and PipelineRunVariable.
We support python primitives that map to the data factory types.
For RunParameters this should be:
- str -> String,
- int -> Int,
- float -> Float,
- bool -> Bool
- list -> Array
- dict -> Object
- str -> SecureString
For PipelineRunVariable these should be:
- str -> String,
- bool -> Boolean,
- list-> Array,
- int-> Integer,
Currently we do not validate any value on RunParameter and PipelineRunVariable.
ADF only supports specific data types for what we call
RunParameterandPipelineRunVariable.We support python primitives that map to the data factory types.
For
RunParametersthis should be:For
PipelineRunVariablethese should be:Currently we do not validate any value on
RunParameterandPipelineRunVariable.