File tree Expand file tree Collapse file tree 2 files changed +4
-3
lines changed
src/ServiceManagement/Automation
Commands.Automation/Common Expand file tree Collapse file tree 2 files changed +4
-3
lines changed Original file line number Diff line number Diff line change 102
102
<Compile Include =" UnitTests\RemoveAzureAutomationCredentialTest.cs" />
103
103
<Compile Include =" UnitTests\RemoveAzureAutomationModuleTest.cs" />
104
104
<Compile Include =" UnitTests\RemoveAzureAutomationScheduleTest.cs" />
105
+ <Compile Include =" UnitTests\RemoveAzureAutomationVariableTest.cs" />
105
106
<Compile Include =" UnitTests\SetAzureAutomationCredentialTest.cs" />
106
107
<Compile Include =" UnitTests\SetAzureAutomationScheduleTest.cs" />
107
108
<Compile Include =" UnitTests\GetAzureAutomationVariableTest.cs" />
Original file line number Diff line number Diff line change @@ -309,7 +309,7 @@ public IEnumerable<Variable> ListVariables(string automationAccountName)
309
309
skipToken =>
310
310
{
311
311
var response = this . automationManagementClient . Variables . List (
312
- automationAccountName ) ;
312
+ automationAccountName , skipToken ) ;
313
313
return new ResponseWithSkipToken < AutomationManagement . Models . Variable > (
314
314
response , response . Variables ) ;
315
315
} ) ;
@@ -320,7 +320,7 @@ public IEnumerable<Variable> ListVariables(string automationAccountName)
320
320
skipToken =>
321
321
{
322
322
var response = this . automationManagementClient . EncryptedVariables . List (
323
- automationAccountName ) ;
323
+ automationAccountName , skipToken ) ;
324
324
return new ResponseWithSkipToken < AutomationManagement . Models . EncryptedVariable > (
325
325
response , response . EncryptedVariables ) ;
326
326
} ) ;
@@ -507,7 +507,7 @@ public IEnumerable<Credential> ListCredentials(string automationAccountName)
507
507
IList < AutomationManagement . Models . Credential > credentialModels = AutomationManagementClient . ContinuationTokenHandler (
508
508
skipToken =>
509
509
{
510
- var response = this . automationManagementClient . PsCredentials . List ( automationAccountName ) ;
510
+ var response = this . automationManagementClient . PsCredentials . List ( automationAccountName , skipToken ) ;
511
511
return new ResponseWithSkipToken < AutomationManagement . Models . Credential > (
512
512
response , response . Credentials ) ;
513
513
} ) ;
You can’t perform that action at this time.
0 commit comments