Get VMs size specs for NVMe
- Dominant language
- Python
- Stars
- 4.6k
- Forks
- 3.5k
- Avg merge
- 3d 2h
- Merged PRs (30d)
- 60
Description
**Related command**
az vm list-skus --location eastus --size Standard_E112ibds_v5 -o json
**Is your feature request related to a problem? Please describe.**
I can't get "Max uncached Premium SSD disk throughput: IOPS/MBps" for NVMe
We have only the following UncachedDiskIOPS/UncachedDiskBytesPerSecond values, but Ebsv5 series has also NVMe values in https://learn.microsoft.com/en-us/azure/virtual-machines/ebdsv5-ebsv5-series#ebdsv5-series-nvme
**Describe the solution you'd like**
Add values like
```
}
"name": "UncachedNVMeDiskIOPS",
"value": "260000"
},
{
"name": "UncachedNVMeDiskBytesPerSecond",
"value": "8000000000"
},
```
And other values as well, i.e. "Max uncached Ultra Disk and Premium SSD V2 disk throughput: IOPS/MBps" and "Max burst uncached Ultra Disk and Premium SSD V2 disk throughput: IOPS/MBps", also "Max burst uncached Premium SSD disk throughput: IOPS/MBps" which are in the Azure docs, but missing in Azure CLI.
**Describe alternatives you've considered**
No alternatives
**Additional context**
N/A
Contributor guide
Assessment
This issue has not been assessed yet.