We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 74c142f commit 244e98eCopy full SHA for 244e98e
src/ResourceManager/Compute/Commands.Compute/Automation/RunCodeGeneration.ps1
@@ -1,10 +1,16 @@
1
[CmdletBinding()]
2
param(
3
- [Parameter(Mandatory = $True)]
+ [Parameter(Mandatory = $true)]
4
[string]$dllFolder,
5
-
6
7
- [string]$outFolder
+
+ [string]$outFolder,
8
9
+ # Cmdlet Code Generation Style
10
+ # 1. Invoke (default) that uses Invoke as the verb, and Operation + Method (e.g. VirtualMachine + Get)
11
+ # 2. Verb style that maps the method name to a certain common PS verb (e.g. CreateOrUpdate -> New)
12
+ [Parameter(Mandatory = $false)]
13
+ [string]$cmdletStyle = 'Invoke'
14
)
15
16
$code_common_header =
0 commit comments