We create multiple SHIR’s in our organization for different purposes. I would like to know, how to get list of all SHIR’s created by X user. E.g., I want to get list of all Self Hosted IR’s created by me from Azure cloud shell?
CodePudding user response:
There is no direct command, but you can try below command to get list of IR’s created by particular User.
When creating Self hosted IR, add the name of user in description. Then find the list of SHIR’s from Azure cloud shell using below command
Get-AzDataFactoryV2IntegrationRuntime -ResourceGroupName ******** -DataFactoryName ********* | where Description -eq "User_name"| Select name
Refer this link for more information