My organisation got an email from Microsoft recently:
Azure SQL Database 2014-04-01 APIs will be retired on 31 October 2025
You’re receiving this email because you use Azure SQL Database APIs. To improve performance and security, we’re updating Azure SQL Database APIs. As part of this, all version 2014-04-01 APIs will be retired on 31 October 2025. You’ll need to update your resources, including templates, tools, scripts, and programs, to use a newer API version by then. Any API calls still using the older versions after that date will stop working until you’ve updated them.
Required action
To avoid potential service disruptions, upgrade any Azure SQL Database resources that use version 2014-04-01 APIs to a newer stable version by 31 October 2025.
I tried this code, in Azure Resource Graph, but this just shows information about SQL databases API versions.
Resources
| project name, type, apiVersion
|where type =~ 'microsoft.sql/servers/databases'
|where isnotnull(apiVersion)
|order by type asc
My organisation has pipelines that onboard data from on-premise to Azure. But to trigger ADF pipelines we are using PowerShell, which looks like this: (generic format)
Start-AzDataFactoryV2Trigger -ResourceGroupName "YourResourceGroupName" -DataFactoryName "YourDataFactoryName" -Name "YourTriggerName"
Since my knowledge of PowerShell is very limited, can someone let me know whether it is an API call? If so, what exactly should I check in Microsoft regarding APIs?