An Azure service that provides access to OpenAI’s GPT-3 models with enterprise capabilities.
Hello Malik Waqar,
Greetings! Thanks for raising this question in the Q&A forum.
The error you are hitting is not caused by anything wrong in your deployment configuration. It is a currently active platform-wide issue that many customers are reporting right now, and it results from two separate things overlapping in your specific scenario, which is worth separating clearly.
First, gpt-4.1-mini version 2025-04-14 is your only version because it is genuinely the only version Microsoft has ever shipped for that model. There is no newer version hiding in the catalog for you to select. Second, that version is officially listed as GA with a published retirement date of October 14, 2026, but many customers, across UK South, US regions, and Canada, are currently seeing the same ServiceModelDeprecating error on that exact version months ahead of its documented retirement date. This means Microsoft has moved it into the deprecating lifecycle stage early. Deprecating means no new deployments are accepted, while existing deployments keep working until the actual retirement date. This is why your dialog only shows one version and rejects it outright.
Here is how to work through it.
- Confirm this is deprecating, not fully retired
Query the Models API directly for your subscription and region to see the live lifecycle status rather than relying on the portal dialog alone:
GET https://management.azure.com/subscriptions/<subscription-id>/providers/Microsoft.CognitiveServices/locations/australiaeast/models?api-version=2024-10-01
If gpt-4.1-mini shows lifecycleStatus: Deprecated while the retirement date field still shows October 2026, that confirms the early deprecation behavior rather than a genuine end of availability.
- Check whether gpt-5-mini or gpt-5-nano are enabled for Standard (regional) in Australia East yet
These are the documented cost-tier replacements for gpt-4.1-mini, but their regional rollout has been uneven. At launch they were only available in East US 2 and Sweden Central for Global Standard and Data Zone, and other regions such as Canada Central and Canada East still do not have them under Standard (regional) as of now, with no published rollout date. Australia East may be in the same position. Confirm directly in your subscription:
az cognitiveservices account list-models \
--name <your-foundry-resource-name> \
--resource-group <your-resource-group> \
--query "[?contains(model.name, 'gpt-5')]"
You can also check this in the Foundry portal under Operate then Quota, with the Show all toggle turned on, so you see every model available to your subscription in Australia East, including ones you have not deployed yet, not just ones with existing quota.
- If gpt-5-mini or gpt-5-nano are not yet listed for Standard (regional) in Australia East, do not switch deployment type as a workaround
Your earlier reasoning about Global Standard and Data Zone was correct and still holds. Data Zone deployment types are scoped to the US and EU data zones only, they do not exist for Australia, so neither option satisfies onshore residency. Provisioned (PTU) is technically a separate deployment type from Standard and sometimes gets earlier regional access to newer models, but at your volume, roughly 50 to 100 requests a month, the PTU minimum commitment will not be cost effective, so it is worth checking only if you are blocked long term.
- Open an Azure Support ticket rather than continuing to retry deployment
Since this is a platform-side lifecycle and rollout issue rather than something fixable from your side, file a ticket under Azure Portal then Help + support then Create a support request, scoped to the Azure OpenAI or Foundry resource in question. In the description include:
- The exact error text and the affected model and version:
Format:OpenAI,Name:gpt-4.1-mini,Version:2025-04-14 - A note that the published retirement date for this version is October 14, 2026, but new Standard deployments are already being blocked
- Your Subscription ID and the resource ID, for example
/subscriptions/<subscription-id>/resourceGroups/<rg>/providers/Microsoft.CognitiveServices/accounts/<resource-name> - A request to confirm whether gpt-5-mini or gpt-5-nano Standard (regional) is planned for Australia East, and if so, when
- Track ongoing announcements
Since Microsoft does not publish forward-looking rollout dates for adding models to specific Standard regions, monitor azure.microsoft.com/updates filtered by Azure OpenAI, and enable Azure Service Health alerts for Health advisories on your subscription so you are notified automatically when gpt-5-mini or gpt-5-nano land in Australia East for Standard.
If this answer helps you kindly accept the answer which will help others who have similar questions.
Best Regards,
Jerald Felix