The current nodes under "Microsoft.DataFactory/factories/datasets" in Default parameterization template
"Microsoft.DataFactory/factories/datasets": {
"*": {
"properties": {
"typeProperties": {
"folderPath": "=",
"fileName": "="
}
}
}}
"location" node is missing between "typeProperties" and "folderPath".
"Microsoft.DataFactory/factories/datasets": {
"*": {
"properties": {
"typeProperties": {
"location" : {
"folderPath": "=",
"fileName": "="
}
}
}
}}
⚠Do not edit this section. It is required for docs.microsoft.com ➟ GitHub issue linking.
Hey @t104 ,
While for many datasets, the filepath is a subset of the location field, we also have many that are still using the format stated Keep in mind that '=' just keeps the current value and doesn't generate an ARM parameter. This is just a default template to help you get started with custom parameters so edit this according to whatever configurations you have!
Thanks,
Daniel
Most helpful comment
Hey @t104 ,
While for many datasets, the filepath is a subset of the location field, we also have many that are still using the format stated Keep in mind that '=' just keeps the current value and doesn't generate an ARM parameter. This is just a default template to help you get started with custom parameters so edit this according to whatever configurations you have!
Thanks,
Daniel
please-close