Skip to content

Commit 332aad7

Browse files
author
siddheshwar-more
committed
Rename EnableAutoUpdateClient to AutoUpdateclient
1 parent 0b5eee9 commit 332aad7

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/ServiceManagement/Compute/Commands.ServiceManagement/IaaS/Extensions/Chef/SetAzureVMChefExtension.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ public class SetAzureVMChefExtensionCommand : VirtualMachineChefExtensionCmdletB
8080
ValueFromPipelineByPropertyName = true,
8181
HelpMessage = "Flag to opt for auto chef-client update. Chef-client update is false by default.")]
8282
[ValidateNotNullOrEmpty]
83-
public SwitchParameter EnableAutoUpdateClient { get; set; }
83+
public SwitchParameter AutoUpdateClient { get; set; }
8484

8585
[Parameter(
8686
Mandatory = true,
@@ -147,7 +147,7 @@ private void SetPublicConfig()
147147
bool IsChefServerUrlEmpty = string.IsNullOrEmpty(this.ChefServerUrl);
148148
bool IsValidationClientNameEmpty = string.IsNullOrEmpty(this.ValidationClientName);
149149
bool IsRunListEmpty = string.IsNullOrEmpty(this.RunList);
150-
string AutoUpdateClient = this.EnableAutoUpdateClient.IsPresent ? "true" : "false";
150+
string AutoUpdateClient = this.AutoUpdateClient.IsPresent ? "true" : "false";
151151

152152
//Cases handled:
153153
// 1. When clientRb given by user and:

src/ServiceManagement/Compute/Commands.ServiceManagement/Microsoft.WindowsAzure.Commands.ServiceManagement.dll-Help.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32702,7 +32702,7 @@ PS C:\> Get-AzureVM -ServiceName "ContosoService03" -Name "Con
3270232702
<dev:defaultValue></dev:defaultValue>
3270332703
</command:parameter>
3270432704
<command:parameter required="false" variableLength="false" globbing="false" position="named">
32705-
<maml:name>EnableAutoUpdateClient</maml:name>
32705+
<maml:name>AutoUpdateClient</maml:name>
3270632706
<maml:description>
3270732707
<maml:para>Flag to opt for auto chef-client update. Chef-client update is false by default.</maml:para>
3270832708
</maml:description>

0 commit comments

Comments
 (0)