We are having a ADF V1 pipeline, which we had paused to avoid data flowing in. Suddenly, we see that it has been deployed in running mode, by some user. How to find out who had deployed the azure data factory pipeline.
When I see in the azure portal, I only see the deployment time. I don't see the user, who deployed it. I also tried to see the same using azure powershell also. But, not able to find.
Connect-AzureRmAccount
Select-AzureRmSubscription -SubscriptionName "TestSubscriptionName"
(Get-AzureRmDataFactoryPipeline -DataFactoryName "TestDataFactory"
-ResourceGroupName "TestRG" -Name "TestPipeline").Properties.RuntimeInfo
Please let me know, how can I find out the user, who had deployed it.