@@ -330,7 +330,7 @@ public void DeleteAutomationAccount(string resourceGroupName, string automationA
330330 #region Module
331331
332332 public Module CreateModule ( string resourceGroupName , string automationAccountName , Uri contentLink ,
333- string moduleName , bool isPowershell72Module = false )
333+ string moduleName , bool IsPowerShell72Module = false )
334334 {
335335 ModuleCreateOrUpdateParameters moduleCreateOrUpdateParameters = new AutomationManagement . Models . ModuleCreateOrUpdateParameters ( )
336336 {
@@ -342,7 +342,7 @@ public Module CreateModule(string resourceGroupName, string automationAccountNam
342342 Version = null
343343 } ,
344344 } ;
345- if ( isPowershell72Module )
345+ if ( IsPowerShell72Module )
346346 {
347347 this . automationManagementClient . PowerShell72Module . CreateOrUpdate ( resourceGroupName ,
348348 automationAccountName ,
@@ -358,15 +358,15 @@ public Module CreateModule(string resourceGroupName, string automationAccountNam
358358 moduleCreateOrUpdateParameters
359359 ) ;
360360 }
361- return this . GetModule ( resourceGroupName , automationAccountName , moduleName , isPowershell72Module ) ;
361+ return this . GetModule ( resourceGroupName , automationAccountName , moduleName , IsPowerShell72Module ) ;
362362 }
363363
364- public Module GetModule ( string resourceGroupName , string automationAccountName , string name , bool isPowershell72Module = false )
364+ public Module GetModule ( string resourceGroupName , string automationAccountName , string name , bool IsPowerShell72Module = false )
365365 {
366366 try
367367 {
368368 AutomationManagement . Models . Module module = null ;
369- if ( isPowershell72Module )
369+ if ( IsPowerShell72Module )
370370 {
371371 module = this . automationManagementClient . PowerShell72Module . Get ( resourceGroupName , automationAccountName , name ) ;
372372 }
@@ -390,13 +390,13 @@ public Module GetModule(string resourceGroupName, string automationAccountName,
390390 }
391391
392392 public IEnumerable < Module > ListModules ( string resourceGroupName , string automationAccountName ,
393- ref string nextLink , bool isPowershell72Module = false )
393+ ref string nextLink , bool IsPowerShell72Module = false )
394394 {
395395 Rest . Azure . IPage < AutomationManagement . Models . Module > response ;
396396
397397 if ( string . IsNullOrEmpty ( nextLink ) )
398398 {
399- if ( isPowershell72Module )
399+ if ( IsPowerShell72Module )
400400 {
401401 response = this . automationManagementClient . PowerShell72Module . ListByAutomationAccount ( resourceGroupName , automationAccountName ) ;
402402 }
@@ -407,7 +407,7 @@ public IEnumerable<Module> ListModules(string resourceGroupName, string automati
407407 }
408408 else
409409 {
410- if ( isPowershell72Module )
410+ if ( IsPowerShell72Module )
411411 {
412412 response = this . automationManagementClient . PowerShell72Module . ListByAutomationAccountNext ( nextLink ) ;
413413 }
@@ -422,7 +422,7 @@ public IEnumerable<Module> ListModules(string resourceGroupName, string automati
422422 }
423423
424424 public Module UpdateModule ( string resourceGroupName , string automationAccountName , string name ,
425- Uri contentLinkUri , string contentLinkVersion , bool isPowershell72Module = false )
425+ Uri contentLinkUri , string contentLinkVersion , bool IsPowerShell72Module = false )
426426 {
427427 try
428428 {
@@ -441,7 +441,7 @@ public Module UpdateModule(string resourceGroupName, string automationAccountNam
441441 } ;
442442 if ( contentLinkUri != null )
443443 {
444- if ( isPowershell72Module )
444+ if ( IsPowerShell72Module )
445445 {
446446 this . automationManagementClient . PowerShell72Module . CreateOrUpdate ( resourceGroupName ,
447447 automationAccountName ,
@@ -460,7 +460,7 @@ public Module UpdateModule(string resourceGroupName, string automationAccountNam
460460 }
461461
462462 }
463- return this . GetModule ( resourceGroupName , automationAccountName , name , isPowershell72Module ) ;
463+ return this . GetModule ( resourceGroupName , automationAccountName , name , IsPowerShell72Module ) ;
464464 }
465465 catch ( ErrorResponseException cloudException )
466466 {
@@ -475,11 +475,11 @@ public Module UpdateModule(string resourceGroupName, string automationAccountNam
475475 }
476476 }
477477
478- public void DeleteModule ( string resourceGroupName , string automationAccountName , string name , bool isPowershell72Module = false )
478+ public void DeleteModule ( string resourceGroupName , string automationAccountName , string name , bool IsPowerShell72Module = false )
479479 {
480480 try
481481 {
482- if ( isPowershell72Module )
482+ if ( IsPowerShell72Module )
483483 {
484484 this . automationManagementClient . PowerShell72Module . Delete ( resourceGroupName , automationAccountName , name ) ;
485485 }
0 commit comments