Skip to content

Commit 7dd9cb4

Browse files
committed
fixed param order
1 parent 0537585 commit 7dd9cb4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/ResourceManager/Automation/Commands.Automation/Cmdlet/GetAzureAutomationWebhook.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,15 +30,15 @@ public class GetAzureAutomationWebhook : AzureAutomationBaseCmdlet
3030
/// <summary>
3131
/// Gets or sets the Webhook name.
3232
/// </summary>
33-
[Parameter(ParameterSetName = AutomationCmdletParameterSets.ByName, Position = 2, Mandatory = true, ValueFromPipelineByPropertyName = true,
33+
[Parameter(ParameterSetName = AutomationCmdletParameterSets.ByName, Mandatory = true, ValueFromPipelineByPropertyName = true,
3434
HelpMessage = "The Webhook name.")]
3535
[Alias("WebhookName")]
3636
public string Name { get; set; }
3737

3838
/// <summary>
3939
/// Gets or sets the Webhook name.
4040
/// </summary>
41-
[Parameter(ParameterSetName = AutomationCmdletParameterSets.ByRunbookName, Position = 2, Mandatory = true, ValueFromPipelineByPropertyName = true,
41+
[Parameter(ParameterSetName = AutomationCmdletParameterSets.ByRunbookName, Mandatory = true, ValueFromPipelineByPropertyName = true,
4242
HelpMessage = "The Runbook name.")]
4343
[Alias("RbName")]
4444
public string RunbookName { get; set; }

0 commit comments

Comments
 (0)