Reputation: 323
Azure data factory v2 allows to organize the pipelines using a folder structure in the UI. In the pipeline json there is additional property called "folder". I don't see such properly in the PipelineResource class. How de we programmatically set this property?
Upvotes: 0
Views: 452
Reputation: 23782
You do could find the Folder
property in PipelineResource Class here:https://learn.microsoft.com/en-us/dotnet/api/microsoft.azure.management.datafactory.models.pipelineresource?view=azure-dotnet.
Please see this doc and adf .net source code.
Upvotes: 1