Hi @Rajasekar Balasubramaniyan ,
In addition to checking the Platform version under the APIM Overview blade in the Azure portal, you can also run the following Azure CLI command to check the APIM SKU,
az apim show --name <apim-name> --resource-group <resource-group-name> --query "sku.name"
This will return the SKU tier (e.g., Developer
, Premium
, StandardV2
), which helps determine if it’s an stv1
or stv2
instance. For example, StandardV2
clearly indicates the instance is using the stv2 platform
You can also check available API versions and resource provider details by following this official Microsoft docs.
According to this Microsoft Tech Community post, the "undetermined"
state means that the compute platform has not been fully deployed or detected yet.
This can happen due to,
- A backend delay in setting or reporting platform metadata
- ARM API limitations when dealing with newly provisioned instances
- Absence of properties like
gatewayRegionalUrl
Even if it shows "undetermined"
, if the SKU is StandardV2
, it’s safe to assume the instance is on the stv2 platform
.
Please click Accept Answer and kindly upvote it so that other people who face similar issues may get benefitted from it.