Hello Oleksandr K,
Welcome to the Microsoft Q&A and thank you for posting your questions here.
I understand that you would like to change Integration Runtime Sub-Type in ADF.
Regarding your question:
Can You Change the Sub-Type of an Existing IR?
Yes, you can enable Managed Virtual Network on an existing Azure Integration Runtime, except for the default auto-resolve IR. You can enable it either on a new Azure integration runtime or an existing one THAT is not default auto-resolve IR. The AutoResolveIntegrationRuntime is the default Azure Integration Runtime provided by ADF. It automatically selects the region closest to the data source or sink and is **not customizable in terms of enabling Managed Virtual Network (Managed VNet). The link provides you step by steps on how you can achieve this: https://learn.microsoft.com/en-us/azure/data-factory/tutorial-managed-virtual-network-migrate
To clear any iota of confusion:
- Your original question was about Azure IR, not SSIS or self-hosted.
- You can confirm if you're have Default AutoResolveIntegrationRuntime by the following using PowerShell command:
Check the output:Get-AzDataFactoryV2IntegrationRuntime ` -ResourceGroupName "<your-rg>" ` -DataFactoryName "<your-adf-name>" ` -Name "AutoResolveIntegrationRuntime"- If the
typeis"Azure"andlocationis"AutoResolve"or not explicitly set, it's the default IR. - There will be no
managedVirtualNetworkproperty. - But if not, follow the link above with the steps to modify and migrate it or the below:
- If the
- Go to Azure Data Factory > Manage > Integration Runtimes
- Select the Azure IR you want to modify.
- Click “Edit” and enable the Managed Virtual Network option.
- Save and publish the changes.
- Update Linked Services if needed to use **Managed Private Endpoints.
- Test connectivity to ensure private endpoints and firewall rules are correctly configured.
- There is complete solution to help you deploy a Managed Virtual Network (Managed VNet) Integration Runtime (IR) in Azure Data Factory using:
- ARM Template
- JSON Snippet
- Bicep Script
I hope this is helpful! Do not hesitate to let me know if you have any other questions or clarifications.
Please don't forget to close up the thread here by upvoting and accept it as an answer if it is helpful.