@@ -500,7 +500,7 @@ public IEnumerable<Variable> ListVariables(string automationAccountName)
500
500
skipToken =>
501
501
{
502
502
var response = this . automationManagementClient . Variables . List (
503
- automationAccountName , skipToken ) ;
503
+ automationAccountName ) ;
504
504
return new ResponseWithSkipToken < AutomationManagement . Models . Variable > (
505
505
response , response . Variables ) ;
506
506
} ) ;
@@ -511,7 +511,7 @@ public IEnumerable<Variable> ListVariables(string automationAccountName)
511
511
skipToken =>
512
512
{
513
513
var response = this . automationManagementClient . EncryptedVariables . List (
514
- automationAccountName , skipToken ) ;
514
+ automationAccountName ) ;
515
515
return new ResponseWithSkipToken < AutomationManagement . Models . EncryptedVariable > (
516
516
response , response . EncryptedVariables ) ;
517
517
} ) ;
@@ -603,8 +603,7 @@ public IEnumerable<Credential> ListCredentials(string automationAccountName)
603
603
. ContinuationTokenHandler (
604
604
skipToken =>
605
605
{
606
- var response = this . automationManagementClient . PsCredentials . List ( automationAccountName ,
607
- skipToken ) ;
606
+ var response = this . automationManagementClient . PsCredentials . List ( automationAccountName ) ;
608
607
return new ResponseWithSkipToken < AutomationManagement . Models . Credential > (
609
608
response , response . Credentials ) ;
610
609
} ) ;
@@ -671,7 +670,7 @@ public IEnumerable<Module> ListModules(string automationAccountName)
671
670
. ContinuationTokenHandler (
672
671
skipToken =>
673
672
{
674
- var response = this . automationManagementClient . Modules . List ( automationAccountName , skipToken ) ;
673
+ var response = this . automationManagementClient . Modules . List ( automationAccountName ) ;
675
674
return new ResponseWithSkipToken < AutomationManagement . Models . Module > (
676
675
response , response . Modules ) ;
677
676
} ) ;
@@ -781,7 +780,6 @@ public IEnumerable<Job> ListJobsByRunbookName(string automationAccountName, stri
781
780
EndTime = FormatDateTime ( endTime . Value ) ,
782
781
RunbookName = runbookName ,
783
782
Status = jobStatus ,
784
- SkipToken = skipToken
785
783
} ) ;
786
784
return new ResponseWithSkipToken < AutomationManagement . Models . Job > ( response , response . Jobs ) ;
787
785
} ) ;
@@ -799,7 +797,6 @@ public IEnumerable<Job> ListJobsByRunbookName(string automationAccountName, stri
799
797
StartTime = FormatDateTime ( startTime . Value ) ,
800
798
RunbookName = runbookName ,
801
799
Status = jobStatus ,
802
- SkipToken = skipToken
803
800
} ) ;
804
801
return new ResponseWithSkipToken < AutomationManagement . Models . Job > ( response , response . Jobs ) ;
805
802
} ) ;
@@ -817,7 +814,6 @@ public IEnumerable<Job> ListJobsByRunbookName(string automationAccountName, stri
817
814
EndTime = FormatDateTime ( endTime . Value ) ,
818
815
RunbookName = runbookName ,
819
816
Status = jobStatus ,
820
- SkipToken = skipToken
821
817
} ) ;
822
818
return new ResponseWithSkipToken < AutomationManagement . Models . Job > ( response , response . Jobs ) ;
823
819
} ) ;
@@ -831,7 +827,6 @@ public IEnumerable<Job> ListJobsByRunbookName(string automationAccountName, stri
831
827
automationAccountName ,
832
828
new AutomationManagement . Models . JobListParameters
833
829
{
834
- SkipToken = skipToken ,
835
830
Status = jobStatus ,
836
831
RunbookName = runbookName
837
832
} ) ;
@@ -871,7 +866,6 @@ public IEnumerable<Job> ListJobs(string automationAccountName, DateTime? startTi
871
866
StartTime = FormatDateTime ( startTime . Value ) ,
872
867
EndTime = FormatDateTime ( endTime . Value ) ,
873
868
Status = jobStatus ,
874
- SkipToken = skipToken
875
869
} ) ;
876
870
return new ResponseWithSkipToken < AutomationManagement . Models . Job > ( response , response . Jobs ) ;
877
871
} ) ;
@@ -888,7 +882,6 @@ public IEnumerable<Job> ListJobs(string automationAccountName, DateTime? startTi
888
882
{
889
883
StartTime = FormatDateTime ( startTime . Value ) ,
890
884
Status = jobStatus ,
891
- SkipToken = skipToken
892
885
} ) ;
893
886
return new ResponseWithSkipToken < AutomationManagement . Models . Job > ( response , response . Jobs ) ;
894
887
} ) ;
@@ -905,7 +898,6 @@ public IEnumerable<Job> ListJobs(string automationAccountName, DateTime? startTi
905
898
{
906
899
EndTime = FormatDateTime ( endTime . Value ) ,
907
900
Status = jobStatus ,
908
- SkipToken = skipToken
909
901
} ) ;
910
902
return new ResponseWithSkipToken < AutomationManagement . Models . Job > ( response , response . Jobs ) ;
911
903
} ) ;
@@ -917,7 +909,7 @@ public IEnumerable<Job> ListJobs(string automationAccountName, DateTime? startTi
917
909
{
918
910
var response = this . automationManagementClient . Jobs . List (
919
911
automationAccountName ,
920
- new AutomationManagement . Models . JobListParameters { Status = jobStatus , SkipToken = skipToken , } ) ;
912
+ new AutomationManagement . Models . JobListParameters { Status = jobStatus } ) ;
921
913
return new ResponseWithSkipToken < AutomationManagement . Models . Job > ( response , response . Jobs ) ;
922
914
} ) ;
923
915
}
@@ -1102,7 +1094,7 @@ public IEnumerable<Certificate> ListCertificates(string automationAccountName)
1102
1094
skipToken =>
1103
1095
{
1104
1096
var response = this . automationManagementClient . Certificates . List (
1105
- automationAccountName , skipToken ) ;
1097
+ automationAccountName ) ;
1106
1098
return new ResponseWithSkipToken < AutomationManagement . Models . Certificate > (
1107
1099
response , response . Certificates ) ;
1108
1100
} ) . Select ( c => new Certificate ( automationAccountName , c ) ) ;
0 commit comments