Yes, however, after some logins and logoffs I was able to locate the F0 tier (the free one) in the ARM manager. I guess, it would have taken a bit more of time to get refreshed at Azure backend.
Used Free Tier for Azure OpenAI Translator. Deleted it. Cannot use it again.
I provisioned a "Translator" from Azure AI services of free tier (F0) in my subscription. Once my work was completed, I removed it. Now when I am trying to provision it again it is showing the following message:
"The free tier (F0) for this resource type is already being used by your subscription, therefore it will not appear in the dropdown below."
I cannot find the the free tier now as when I require it and additionally I have deleted the resource also.
Kindly help!
Azure AI services
2 answers
Sort by: Most helpful
-
-
Azar 29,520 Reputation points MVP Volunteer Moderator
2023-12-17T12:09:27.56+00:00 Hi
seems like there might be a residual entry with the subscription status related to the free tier
Try these two steps anyone would do fine whichever you are comfortable.
Use Azure CLI to list resources in your subscription. This might help identify if there's any lingering resource related to the Azure Translator
az resource list --output table
Or you can use powershell
Get-AzResource | Format-Table
If you find any resources related to Azure Translator, you can remove them using the appropriate Azure CLI or PowerShell command.
If this helps kindly accept the answer thanks much.