Skip to content

Commit 244e98e

Browse files
committed
Update Comment
1 parent 74c142f commit 244e98e

File tree

1 file changed

+10
-4
lines changed

1 file changed

+10
-4
lines changed

src/ResourceManager/Compute/Commands.Compute/Automation/RunCodeGeneration.ps1

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,16 @@
11
[CmdletBinding()]
22
param(
3-
[Parameter(Mandatory = $True)]
3+
[Parameter(Mandatory = $true)]
44
[string]$dllFolder,
5-
6-
[Parameter(Mandatory = $True)]
7-
[string]$outFolder
5+
6+
[Parameter(Mandatory = $true)]
7+
[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'
814
)
915

1016
$code_common_header =

0 commit comments

Comments
 (0)