Sam
Sam

Reputation: 323

Azure data factory pipleline folder property

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

Answers (2)

Jay Gong
Jay Gong

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

Fang Liu
Fang Liu

Reputation: 2363

If you didn’t find it, you need update the SDK version.

Upvotes: 0

Related Questions