I need to get details of specific azure command(like create VM,remove VM and others) in power-shell.
for example to create VM we have "New-AzVM" command in power-shell. I would like to know how we can get more help related to that command like
- What are different types of arguments we can pass(like Authentication Arguments,Network Arguments and others)?
- Which arguments are Required(Mandatory)?
I know we can accomplish same thing in azure-CLI using "az vm create --help" command.
Is there any command in power-shell which gives details of specific commands?(because I don't want to remember command(s) instead of that I would like to use "help" of powershell to get that command)
Note:- There is " Get-Command New-AzVM" command in powershell. but it list all command start with "New-AzVM".
