A Microsoft offering that enables tracking of cloud usage and expenditures for Azure and other cloud providers.
The communication means that the static CSV file with instance size flexibility (ISF) ratios in the documentation will stop being updated after 9 May 2026, and will be fully deprecated for use after 30 August 2026. The ISF feature itself is not being removed; only the way to obtain the ratios is changing.
Key impacts and required actions:
- What is changing
- The current ISF ratio CSV file referenced from the “Virtual machine size flexibility with Reserved VM Instances” documentation will no longer receive updates after 9 May 2026.
- After 30 August 2026, relying on that CSV for accurate ratios is not recommended; it may be outdated relative to new or changed SKUs.
- Going forward, the authoritative source for ISF ratios will be the Azure Reservations Catalogs API (Azure Catalogs API).
- How to get ISF ratios going forward
- Use the Azure Reservations Catalogs API to retrieve ISF data programmatically.
- The API returns, per SKU, the ISF metadata in
skuProperties:-
InstanceSizeFlexibilityGroup(orReservationsAutofitGroupin some responses) – the flexibility group name (for example, “Av2 Series”, “General Purpose Gen5”). -
InstanceSizeFlexibilityRatio(orReservationsAutofitRatio) – the ratio value used for ISF calculations.
-
- The “Instance size flexibility (ISF)” documentation describes how to:
- Call the Catalogs API for the relevant
reservedResourceType(for example, Virtual Machines). - Parse the response and construct a CSV with columns:
-
InstanceSizeFlexibilityGroup -
ArmSkuName -
Ratio
-
- Call the Catalogs API for the relevant
- Recommended next steps for cost management/billing tools
- If any internal billing, showback/chargeback, or cost optimization tooling currently reads the public CSV file directly or uses a copy of it:
- Implement a scheduled job (for example, PowerShell or another client) that calls the Azure Reservations Catalogs API.
- Parse
skuPropertiesto extract the ISF group and ratio for eachArmSkuName. - Generate and store an internal CSV or table in the same structure currently used by your tools (
InstanceSizeFlexibilityGroup,ArmSkuName,Ratio). - Update downstream tools to read from this new internal source instead of the public documentation CSV.
- Follow the guidance in the ISF documentation about:
- Pagination via
nextLink. - Region-specific data (ratios can vary by region, so generate per-region files if needed).
- Regular updates, because ratios may change as new VM sizes are introduced.
- Pagination via
- Relation to reservations and VM retirements
- ISF continues to apply to Azure Virtual Machine Reserved Instances as before: reservation benefits can be shared across sizes within the same flexibility group using the ratio values.
- For VM sizes that are retiring (for example, certain families listed in the “Azure Virtual Machine size retirements in 2026” article), ISF ratios for replacement SKUs can be obtained via the same Catalogs API, which helps plan reservation coverage when migrating to suggested replacement sizes.
- Support
- For complex scenarios (for example, large internal billing systems or cross-region reservation optimization), open an Azure support request as suggested in the communication, or use Microsoft Q&A for community guidance.
References: