-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmock.go
2468 lines (2169 loc) · 124 KB
/
mock.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
// Code generated by MockGen. DO NOT EDIT.
// Source: github.com/aws/aws-sdk-go/service/workspacesweb/workspaceswebiface (interfaces: WorkSpacesWebAPI)
// Package workspaceswebmock is a generated GoMock package.
package workspaceswebmock
import (
context "context"
reflect "reflect"
request "github.com/aws/aws-sdk-go/aws/request"
workspacesweb "github.com/aws/aws-sdk-go/service/workspacesweb"
gomock "github.com/golang/mock/gomock"
)
// MockWorkSpacesWebAPI is a mock of WorkSpacesWebAPI interface.
type MockWorkSpacesWebAPI struct {
ctrl *gomock.Controller
recorder *MockWorkSpacesWebAPIMockRecorder
}
// MockWorkSpacesWebAPIMockRecorder is the mock recorder for MockWorkSpacesWebAPI.
type MockWorkSpacesWebAPIMockRecorder struct {
mock *MockWorkSpacesWebAPI
}
// NewMockWorkSpacesWebAPI creates a new mock instance.
func NewMockWorkSpacesWebAPI(ctrl *gomock.Controller) *MockWorkSpacesWebAPI {
mock := &MockWorkSpacesWebAPI{ctrl: ctrl}
mock.recorder = &MockWorkSpacesWebAPIMockRecorder{mock}
return mock
}
// EXPECT returns an object that allows the caller to indicate expected use.
func (m *MockWorkSpacesWebAPI) EXPECT() *MockWorkSpacesWebAPIMockRecorder {
return m.recorder
}
// AssociateBrowserSettings mocks base method.
func (m *MockWorkSpacesWebAPI) AssociateBrowserSettings(arg0 *workspacesweb.AssociateBrowserSettingsInput) (*workspacesweb.AssociateBrowserSettingsOutput, error) {
m.ctrl.T.Helper()
ret := m.ctrl.Call(m, "AssociateBrowserSettings", arg0)
ret0, _ := ret[0].(*workspacesweb.AssociateBrowserSettingsOutput)
ret1, _ := ret[1].(error)
return ret0, ret1
}
// AssociateBrowserSettings indicates an expected call of AssociateBrowserSettings.
func (mr *MockWorkSpacesWebAPIMockRecorder) AssociateBrowserSettings(arg0 interface{}) *gomock.Call {
mr.mock.ctrl.T.Helper()
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "AssociateBrowserSettings", reflect.TypeOf((*MockWorkSpacesWebAPI)(nil).AssociateBrowserSettings), arg0)
}
// AssociateBrowserSettingsRequest mocks base method.
func (m *MockWorkSpacesWebAPI) AssociateBrowserSettingsRequest(arg0 *workspacesweb.AssociateBrowserSettingsInput) (*request.Request, *workspacesweb.AssociateBrowserSettingsOutput) {
m.ctrl.T.Helper()
ret := m.ctrl.Call(m, "AssociateBrowserSettingsRequest", arg0)
ret0, _ := ret[0].(*request.Request)
ret1, _ := ret[1].(*workspacesweb.AssociateBrowserSettingsOutput)
return ret0, ret1
}
// AssociateBrowserSettingsRequest indicates an expected call of AssociateBrowserSettingsRequest.
func (mr *MockWorkSpacesWebAPIMockRecorder) AssociateBrowserSettingsRequest(arg0 interface{}) *gomock.Call {
mr.mock.ctrl.T.Helper()
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "AssociateBrowserSettingsRequest", reflect.TypeOf((*MockWorkSpacesWebAPI)(nil).AssociateBrowserSettingsRequest), arg0)
}
// AssociateBrowserSettingsWithContext mocks base method.
func (m *MockWorkSpacesWebAPI) AssociateBrowserSettingsWithContext(arg0 context.Context, arg1 *workspacesweb.AssociateBrowserSettingsInput, arg2 ...request.Option) (*workspacesweb.AssociateBrowserSettingsOutput, error) {
m.ctrl.T.Helper()
varargs := []interface{}{arg0, arg1}
for _, a := range arg2 {
varargs = append(varargs, a)
}
ret := m.ctrl.Call(m, "AssociateBrowserSettingsWithContext", varargs...)
ret0, _ := ret[0].(*workspacesweb.AssociateBrowserSettingsOutput)
ret1, _ := ret[1].(error)
return ret0, ret1
}
// AssociateBrowserSettingsWithContext indicates an expected call of AssociateBrowserSettingsWithContext.
func (mr *MockWorkSpacesWebAPIMockRecorder) AssociateBrowserSettingsWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call {
mr.mock.ctrl.T.Helper()
varargs := append([]interface{}{arg0, arg1}, arg2...)
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "AssociateBrowserSettingsWithContext", reflect.TypeOf((*MockWorkSpacesWebAPI)(nil).AssociateBrowserSettingsWithContext), varargs...)
}
// AssociateNetworkSettings mocks base method.
func (m *MockWorkSpacesWebAPI) AssociateNetworkSettings(arg0 *workspacesweb.AssociateNetworkSettingsInput) (*workspacesweb.AssociateNetworkSettingsOutput, error) {
m.ctrl.T.Helper()
ret := m.ctrl.Call(m, "AssociateNetworkSettings", arg0)
ret0, _ := ret[0].(*workspacesweb.AssociateNetworkSettingsOutput)
ret1, _ := ret[1].(error)
return ret0, ret1
}
// AssociateNetworkSettings indicates an expected call of AssociateNetworkSettings.
func (mr *MockWorkSpacesWebAPIMockRecorder) AssociateNetworkSettings(arg0 interface{}) *gomock.Call {
mr.mock.ctrl.T.Helper()
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "AssociateNetworkSettings", reflect.TypeOf((*MockWorkSpacesWebAPI)(nil).AssociateNetworkSettings), arg0)
}
// AssociateNetworkSettingsRequest mocks base method.
func (m *MockWorkSpacesWebAPI) AssociateNetworkSettingsRequest(arg0 *workspacesweb.AssociateNetworkSettingsInput) (*request.Request, *workspacesweb.AssociateNetworkSettingsOutput) {
m.ctrl.T.Helper()
ret := m.ctrl.Call(m, "AssociateNetworkSettingsRequest", arg0)
ret0, _ := ret[0].(*request.Request)
ret1, _ := ret[1].(*workspacesweb.AssociateNetworkSettingsOutput)
return ret0, ret1
}
// AssociateNetworkSettingsRequest indicates an expected call of AssociateNetworkSettingsRequest.
func (mr *MockWorkSpacesWebAPIMockRecorder) AssociateNetworkSettingsRequest(arg0 interface{}) *gomock.Call {
mr.mock.ctrl.T.Helper()
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "AssociateNetworkSettingsRequest", reflect.TypeOf((*MockWorkSpacesWebAPI)(nil).AssociateNetworkSettingsRequest), arg0)
}
// AssociateNetworkSettingsWithContext mocks base method.
func (m *MockWorkSpacesWebAPI) AssociateNetworkSettingsWithContext(arg0 context.Context, arg1 *workspacesweb.AssociateNetworkSettingsInput, arg2 ...request.Option) (*workspacesweb.AssociateNetworkSettingsOutput, error) {
m.ctrl.T.Helper()
varargs := []interface{}{arg0, arg1}
for _, a := range arg2 {
varargs = append(varargs, a)
}
ret := m.ctrl.Call(m, "AssociateNetworkSettingsWithContext", varargs...)
ret0, _ := ret[0].(*workspacesweb.AssociateNetworkSettingsOutput)
ret1, _ := ret[1].(error)
return ret0, ret1
}
// AssociateNetworkSettingsWithContext indicates an expected call of AssociateNetworkSettingsWithContext.
func (mr *MockWorkSpacesWebAPIMockRecorder) AssociateNetworkSettingsWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call {
mr.mock.ctrl.T.Helper()
varargs := append([]interface{}{arg0, arg1}, arg2...)
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "AssociateNetworkSettingsWithContext", reflect.TypeOf((*MockWorkSpacesWebAPI)(nil).AssociateNetworkSettingsWithContext), varargs...)
}
// AssociateTrustStore mocks base method.
func (m *MockWorkSpacesWebAPI) AssociateTrustStore(arg0 *workspacesweb.AssociateTrustStoreInput) (*workspacesweb.AssociateTrustStoreOutput, error) {
m.ctrl.T.Helper()
ret := m.ctrl.Call(m, "AssociateTrustStore", arg0)
ret0, _ := ret[0].(*workspacesweb.AssociateTrustStoreOutput)
ret1, _ := ret[1].(error)
return ret0, ret1
}
// AssociateTrustStore indicates an expected call of AssociateTrustStore.
func (mr *MockWorkSpacesWebAPIMockRecorder) AssociateTrustStore(arg0 interface{}) *gomock.Call {
mr.mock.ctrl.T.Helper()
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "AssociateTrustStore", reflect.TypeOf((*MockWorkSpacesWebAPI)(nil).AssociateTrustStore), arg0)
}
// AssociateTrustStoreRequest mocks base method.
func (m *MockWorkSpacesWebAPI) AssociateTrustStoreRequest(arg0 *workspacesweb.AssociateTrustStoreInput) (*request.Request, *workspacesweb.AssociateTrustStoreOutput) {
m.ctrl.T.Helper()
ret := m.ctrl.Call(m, "AssociateTrustStoreRequest", arg0)
ret0, _ := ret[0].(*request.Request)
ret1, _ := ret[1].(*workspacesweb.AssociateTrustStoreOutput)
return ret0, ret1
}
// AssociateTrustStoreRequest indicates an expected call of AssociateTrustStoreRequest.
func (mr *MockWorkSpacesWebAPIMockRecorder) AssociateTrustStoreRequest(arg0 interface{}) *gomock.Call {
mr.mock.ctrl.T.Helper()
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "AssociateTrustStoreRequest", reflect.TypeOf((*MockWorkSpacesWebAPI)(nil).AssociateTrustStoreRequest), arg0)
}
// AssociateTrustStoreWithContext mocks base method.
func (m *MockWorkSpacesWebAPI) AssociateTrustStoreWithContext(arg0 context.Context, arg1 *workspacesweb.AssociateTrustStoreInput, arg2 ...request.Option) (*workspacesweb.AssociateTrustStoreOutput, error) {
m.ctrl.T.Helper()
varargs := []interface{}{arg0, arg1}
for _, a := range arg2 {
varargs = append(varargs, a)
}
ret := m.ctrl.Call(m, "AssociateTrustStoreWithContext", varargs...)
ret0, _ := ret[0].(*workspacesweb.AssociateTrustStoreOutput)
ret1, _ := ret[1].(error)
return ret0, ret1
}
// AssociateTrustStoreWithContext indicates an expected call of AssociateTrustStoreWithContext.
func (mr *MockWorkSpacesWebAPIMockRecorder) AssociateTrustStoreWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call {
mr.mock.ctrl.T.Helper()
varargs := append([]interface{}{arg0, arg1}, arg2...)
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "AssociateTrustStoreWithContext", reflect.TypeOf((*MockWorkSpacesWebAPI)(nil).AssociateTrustStoreWithContext), varargs...)
}
// AssociateUserSettings mocks base method.
func (m *MockWorkSpacesWebAPI) AssociateUserSettings(arg0 *workspacesweb.AssociateUserSettingsInput) (*workspacesweb.AssociateUserSettingsOutput, error) {
m.ctrl.T.Helper()
ret := m.ctrl.Call(m, "AssociateUserSettings", arg0)
ret0, _ := ret[0].(*workspacesweb.AssociateUserSettingsOutput)
ret1, _ := ret[1].(error)
return ret0, ret1
}
// AssociateUserSettings indicates an expected call of AssociateUserSettings.
func (mr *MockWorkSpacesWebAPIMockRecorder) AssociateUserSettings(arg0 interface{}) *gomock.Call {
mr.mock.ctrl.T.Helper()
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "AssociateUserSettings", reflect.TypeOf((*MockWorkSpacesWebAPI)(nil).AssociateUserSettings), arg0)
}
// AssociateUserSettingsRequest mocks base method.
func (m *MockWorkSpacesWebAPI) AssociateUserSettingsRequest(arg0 *workspacesweb.AssociateUserSettingsInput) (*request.Request, *workspacesweb.AssociateUserSettingsOutput) {
m.ctrl.T.Helper()
ret := m.ctrl.Call(m, "AssociateUserSettingsRequest", arg0)
ret0, _ := ret[0].(*request.Request)
ret1, _ := ret[1].(*workspacesweb.AssociateUserSettingsOutput)
return ret0, ret1
}
// AssociateUserSettingsRequest indicates an expected call of AssociateUserSettingsRequest.
func (mr *MockWorkSpacesWebAPIMockRecorder) AssociateUserSettingsRequest(arg0 interface{}) *gomock.Call {
mr.mock.ctrl.T.Helper()
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "AssociateUserSettingsRequest", reflect.TypeOf((*MockWorkSpacesWebAPI)(nil).AssociateUserSettingsRequest), arg0)
}
// AssociateUserSettingsWithContext mocks base method.
func (m *MockWorkSpacesWebAPI) AssociateUserSettingsWithContext(arg0 context.Context, arg1 *workspacesweb.AssociateUserSettingsInput, arg2 ...request.Option) (*workspacesweb.AssociateUserSettingsOutput, error) {
m.ctrl.T.Helper()
varargs := []interface{}{arg0, arg1}
for _, a := range arg2 {
varargs = append(varargs, a)
}
ret := m.ctrl.Call(m, "AssociateUserSettingsWithContext", varargs...)
ret0, _ := ret[0].(*workspacesweb.AssociateUserSettingsOutput)
ret1, _ := ret[1].(error)
return ret0, ret1
}
// AssociateUserSettingsWithContext indicates an expected call of AssociateUserSettingsWithContext.
func (mr *MockWorkSpacesWebAPIMockRecorder) AssociateUserSettingsWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call {
mr.mock.ctrl.T.Helper()
varargs := append([]interface{}{arg0, arg1}, arg2...)
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "AssociateUserSettingsWithContext", reflect.TypeOf((*MockWorkSpacesWebAPI)(nil).AssociateUserSettingsWithContext), varargs...)
}
// CreateBrowserSettings mocks base method.
func (m *MockWorkSpacesWebAPI) CreateBrowserSettings(arg0 *workspacesweb.CreateBrowserSettingsInput) (*workspacesweb.CreateBrowserSettingsOutput, error) {
m.ctrl.T.Helper()
ret := m.ctrl.Call(m, "CreateBrowserSettings", arg0)
ret0, _ := ret[0].(*workspacesweb.CreateBrowserSettingsOutput)
ret1, _ := ret[1].(error)
return ret0, ret1
}
// CreateBrowserSettings indicates an expected call of CreateBrowserSettings.
func (mr *MockWorkSpacesWebAPIMockRecorder) CreateBrowserSettings(arg0 interface{}) *gomock.Call {
mr.mock.ctrl.T.Helper()
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "CreateBrowserSettings", reflect.TypeOf((*MockWorkSpacesWebAPI)(nil).CreateBrowserSettings), arg0)
}
// CreateBrowserSettingsRequest mocks base method.
func (m *MockWorkSpacesWebAPI) CreateBrowserSettingsRequest(arg0 *workspacesweb.CreateBrowserSettingsInput) (*request.Request, *workspacesweb.CreateBrowserSettingsOutput) {
m.ctrl.T.Helper()
ret := m.ctrl.Call(m, "CreateBrowserSettingsRequest", arg0)
ret0, _ := ret[0].(*request.Request)
ret1, _ := ret[1].(*workspacesweb.CreateBrowserSettingsOutput)
return ret0, ret1
}
// CreateBrowserSettingsRequest indicates an expected call of CreateBrowserSettingsRequest.
func (mr *MockWorkSpacesWebAPIMockRecorder) CreateBrowserSettingsRequest(arg0 interface{}) *gomock.Call {
mr.mock.ctrl.T.Helper()
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "CreateBrowserSettingsRequest", reflect.TypeOf((*MockWorkSpacesWebAPI)(nil).CreateBrowserSettingsRequest), arg0)
}
// CreateBrowserSettingsWithContext mocks base method.
func (m *MockWorkSpacesWebAPI) CreateBrowserSettingsWithContext(arg0 context.Context, arg1 *workspacesweb.CreateBrowserSettingsInput, arg2 ...request.Option) (*workspacesweb.CreateBrowserSettingsOutput, error) {
m.ctrl.T.Helper()
varargs := []interface{}{arg0, arg1}
for _, a := range arg2 {
varargs = append(varargs, a)
}
ret := m.ctrl.Call(m, "CreateBrowserSettingsWithContext", varargs...)
ret0, _ := ret[0].(*workspacesweb.CreateBrowserSettingsOutput)
ret1, _ := ret[1].(error)
return ret0, ret1
}
// CreateBrowserSettingsWithContext indicates an expected call of CreateBrowserSettingsWithContext.
func (mr *MockWorkSpacesWebAPIMockRecorder) CreateBrowserSettingsWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call {
mr.mock.ctrl.T.Helper()
varargs := append([]interface{}{arg0, arg1}, arg2...)
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "CreateBrowserSettingsWithContext", reflect.TypeOf((*MockWorkSpacesWebAPI)(nil).CreateBrowserSettingsWithContext), varargs...)
}
// CreateIdentityProvider mocks base method.
func (m *MockWorkSpacesWebAPI) CreateIdentityProvider(arg0 *workspacesweb.CreateIdentityProviderInput) (*workspacesweb.CreateIdentityProviderOutput, error) {
m.ctrl.T.Helper()
ret := m.ctrl.Call(m, "CreateIdentityProvider", arg0)
ret0, _ := ret[0].(*workspacesweb.CreateIdentityProviderOutput)
ret1, _ := ret[1].(error)
return ret0, ret1
}
// CreateIdentityProvider indicates an expected call of CreateIdentityProvider.
func (mr *MockWorkSpacesWebAPIMockRecorder) CreateIdentityProvider(arg0 interface{}) *gomock.Call {
mr.mock.ctrl.T.Helper()
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "CreateIdentityProvider", reflect.TypeOf((*MockWorkSpacesWebAPI)(nil).CreateIdentityProvider), arg0)
}
// CreateIdentityProviderRequest mocks base method.
func (m *MockWorkSpacesWebAPI) CreateIdentityProviderRequest(arg0 *workspacesweb.CreateIdentityProviderInput) (*request.Request, *workspacesweb.CreateIdentityProviderOutput) {
m.ctrl.T.Helper()
ret := m.ctrl.Call(m, "CreateIdentityProviderRequest", arg0)
ret0, _ := ret[0].(*request.Request)
ret1, _ := ret[1].(*workspacesweb.CreateIdentityProviderOutput)
return ret0, ret1
}
// CreateIdentityProviderRequest indicates an expected call of CreateIdentityProviderRequest.
func (mr *MockWorkSpacesWebAPIMockRecorder) CreateIdentityProviderRequest(arg0 interface{}) *gomock.Call {
mr.mock.ctrl.T.Helper()
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "CreateIdentityProviderRequest", reflect.TypeOf((*MockWorkSpacesWebAPI)(nil).CreateIdentityProviderRequest), arg0)
}
// CreateIdentityProviderWithContext mocks base method.
func (m *MockWorkSpacesWebAPI) CreateIdentityProviderWithContext(arg0 context.Context, arg1 *workspacesweb.CreateIdentityProviderInput, arg2 ...request.Option) (*workspacesweb.CreateIdentityProviderOutput, error) {
m.ctrl.T.Helper()
varargs := []interface{}{arg0, arg1}
for _, a := range arg2 {
varargs = append(varargs, a)
}
ret := m.ctrl.Call(m, "CreateIdentityProviderWithContext", varargs...)
ret0, _ := ret[0].(*workspacesweb.CreateIdentityProviderOutput)
ret1, _ := ret[1].(error)
return ret0, ret1
}
// CreateIdentityProviderWithContext indicates an expected call of CreateIdentityProviderWithContext.
func (mr *MockWorkSpacesWebAPIMockRecorder) CreateIdentityProviderWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call {
mr.mock.ctrl.T.Helper()
varargs := append([]interface{}{arg0, arg1}, arg2...)
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "CreateIdentityProviderWithContext", reflect.TypeOf((*MockWorkSpacesWebAPI)(nil).CreateIdentityProviderWithContext), varargs...)
}
// CreateNetworkSettings mocks base method.
func (m *MockWorkSpacesWebAPI) CreateNetworkSettings(arg0 *workspacesweb.CreateNetworkSettingsInput) (*workspacesweb.CreateNetworkSettingsOutput, error) {
m.ctrl.T.Helper()
ret := m.ctrl.Call(m, "CreateNetworkSettings", arg0)
ret0, _ := ret[0].(*workspacesweb.CreateNetworkSettingsOutput)
ret1, _ := ret[1].(error)
return ret0, ret1
}
// CreateNetworkSettings indicates an expected call of CreateNetworkSettings.
func (mr *MockWorkSpacesWebAPIMockRecorder) CreateNetworkSettings(arg0 interface{}) *gomock.Call {
mr.mock.ctrl.T.Helper()
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "CreateNetworkSettings", reflect.TypeOf((*MockWorkSpacesWebAPI)(nil).CreateNetworkSettings), arg0)
}
// CreateNetworkSettingsRequest mocks base method.
func (m *MockWorkSpacesWebAPI) CreateNetworkSettingsRequest(arg0 *workspacesweb.CreateNetworkSettingsInput) (*request.Request, *workspacesweb.CreateNetworkSettingsOutput) {
m.ctrl.T.Helper()
ret := m.ctrl.Call(m, "CreateNetworkSettingsRequest", arg0)
ret0, _ := ret[0].(*request.Request)
ret1, _ := ret[1].(*workspacesweb.CreateNetworkSettingsOutput)
return ret0, ret1
}
// CreateNetworkSettingsRequest indicates an expected call of CreateNetworkSettingsRequest.
func (mr *MockWorkSpacesWebAPIMockRecorder) CreateNetworkSettingsRequest(arg0 interface{}) *gomock.Call {
mr.mock.ctrl.T.Helper()
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "CreateNetworkSettingsRequest", reflect.TypeOf((*MockWorkSpacesWebAPI)(nil).CreateNetworkSettingsRequest), arg0)
}
// CreateNetworkSettingsWithContext mocks base method.
func (m *MockWorkSpacesWebAPI) CreateNetworkSettingsWithContext(arg0 context.Context, arg1 *workspacesweb.CreateNetworkSettingsInput, arg2 ...request.Option) (*workspacesweb.CreateNetworkSettingsOutput, error) {
m.ctrl.T.Helper()
varargs := []interface{}{arg0, arg1}
for _, a := range arg2 {
varargs = append(varargs, a)
}
ret := m.ctrl.Call(m, "CreateNetworkSettingsWithContext", varargs...)
ret0, _ := ret[0].(*workspacesweb.CreateNetworkSettingsOutput)
ret1, _ := ret[1].(error)
return ret0, ret1
}
// CreateNetworkSettingsWithContext indicates an expected call of CreateNetworkSettingsWithContext.
func (mr *MockWorkSpacesWebAPIMockRecorder) CreateNetworkSettingsWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call {
mr.mock.ctrl.T.Helper()
varargs := append([]interface{}{arg0, arg1}, arg2...)
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "CreateNetworkSettingsWithContext", reflect.TypeOf((*MockWorkSpacesWebAPI)(nil).CreateNetworkSettingsWithContext), varargs...)
}
// CreatePortal mocks base method.
func (m *MockWorkSpacesWebAPI) CreatePortal(arg0 *workspacesweb.CreatePortalInput) (*workspacesweb.CreatePortalOutput, error) {
m.ctrl.T.Helper()
ret := m.ctrl.Call(m, "CreatePortal", arg0)
ret0, _ := ret[0].(*workspacesweb.CreatePortalOutput)
ret1, _ := ret[1].(error)
return ret0, ret1
}
// CreatePortal indicates an expected call of CreatePortal.
func (mr *MockWorkSpacesWebAPIMockRecorder) CreatePortal(arg0 interface{}) *gomock.Call {
mr.mock.ctrl.T.Helper()
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "CreatePortal", reflect.TypeOf((*MockWorkSpacesWebAPI)(nil).CreatePortal), arg0)
}
// CreatePortalRequest mocks base method.
func (m *MockWorkSpacesWebAPI) CreatePortalRequest(arg0 *workspacesweb.CreatePortalInput) (*request.Request, *workspacesweb.CreatePortalOutput) {
m.ctrl.T.Helper()
ret := m.ctrl.Call(m, "CreatePortalRequest", arg0)
ret0, _ := ret[0].(*request.Request)
ret1, _ := ret[1].(*workspacesweb.CreatePortalOutput)
return ret0, ret1
}
// CreatePortalRequest indicates an expected call of CreatePortalRequest.
func (mr *MockWorkSpacesWebAPIMockRecorder) CreatePortalRequest(arg0 interface{}) *gomock.Call {
mr.mock.ctrl.T.Helper()
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "CreatePortalRequest", reflect.TypeOf((*MockWorkSpacesWebAPI)(nil).CreatePortalRequest), arg0)
}
// CreatePortalWithContext mocks base method.
func (m *MockWorkSpacesWebAPI) CreatePortalWithContext(arg0 context.Context, arg1 *workspacesweb.CreatePortalInput, arg2 ...request.Option) (*workspacesweb.CreatePortalOutput, error) {
m.ctrl.T.Helper()
varargs := []interface{}{arg0, arg1}
for _, a := range arg2 {
varargs = append(varargs, a)
}
ret := m.ctrl.Call(m, "CreatePortalWithContext", varargs...)
ret0, _ := ret[0].(*workspacesweb.CreatePortalOutput)
ret1, _ := ret[1].(error)
return ret0, ret1
}
// CreatePortalWithContext indicates an expected call of CreatePortalWithContext.
func (mr *MockWorkSpacesWebAPIMockRecorder) CreatePortalWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call {
mr.mock.ctrl.T.Helper()
varargs := append([]interface{}{arg0, arg1}, arg2...)
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "CreatePortalWithContext", reflect.TypeOf((*MockWorkSpacesWebAPI)(nil).CreatePortalWithContext), varargs...)
}
// CreateTrustStore mocks base method.
func (m *MockWorkSpacesWebAPI) CreateTrustStore(arg0 *workspacesweb.CreateTrustStoreInput) (*workspacesweb.CreateTrustStoreOutput, error) {
m.ctrl.T.Helper()
ret := m.ctrl.Call(m, "CreateTrustStore", arg0)
ret0, _ := ret[0].(*workspacesweb.CreateTrustStoreOutput)
ret1, _ := ret[1].(error)
return ret0, ret1
}
// CreateTrustStore indicates an expected call of CreateTrustStore.
func (mr *MockWorkSpacesWebAPIMockRecorder) CreateTrustStore(arg0 interface{}) *gomock.Call {
mr.mock.ctrl.T.Helper()
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "CreateTrustStore", reflect.TypeOf((*MockWorkSpacesWebAPI)(nil).CreateTrustStore), arg0)
}
// CreateTrustStoreRequest mocks base method.
func (m *MockWorkSpacesWebAPI) CreateTrustStoreRequest(arg0 *workspacesweb.CreateTrustStoreInput) (*request.Request, *workspacesweb.CreateTrustStoreOutput) {
m.ctrl.T.Helper()
ret := m.ctrl.Call(m, "CreateTrustStoreRequest", arg0)
ret0, _ := ret[0].(*request.Request)
ret1, _ := ret[1].(*workspacesweb.CreateTrustStoreOutput)
return ret0, ret1
}
// CreateTrustStoreRequest indicates an expected call of CreateTrustStoreRequest.
func (mr *MockWorkSpacesWebAPIMockRecorder) CreateTrustStoreRequest(arg0 interface{}) *gomock.Call {
mr.mock.ctrl.T.Helper()
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "CreateTrustStoreRequest", reflect.TypeOf((*MockWorkSpacesWebAPI)(nil).CreateTrustStoreRequest), arg0)
}
// CreateTrustStoreWithContext mocks base method.
func (m *MockWorkSpacesWebAPI) CreateTrustStoreWithContext(arg0 context.Context, arg1 *workspacesweb.CreateTrustStoreInput, arg2 ...request.Option) (*workspacesweb.CreateTrustStoreOutput, error) {
m.ctrl.T.Helper()
varargs := []interface{}{arg0, arg1}
for _, a := range arg2 {
varargs = append(varargs, a)
}
ret := m.ctrl.Call(m, "CreateTrustStoreWithContext", varargs...)
ret0, _ := ret[0].(*workspacesweb.CreateTrustStoreOutput)
ret1, _ := ret[1].(error)
return ret0, ret1
}
// CreateTrustStoreWithContext indicates an expected call of CreateTrustStoreWithContext.
func (mr *MockWorkSpacesWebAPIMockRecorder) CreateTrustStoreWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call {
mr.mock.ctrl.T.Helper()
varargs := append([]interface{}{arg0, arg1}, arg2...)
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "CreateTrustStoreWithContext", reflect.TypeOf((*MockWorkSpacesWebAPI)(nil).CreateTrustStoreWithContext), varargs...)
}
// CreateUserSettings mocks base method.
func (m *MockWorkSpacesWebAPI) CreateUserSettings(arg0 *workspacesweb.CreateUserSettingsInput) (*workspacesweb.CreateUserSettingsOutput, error) {
m.ctrl.T.Helper()
ret := m.ctrl.Call(m, "CreateUserSettings", arg0)
ret0, _ := ret[0].(*workspacesweb.CreateUserSettingsOutput)
ret1, _ := ret[1].(error)
return ret0, ret1
}
// CreateUserSettings indicates an expected call of CreateUserSettings.
func (mr *MockWorkSpacesWebAPIMockRecorder) CreateUserSettings(arg0 interface{}) *gomock.Call {
mr.mock.ctrl.T.Helper()
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "CreateUserSettings", reflect.TypeOf((*MockWorkSpacesWebAPI)(nil).CreateUserSettings), arg0)
}
// CreateUserSettingsRequest mocks base method.
func (m *MockWorkSpacesWebAPI) CreateUserSettingsRequest(arg0 *workspacesweb.CreateUserSettingsInput) (*request.Request, *workspacesweb.CreateUserSettingsOutput) {
m.ctrl.T.Helper()
ret := m.ctrl.Call(m, "CreateUserSettingsRequest", arg0)
ret0, _ := ret[0].(*request.Request)
ret1, _ := ret[1].(*workspacesweb.CreateUserSettingsOutput)
return ret0, ret1
}
// CreateUserSettingsRequest indicates an expected call of CreateUserSettingsRequest.
func (mr *MockWorkSpacesWebAPIMockRecorder) CreateUserSettingsRequest(arg0 interface{}) *gomock.Call {
mr.mock.ctrl.T.Helper()
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "CreateUserSettingsRequest", reflect.TypeOf((*MockWorkSpacesWebAPI)(nil).CreateUserSettingsRequest), arg0)
}
// CreateUserSettingsWithContext mocks base method.
func (m *MockWorkSpacesWebAPI) CreateUserSettingsWithContext(arg0 context.Context, arg1 *workspacesweb.CreateUserSettingsInput, arg2 ...request.Option) (*workspacesweb.CreateUserSettingsOutput, error) {
m.ctrl.T.Helper()
varargs := []interface{}{arg0, arg1}
for _, a := range arg2 {
varargs = append(varargs, a)
}
ret := m.ctrl.Call(m, "CreateUserSettingsWithContext", varargs...)
ret0, _ := ret[0].(*workspacesweb.CreateUserSettingsOutput)
ret1, _ := ret[1].(error)
return ret0, ret1
}
// CreateUserSettingsWithContext indicates an expected call of CreateUserSettingsWithContext.
func (mr *MockWorkSpacesWebAPIMockRecorder) CreateUserSettingsWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call {
mr.mock.ctrl.T.Helper()
varargs := append([]interface{}{arg0, arg1}, arg2...)
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "CreateUserSettingsWithContext", reflect.TypeOf((*MockWorkSpacesWebAPI)(nil).CreateUserSettingsWithContext), varargs...)
}
// DeleteBrowserSettings mocks base method.
func (m *MockWorkSpacesWebAPI) DeleteBrowserSettings(arg0 *workspacesweb.DeleteBrowserSettingsInput) (*workspacesweb.DeleteBrowserSettingsOutput, error) {
m.ctrl.T.Helper()
ret := m.ctrl.Call(m, "DeleteBrowserSettings", arg0)
ret0, _ := ret[0].(*workspacesweb.DeleteBrowserSettingsOutput)
ret1, _ := ret[1].(error)
return ret0, ret1
}
// DeleteBrowserSettings indicates an expected call of DeleteBrowserSettings.
func (mr *MockWorkSpacesWebAPIMockRecorder) DeleteBrowserSettings(arg0 interface{}) *gomock.Call {
mr.mock.ctrl.T.Helper()
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "DeleteBrowserSettings", reflect.TypeOf((*MockWorkSpacesWebAPI)(nil).DeleteBrowserSettings), arg0)
}
// DeleteBrowserSettingsRequest mocks base method.
func (m *MockWorkSpacesWebAPI) DeleteBrowserSettingsRequest(arg0 *workspacesweb.DeleteBrowserSettingsInput) (*request.Request, *workspacesweb.DeleteBrowserSettingsOutput) {
m.ctrl.T.Helper()
ret := m.ctrl.Call(m, "DeleteBrowserSettingsRequest", arg0)
ret0, _ := ret[0].(*request.Request)
ret1, _ := ret[1].(*workspacesweb.DeleteBrowserSettingsOutput)
return ret0, ret1
}
// DeleteBrowserSettingsRequest indicates an expected call of DeleteBrowserSettingsRequest.
func (mr *MockWorkSpacesWebAPIMockRecorder) DeleteBrowserSettingsRequest(arg0 interface{}) *gomock.Call {
mr.mock.ctrl.T.Helper()
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "DeleteBrowserSettingsRequest", reflect.TypeOf((*MockWorkSpacesWebAPI)(nil).DeleteBrowserSettingsRequest), arg0)
}
// DeleteBrowserSettingsWithContext mocks base method.
func (m *MockWorkSpacesWebAPI) DeleteBrowserSettingsWithContext(arg0 context.Context, arg1 *workspacesweb.DeleteBrowserSettingsInput, arg2 ...request.Option) (*workspacesweb.DeleteBrowserSettingsOutput, error) {
m.ctrl.T.Helper()
varargs := []interface{}{arg0, arg1}
for _, a := range arg2 {
varargs = append(varargs, a)
}
ret := m.ctrl.Call(m, "DeleteBrowserSettingsWithContext", varargs...)
ret0, _ := ret[0].(*workspacesweb.DeleteBrowserSettingsOutput)
ret1, _ := ret[1].(error)
return ret0, ret1
}
// DeleteBrowserSettingsWithContext indicates an expected call of DeleteBrowserSettingsWithContext.
func (mr *MockWorkSpacesWebAPIMockRecorder) DeleteBrowserSettingsWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call {
mr.mock.ctrl.T.Helper()
varargs := append([]interface{}{arg0, arg1}, arg2...)
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "DeleteBrowserSettingsWithContext", reflect.TypeOf((*MockWorkSpacesWebAPI)(nil).DeleteBrowserSettingsWithContext), varargs...)
}
// DeleteIdentityProvider mocks base method.
func (m *MockWorkSpacesWebAPI) DeleteIdentityProvider(arg0 *workspacesweb.DeleteIdentityProviderInput) (*workspacesweb.DeleteIdentityProviderOutput, error) {
m.ctrl.T.Helper()
ret := m.ctrl.Call(m, "DeleteIdentityProvider", arg0)
ret0, _ := ret[0].(*workspacesweb.DeleteIdentityProviderOutput)
ret1, _ := ret[1].(error)
return ret0, ret1
}
// DeleteIdentityProvider indicates an expected call of DeleteIdentityProvider.
func (mr *MockWorkSpacesWebAPIMockRecorder) DeleteIdentityProvider(arg0 interface{}) *gomock.Call {
mr.mock.ctrl.T.Helper()
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "DeleteIdentityProvider", reflect.TypeOf((*MockWorkSpacesWebAPI)(nil).DeleteIdentityProvider), arg0)
}
// DeleteIdentityProviderRequest mocks base method.
func (m *MockWorkSpacesWebAPI) DeleteIdentityProviderRequest(arg0 *workspacesweb.DeleteIdentityProviderInput) (*request.Request, *workspacesweb.DeleteIdentityProviderOutput) {
m.ctrl.T.Helper()
ret := m.ctrl.Call(m, "DeleteIdentityProviderRequest", arg0)
ret0, _ := ret[0].(*request.Request)
ret1, _ := ret[1].(*workspacesweb.DeleteIdentityProviderOutput)
return ret0, ret1
}
// DeleteIdentityProviderRequest indicates an expected call of DeleteIdentityProviderRequest.
func (mr *MockWorkSpacesWebAPIMockRecorder) DeleteIdentityProviderRequest(arg0 interface{}) *gomock.Call {
mr.mock.ctrl.T.Helper()
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "DeleteIdentityProviderRequest", reflect.TypeOf((*MockWorkSpacesWebAPI)(nil).DeleteIdentityProviderRequest), arg0)
}
// DeleteIdentityProviderWithContext mocks base method.
func (m *MockWorkSpacesWebAPI) DeleteIdentityProviderWithContext(arg0 context.Context, arg1 *workspacesweb.DeleteIdentityProviderInput, arg2 ...request.Option) (*workspacesweb.DeleteIdentityProviderOutput, error) {
m.ctrl.T.Helper()
varargs := []interface{}{arg0, arg1}
for _, a := range arg2 {
varargs = append(varargs, a)
}
ret := m.ctrl.Call(m, "DeleteIdentityProviderWithContext", varargs...)
ret0, _ := ret[0].(*workspacesweb.DeleteIdentityProviderOutput)
ret1, _ := ret[1].(error)
return ret0, ret1
}
// DeleteIdentityProviderWithContext indicates an expected call of DeleteIdentityProviderWithContext.
func (mr *MockWorkSpacesWebAPIMockRecorder) DeleteIdentityProviderWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call {
mr.mock.ctrl.T.Helper()
varargs := append([]interface{}{arg0, arg1}, arg2...)
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "DeleteIdentityProviderWithContext", reflect.TypeOf((*MockWorkSpacesWebAPI)(nil).DeleteIdentityProviderWithContext), varargs...)
}
// DeleteNetworkSettings mocks base method.
func (m *MockWorkSpacesWebAPI) DeleteNetworkSettings(arg0 *workspacesweb.DeleteNetworkSettingsInput) (*workspacesweb.DeleteNetworkSettingsOutput, error) {
m.ctrl.T.Helper()
ret := m.ctrl.Call(m, "DeleteNetworkSettings", arg0)
ret0, _ := ret[0].(*workspacesweb.DeleteNetworkSettingsOutput)
ret1, _ := ret[1].(error)
return ret0, ret1
}
// DeleteNetworkSettings indicates an expected call of DeleteNetworkSettings.
func (mr *MockWorkSpacesWebAPIMockRecorder) DeleteNetworkSettings(arg0 interface{}) *gomock.Call {
mr.mock.ctrl.T.Helper()
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "DeleteNetworkSettings", reflect.TypeOf((*MockWorkSpacesWebAPI)(nil).DeleteNetworkSettings), arg0)
}
// DeleteNetworkSettingsRequest mocks base method.
func (m *MockWorkSpacesWebAPI) DeleteNetworkSettingsRequest(arg0 *workspacesweb.DeleteNetworkSettingsInput) (*request.Request, *workspacesweb.DeleteNetworkSettingsOutput) {
m.ctrl.T.Helper()
ret := m.ctrl.Call(m, "DeleteNetworkSettingsRequest", arg0)
ret0, _ := ret[0].(*request.Request)
ret1, _ := ret[1].(*workspacesweb.DeleteNetworkSettingsOutput)
return ret0, ret1
}
// DeleteNetworkSettingsRequest indicates an expected call of DeleteNetworkSettingsRequest.
func (mr *MockWorkSpacesWebAPIMockRecorder) DeleteNetworkSettingsRequest(arg0 interface{}) *gomock.Call {
mr.mock.ctrl.T.Helper()
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "DeleteNetworkSettingsRequest", reflect.TypeOf((*MockWorkSpacesWebAPI)(nil).DeleteNetworkSettingsRequest), arg0)
}
// DeleteNetworkSettingsWithContext mocks base method.
func (m *MockWorkSpacesWebAPI) DeleteNetworkSettingsWithContext(arg0 context.Context, arg1 *workspacesweb.DeleteNetworkSettingsInput, arg2 ...request.Option) (*workspacesweb.DeleteNetworkSettingsOutput, error) {
m.ctrl.T.Helper()
varargs := []interface{}{arg0, arg1}
for _, a := range arg2 {
varargs = append(varargs, a)
}
ret := m.ctrl.Call(m, "DeleteNetworkSettingsWithContext", varargs...)
ret0, _ := ret[0].(*workspacesweb.DeleteNetworkSettingsOutput)
ret1, _ := ret[1].(error)
return ret0, ret1
}
// DeleteNetworkSettingsWithContext indicates an expected call of DeleteNetworkSettingsWithContext.
func (mr *MockWorkSpacesWebAPIMockRecorder) DeleteNetworkSettingsWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call {
mr.mock.ctrl.T.Helper()
varargs := append([]interface{}{arg0, arg1}, arg2...)
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "DeleteNetworkSettingsWithContext", reflect.TypeOf((*MockWorkSpacesWebAPI)(nil).DeleteNetworkSettingsWithContext), varargs...)
}
// DeletePortal mocks base method.
func (m *MockWorkSpacesWebAPI) DeletePortal(arg0 *workspacesweb.DeletePortalInput) (*workspacesweb.DeletePortalOutput, error) {
m.ctrl.T.Helper()
ret := m.ctrl.Call(m, "DeletePortal", arg0)
ret0, _ := ret[0].(*workspacesweb.DeletePortalOutput)
ret1, _ := ret[1].(error)
return ret0, ret1
}
// DeletePortal indicates an expected call of DeletePortal.
func (mr *MockWorkSpacesWebAPIMockRecorder) DeletePortal(arg0 interface{}) *gomock.Call {
mr.mock.ctrl.T.Helper()
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "DeletePortal", reflect.TypeOf((*MockWorkSpacesWebAPI)(nil).DeletePortal), arg0)
}
// DeletePortalRequest mocks base method.
func (m *MockWorkSpacesWebAPI) DeletePortalRequest(arg0 *workspacesweb.DeletePortalInput) (*request.Request, *workspacesweb.DeletePortalOutput) {
m.ctrl.T.Helper()
ret := m.ctrl.Call(m, "DeletePortalRequest", arg0)
ret0, _ := ret[0].(*request.Request)
ret1, _ := ret[1].(*workspacesweb.DeletePortalOutput)
return ret0, ret1
}
// DeletePortalRequest indicates an expected call of DeletePortalRequest.
func (mr *MockWorkSpacesWebAPIMockRecorder) DeletePortalRequest(arg0 interface{}) *gomock.Call {
mr.mock.ctrl.T.Helper()
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "DeletePortalRequest", reflect.TypeOf((*MockWorkSpacesWebAPI)(nil).DeletePortalRequest), arg0)
}
// DeletePortalWithContext mocks base method.
func (m *MockWorkSpacesWebAPI) DeletePortalWithContext(arg0 context.Context, arg1 *workspacesweb.DeletePortalInput, arg2 ...request.Option) (*workspacesweb.DeletePortalOutput, error) {
m.ctrl.T.Helper()
varargs := []interface{}{arg0, arg1}
for _, a := range arg2 {
varargs = append(varargs, a)
}
ret := m.ctrl.Call(m, "DeletePortalWithContext", varargs...)
ret0, _ := ret[0].(*workspacesweb.DeletePortalOutput)
ret1, _ := ret[1].(error)
return ret0, ret1
}
// DeletePortalWithContext indicates an expected call of DeletePortalWithContext.
func (mr *MockWorkSpacesWebAPIMockRecorder) DeletePortalWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call {
mr.mock.ctrl.T.Helper()
varargs := append([]interface{}{arg0, arg1}, arg2...)
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "DeletePortalWithContext", reflect.TypeOf((*MockWorkSpacesWebAPI)(nil).DeletePortalWithContext), varargs...)
}
// DeleteTrustStore mocks base method.
func (m *MockWorkSpacesWebAPI) DeleteTrustStore(arg0 *workspacesweb.DeleteTrustStoreInput) (*workspacesweb.DeleteTrustStoreOutput, error) {
m.ctrl.T.Helper()
ret := m.ctrl.Call(m, "DeleteTrustStore", arg0)
ret0, _ := ret[0].(*workspacesweb.DeleteTrustStoreOutput)
ret1, _ := ret[1].(error)
return ret0, ret1
}
// DeleteTrustStore indicates an expected call of DeleteTrustStore.
func (mr *MockWorkSpacesWebAPIMockRecorder) DeleteTrustStore(arg0 interface{}) *gomock.Call {
mr.mock.ctrl.T.Helper()
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "DeleteTrustStore", reflect.TypeOf((*MockWorkSpacesWebAPI)(nil).DeleteTrustStore), arg0)
}
// DeleteTrustStoreRequest mocks base method.
func (m *MockWorkSpacesWebAPI) DeleteTrustStoreRequest(arg0 *workspacesweb.DeleteTrustStoreInput) (*request.Request, *workspacesweb.DeleteTrustStoreOutput) {
m.ctrl.T.Helper()
ret := m.ctrl.Call(m, "DeleteTrustStoreRequest", arg0)
ret0, _ := ret[0].(*request.Request)
ret1, _ := ret[1].(*workspacesweb.DeleteTrustStoreOutput)
return ret0, ret1
}
// DeleteTrustStoreRequest indicates an expected call of DeleteTrustStoreRequest.
func (mr *MockWorkSpacesWebAPIMockRecorder) DeleteTrustStoreRequest(arg0 interface{}) *gomock.Call {
mr.mock.ctrl.T.Helper()
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "DeleteTrustStoreRequest", reflect.TypeOf((*MockWorkSpacesWebAPI)(nil).DeleteTrustStoreRequest), arg0)
}
// DeleteTrustStoreWithContext mocks base method.
func (m *MockWorkSpacesWebAPI) DeleteTrustStoreWithContext(arg0 context.Context, arg1 *workspacesweb.DeleteTrustStoreInput, arg2 ...request.Option) (*workspacesweb.DeleteTrustStoreOutput, error) {
m.ctrl.T.Helper()
varargs := []interface{}{arg0, arg1}
for _, a := range arg2 {
varargs = append(varargs, a)
}
ret := m.ctrl.Call(m, "DeleteTrustStoreWithContext", varargs...)
ret0, _ := ret[0].(*workspacesweb.DeleteTrustStoreOutput)
ret1, _ := ret[1].(error)
return ret0, ret1
}
// DeleteTrustStoreWithContext indicates an expected call of DeleteTrustStoreWithContext.
func (mr *MockWorkSpacesWebAPIMockRecorder) DeleteTrustStoreWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call {
mr.mock.ctrl.T.Helper()
varargs := append([]interface{}{arg0, arg1}, arg2...)
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "DeleteTrustStoreWithContext", reflect.TypeOf((*MockWorkSpacesWebAPI)(nil).DeleteTrustStoreWithContext), varargs...)
}
// DeleteUserSettings mocks base method.
func (m *MockWorkSpacesWebAPI) DeleteUserSettings(arg0 *workspacesweb.DeleteUserSettingsInput) (*workspacesweb.DeleteUserSettingsOutput, error) {
m.ctrl.T.Helper()
ret := m.ctrl.Call(m, "DeleteUserSettings", arg0)
ret0, _ := ret[0].(*workspacesweb.DeleteUserSettingsOutput)
ret1, _ := ret[1].(error)
return ret0, ret1
}
// DeleteUserSettings indicates an expected call of DeleteUserSettings.
func (mr *MockWorkSpacesWebAPIMockRecorder) DeleteUserSettings(arg0 interface{}) *gomock.Call {
mr.mock.ctrl.T.Helper()
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "DeleteUserSettings", reflect.TypeOf((*MockWorkSpacesWebAPI)(nil).DeleteUserSettings), arg0)
}
// DeleteUserSettingsRequest mocks base method.
func (m *MockWorkSpacesWebAPI) DeleteUserSettingsRequest(arg0 *workspacesweb.DeleteUserSettingsInput) (*request.Request, *workspacesweb.DeleteUserSettingsOutput) {
m.ctrl.T.Helper()
ret := m.ctrl.Call(m, "DeleteUserSettingsRequest", arg0)
ret0, _ := ret[0].(*request.Request)
ret1, _ := ret[1].(*workspacesweb.DeleteUserSettingsOutput)
return ret0, ret1
}
// DeleteUserSettingsRequest indicates an expected call of DeleteUserSettingsRequest.
func (mr *MockWorkSpacesWebAPIMockRecorder) DeleteUserSettingsRequest(arg0 interface{}) *gomock.Call {
mr.mock.ctrl.T.Helper()
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "DeleteUserSettingsRequest", reflect.TypeOf((*MockWorkSpacesWebAPI)(nil).DeleteUserSettingsRequest), arg0)
}
// DeleteUserSettingsWithContext mocks base method.
func (m *MockWorkSpacesWebAPI) DeleteUserSettingsWithContext(arg0 context.Context, arg1 *workspacesweb.DeleteUserSettingsInput, arg2 ...request.Option) (*workspacesweb.DeleteUserSettingsOutput, error) {
m.ctrl.T.Helper()
varargs := []interface{}{arg0, arg1}
for _, a := range arg2 {
varargs = append(varargs, a)
}
ret := m.ctrl.Call(m, "DeleteUserSettingsWithContext", varargs...)
ret0, _ := ret[0].(*workspacesweb.DeleteUserSettingsOutput)
ret1, _ := ret[1].(error)
return ret0, ret1
}
// DeleteUserSettingsWithContext indicates an expected call of DeleteUserSettingsWithContext.
func (mr *MockWorkSpacesWebAPIMockRecorder) DeleteUserSettingsWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call {
mr.mock.ctrl.T.Helper()
varargs := append([]interface{}{arg0, arg1}, arg2...)
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "DeleteUserSettingsWithContext", reflect.TypeOf((*MockWorkSpacesWebAPI)(nil).DeleteUserSettingsWithContext), varargs...)
}
// DisassociateBrowserSettings mocks base method.
func (m *MockWorkSpacesWebAPI) DisassociateBrowserSettings(arg0 *workspacesweb.DisassociateBrowserSettingsInput) (*workspacesweb.DisassociateBrowserSettingsOutput, error) {
m.ctrl.T.Helper()
ret := m.ctrl.Call(m, "DisassociateBrowserSettings", arg0)
ret0, _ := ret[0].(*workspacesweb.DisassociateBrowserSettingsOutput)
ret1, _ := ret[1].(error)
return ret0, ret1
}
// DisassociateBrowserSettings indicates an expected call of DisassociateBrowserSettings.
func (mr *MockWorkSpacesWebAPIMockRecorder) DisassociateBrowserSettings(arg0 interface{}) *gomock.Call {
mr.mock.ctrl.T.Helper()
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "DisassociateBrowserSettings", reflect.TypeOf((*MockWorkSpacesWebAPI)(nil).DisassociateBrowserSettings), arg0)
}
// DisassociateBrowserSettingsRequest mocks base method.
func (m *MockWorkSpacesWebAPI) DisassociateBrowserSettingsRequest(arg0 *workspacesweb.DisassociateBrowserSettingsInput) (*request.Request, *workspacesweb.DisassociateBrowserSettingsOutput) {
m.ctrl.T.Helper()
ret := m.ctrl.Call(m, "DisassociateBrowserSettingsRequest", arg0)
ret0, _ := ret[0].(*request.Request)
ret1, _ := ret[1].(*workspacesweb.DisassociateBrowserSettingsOutput)
return ret0, ret1
}
// DisassociateBrowserSettingsRequest indicates an expected call of DisassociateBrowserSettingsRequest.
func (mr *MockWorkSpacesWebAPIMockRecorder) DisassociateBrowserSettingsRequest(arg0 interface{}) *gomock.Call {
mr.mock.ctrl.T.Helper()
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "DisassociateBrowserSettingsRequest", reflect.TypeOf((*MockWorkSpacesWebAPI)(nil).DisassociateBrowserSettingsRequest), arg0)
}
// DisassociateBrowserSettingsWithContext mocks base method.
func (m *MockWorkSpacesWebAPI) DisassociateBrowserSettingsWithContext(arg0 context.Context, arg1 *workspacesweb.DisassociateBrowserSettingsInput, arg2 ...request.Option) (*workspacesweb.DisassociateBrowserSettingsOutput, error) {
m.ctrl.T.Helper()
varargs := []interface{}{arg0, arg1}
for _, a := range arg2 {
varargs = append(varargs, a)
}
ret := m.ctrl.Call(m, "DisassociateBrowserSettingsWithContext", varargs...)
ret0, _ := ret[0].(*workspacesweb.DisassociateBrowserSettingsOutput)
ret1, _ := ret[1].(error)
return ret0, ret1
}
// DisassociateBrowserSettingsWithContext indicates an expected call of DisassociateBrowserSettingsWithContext.
func (mr *MockWorkSpacesWebAPIMockRecorder) DisassociateBrowserSettingsWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call {
mr.mock.ctrl.T.Helper()
varargs := append([]interface{}{arg0, arg1}, arg2...)
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "DisassociateBrowserSettingsWithContext", reflect.TypeOf((*MockWorkSpacesWebAPI)(nil).DisassociateBrowserSettingsWithContext), varargs...)
}
// DisassociateNetworkSettings mocks base method.
func (m *MockWorkSpacesWebAPI) DisassociateNetworkSettings(arg0 *workspacesweb.DisassociateNetworkSettingsInput) (*workspacesweb.DisassociateNetworkSettingsOutput, error) {
m.ctrl.T.Helper()
ret := m.ctrl.Call(m, "DisassociateNetworkSettings", arg0)
ret0, _ := ret[0].(*workspacesweb.DisassociateNetworkSettingsOutput)
ret1, _ := ret[1].(error)
return ret0, ret1
}
// DisassociateNetworkSettings indicates an expected call of DisassociateNetworkSettings.
func (mr *MockWorkSpacesWebAPIMockRecorder) DisassociateNetworkSettings(arg0 interface{}) *gomock.Call {
mr.mock.ctrl.T.Helper()
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "DisassociateNetworkSettings", reflect.TypeOf((*MockWorkSpacesWebAPI)(nil).DisassociateNetworkSettings), arg0)
}
// DisassociateNetworkSettingsRequest mocks base method.
func (m *MockWorkSpacesWebAPI) DisassociateNetworkSettingsRequest(arg0 *workspacesweb.DisassociateNetworkSettingsInput) (*request.Request, *workspacesweb.DisassociateNetworkSettingsOutput) {
m.ctrl.T.Helper()
ret := m.ctrl.Call(m, "DisassociateNetworkSettingsRequest", arg0)
ret0, _ := ret[0].(*request.Request)
ret1, _ := ret[1].(*workspacesweb.DisassociateNetworkSettingsOutput)
return ret0, ret1
}
// DisassociateNetworkSettingsRequest indicates an expected call of DisassociateNetworkSettingsRequest.
func (mr *MockWorkSpacesWebAPIMockRecorder) DisassociateNetworkSettingsRequest(arg0 interface{}) *gomock.Call {
mr.mock.ctrl.T.Helper()
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "DisassociateNetworkSettingsRequest", reflect.TypeOf((*MockWorkSpacesWebAPI)(nil).DisassociateNetworkSettingsRequest), arg0)
}
// DisassociateNetworkSettingsWithContext mocks base method.
func (m *MockWorkSpacesWebAPI) DisassociateNetworkSettingsWithContext(arg0 context.Context, arg1 *workspacesweb.DisassociateNetworkSettingsInput, arg2 ...request.Option) (*workspacesweb.DisassociateNetworkSettingsOutput, error) {
m.ctrl.T.Helper()
varargs := []interface{}{arg0, arg1}
for _, a := range arg2 {
varargs = append(varargs, a)
}
ret := m.ctrl.Call(m, "DisassociateNetworkSettingsWithContext", varargs...)
ret0, _ := ret[0].(*workspacesweb.DisassociateNetworkSettingsOutput)
ret1, _ := ret[1].(error)
return ret0, ret1
}
// DisassociateNetworkSettingsWithContext indicates an expected call of DisassociateNetworkSettingsWithContext.
func (mr *MockWorkSpacesWebAPIMockRecorder) DisassociateNetworkSettingsWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call {
mr.mock.ctrl.T.Helper()
varargs := append([]interface{}{arg0, arg1}, arg2...)
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "DisassociateNetworkSettingsWithContext", reflect.TypeOf((*MockWorkSpacesWebAPI)(nil).DisassociateNetworkSettingsWithContext), varargs...)
}
// DisassociateTrustStore mocks base method.
func (m *MockWorkSpacesWebAPI) DisassociateTrustStore(arg0 *workspacesweb.DisassociateTrustStoreInput) (*workspacesweb.DisassociateTrustStoreOutput, error) {
m.ctrl.T.Helper()
ret := m.ctrl.Call(m, "DisassociateTrustStore", arg0)
ret0, _ := ret[0].(*workspacesweb.DisassociateTrustStoreOutput)
ret1, _ := ret[1].(error)
return ret0, ret1
}
// DisassociateTrustStore indicates an expected call of DisassociateTrustStore.
func (mr *MockWorkSpacesWebAPIMockRecorder) DisassociateTrustStore(arg0 interface{}) *gomock.Call {
mr.mock.ctrl.T.Helper()
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "DisassociateTrustStore", reflect.TypeOf((*MockWorkSpacesWebAPI)(nil).DisassociateTrustStore), arg0)
}
// DisassociateTrustStoreRequest mocks base method.
func (m *MockWorkSpacesWebAPI) DisassociateTrustStoreRequest(arg0 *workspacesweb.DisassociateTrustStoreInput) (*request.Request, *workspacesweb.DisassociateTrustStoreOutput) {
m.ctrl.T.Helper()
ret := m.ctrl.Call(m, "DisassociateTrustStoreRequest", arg0)
ret0, _ := ret[0].(*request.Request)
ret1, _ := ret[1].(*workspacesweb.DisassociateTrustStoreOutput)
return ret0, ret1
}
// DisassociateTrustStoreRequest indicates an expected call of DisassociateTrustStoreRequest.
func (mr *MockWorkSpacesWebAPIMockRecorder) DisassociateTrustStoreRequest(arg0 interface{}) *gomock.Call {
mr.mock.ctrl.T.Helper()
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "DisassociateTrustStoreRequest", reflect.TypeOf((*MockWorkSpacesWebAPI)(nil).DisassociateTrustStoreRequest), arg0)
}
// DisassociateTrustStoreWithContext mocks base method.
func (m *MockWorkSpacesWebAPI) DisassociateTrustStoreWithContext(arg0 context.Context, arg1 *workspacesweb.DisassociateTrustStoreInput, arg2 ...request.Option) (*workspacesweb.DisassociateTrustStoreOutput, error) {
m.ctrl.T.Helper()
varargs := []interface{}{arg0, arg1}
for _, a := range arg2 {
varargs = append(varargs, a)
}
ret := m.ctrl.Call(m, "DisassociateTrustStoreWithContext", varargs...)
ret0, _ := ret[0].(*workspacesweb.DisassociateTrustStoreOutput)
ret1, _ := ret[1].(error)
return ret0, ret1
}
// DisassociateTrustStoreWithContext indicates an expected call of DisassociateTrustStoreWithContext.
func (mr *MockWorkSpacesWebAPIMockRecorder) DisassociateTrustStoreWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call {
mr.mock.ctrl.T.Helper()
varargs := append([]interface{}{arg0, arg1}, arg2...)
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "DisassociateTrustStoreWithContext", reflect.TypeOf((*MockWorkSpacesWebAPI)(nil).DisassociateTrustStoreWithContext), varargs...)
}
// DisassociateUserSettings mocks base method.
func (m *MockWorkSpacesWebAPI) DisassociateUserSettings(arg0 *workspacesweb.DisassociateUserSettingsInput) (*workspacesweb.DisassociateUserSettingsOutput, error) {
m.ctrl.T.Helper()
ret := m.ctrl.Call(m, "DisassociateUserSettings", arg0)
ret0, _ := ret[0].(*workspacesweb.DisassociateUserSettingsOutput)
ret1, _ := ret[1].(error)
return ret0, ret1
}
// DisassociateUserSettings indicates an expected call of DisassociateUserSettings.
func (mr *MockWorkSpacesWebAPIMockRecorder) DisassociateUserSettings(arg0 interface{}) *gomock.Call {
mr.mock.ctrl.T.Helper()