Hi pmscorca
Sure to check if a managed virtual network is enabled for an Azure Data Factory instance, you can use the Azure PowerShell module .
If you haven't installed the Azure PowerShell module, you can do so by running the following command in PowerShell:
Install-Module -Name Az -AllowClobber -Force -Scope CurrentUser
Run the following command to sign in to your Azure account
Connect-AzAccount
Use the following PowerShell script to check if Managed Virtual Network is enabled for your Azure Data Factory instance:
$resourceGroupName = "YourResourceGroupName" $dataFactoryName = "YourDataFactoryName" $dataFactory = Get-AzDataFactoryV2 -ResourceGroupName $resourceGroupName -Name $dataFactoryName if ($dataFactory.ManagedVirtualNetwork -ne $null) { Write-Host "Managed Virtual Network is enabled." } else { Write-Host "Managed Virtual Network is not enabled." }
If this helps kindly accept the answer thanks mucj.