I have created a self-hosted integration runtime using powershell :
Set-AzDataFactoryV2IntegrationRuntime -ResourceGroupName $resourceGroupName -DataFactoryName $dataFactoryName -Name $selfHostedIntegrationRuntimeName -Type SelfHosted -Description "selfhosted IR description"
But when I check the Azure Datafactory portal and then select Integration Runtime I can't see it. When I create via. portal it's visible to me. I can check its status in Powershell it exists there.
Get-AzDataFactoryV2IntegrationRuntime -ResourceGroupName $resourceGroupName -DataFactoryName $dataFactoryName -Name $selfHostedIntegrationRuntimeName -Status
I was even able to register it and I see its status is online but nothing is shown in the portal.
Is there any reason it's not shown?