
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Get Available Azure VM Size Using Azure CLI in PowerShell
To get all the available Azure VM sizes using Azure CLI from the specific location, we can use the az vm list-sizes command.
PS C:\> az vm list-sizes -l eastus
The default output is in the JSON format, as shown below.
To get the output in the table format, use the below command.
PS C:\> az vm list-sizes -l eastus -otable
Output
Advertisements