-
Notifications
You must be signed in to change notification settings - Fork 3.3k
Description
Describe the bug
For the following Mv2-series VM sizes the values UncachedDiskBytesPerSecond and UncachedDiskIOPS are missing:
Standard_M208s_v2
Standard_M208ms_v2
Standard_M416ms_v2
Standard_M416s_v2
Related command
% az vm list-skus --location eastus --size Standard_M208ms_v2 -o json
Errors
UncachedDiskBytesPerSecond and UncachedDiskIOPS are missing
Issue script & Debug output
% az vm list-skus --location eastus --size Standard_M208ms_v2 -o json
[
{
"apiVersions": null,
"capabilities": [
{
"name": "MaxResourceVolumeMB",
"value": "4194304"
},
{
"name": "OSVhdSizeMB",
"value": "1047552"
},
{
"name": "vCPUs",
"value": "208"
},
{
"name": "MemoryPreservingMaintenanceSupported",
"value": "False"
},
{
"name": "HyperVGenerations",
"value": "V2"
},
{
"name": "MemoryGB",
"value": "5700"
},
{
"name": "MaxDataDiskCount",
"value": "64"
},
{
"name": "CpuArchitectureType",
"value": "x64"
},
{
"name": "MaxWriteAcceleratorDisksAllowed",
"value": "8"
},
{
"name": "LowPriorityCapable",
"value": "True"
},
{
"name": "PremiumIO",
"value": "True"
},
{
"name": "VMDeploymentTypes",
"value": "IaaS"
},
{
"name": "EphemeralOSDiskSupported",
"value": "True"
},
{
"name": "EncryptionAtHostSupported",
"value": "True"
},
{
"name": "CapacityReservationSupported",
"value": "True"
},
{
"name": "TrustedLaunchDisabled",
"value": "True"
},
{
"name": "AcceleratedNetworkingEnabled",
"value": "True"
},
{
"name": "RdmaEnabled",
"value": "False"
},
{
"name": "MaxNetworkInterfaces",
"value": "8"
}
],
"capacity": null,
"costs": null,
"family": "standardMSv2Family",
"kind": null,
"locationInfo": [
{
"location": "eastus",
"zoneDetails": [
{
"Name": [
"1",
"2",
"3"
],
"capabilities": [
{
"name": "UltraSSDAvailable",
"value": "True"
}
],
"name": null
}
],
"zones": [
"1",
"2",
"3"
]
}
],
"locations": [
"eastus"
],
"name": "Standard_M208ms_v2",
"resourceType": "virtualMachines",
"restrictions": [
{
"reasonCode": "NotAvailableForSubscription",
"restrictionInfo": {
"locations": [
"eastus"
],
"zones": [
"1"
]
},
"type": "Zone",
"values": [
"eastus"
]
}
],
"size": "M208ms_v2",
"tier": "Standard"
}
]
Expected behavior
{
"name": "UncachedDiskIOPS",
"value": "XXXXXX"
},
{
"name": "UncachedDiskBytesPerSecond",
"value": "XXXXXXXXX"
},
Where XXX... is the corresponding value
Environment Summary
azure-cli 2.57.0
core 2.57.0
telemetry 1.1.0
Extensions:
image-copy-extension 0.2.9
Dependencies:
msal 1.26.0
azure-mgmt-resource 23.1.0b2
Python location '/usr/local/Cellar/azure-cli/2.57.0/libexec/bin/python'
Extensions directory '~/.azure/cliextensions'
Python (Darwin) 3.11.7 (main, Dec 4 2023, 18:10:11) [Clang 15.0.0 (clang-1500.1.0.2.5)]
Legal docs and information: aka.ms/AzureCliLegal
Your CLI is up-to-date.
Additional context
No response