While developing in Azure Portal, I can organize pipelines, datasets and linked services in folders. JSON file of pipeline will contain folder name:
"folder": {
"name": "Business"
}
But when I publish pipeline (or any other DF V2 object) with PowerShell Cmd-Let, it goes to the root folder:
Set-AzureRmDataFactoryV2Pipeline -DataFactoryName $dataFactoryV2Name -File $filePath `
-Name $name -ResourceGroupName $resourceGroupName
Is there a way to force Set-AzureRmDataFactoryV2Pipeline and related Cmd-Lets to honor "folder" path and publish object to the specified folder?