Globally unique resources that provide access to data management services and serve as the parent namespace for the services.
Welcome to Microsoft Q&A
Hello @Tony Wetzler , I hope you are doing well.
If the storage account is General-purpose v1 (GPv1), you can upgrade it directly to General-purpose v2 (GPv2). The upgrade is performed in place, so you don't need to migrate the data to a new storage account.
Azure portal
Open the Storage account in the Azure portal.
Go to Settings > Configuration.
Under Account kind, select Upgrade.
Review the upgrade information.
Select the default blob access tier, Hot or Cool.
Enter the storage account name to confirm.
Select Upgrade.
The upgrade is permanent, so the account cannot be downgraded back to GPv1.
Azure CLI
You can also perform the upgrade with:
az storage account update \
--resource-group <resource-group> \
--name <storage-account> \
--set kind=StorageV2 \
--access-tier Hot
Replace Hot with Cool if that is the appropriate default access tier for your workload.
Microsoft has announced the retirement of GPv1, so it is recommended to complete the upgrade before the applicable retirement deadline.
Reference:
https://learn.microsoft.com/azure/storage/common/storage-account-upgrade
If my answer helped you, please consider marking it as accepted. This helps others in the community find similar solutions.