Azure / azure-cli

Azure Command-Line Interface
MIT License
4.03k stars 3k forks source link

Get VMs size specs for NVMe #28406

Open mishafg opened 8 months ago

mishafg commented 8 months ago

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

yonzhan commented 8 months ago

Thank you for opening this issue, we will look into it.