-
Notifications
You must be signed in to change notification settings - Fork 78
/
operator_test.go
5328 lines (4519 loc) · 226 KB
/
operator_test.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
package spruce
import (
"context"
"fmt"
"os"
"path/filepath"
"reflect"
"sort"
"testing"
"github.com/aws/aws-sdk-go/aws"
"github.com/aws/aws-sdk-go/aws/request"
"github.com/aws/aws-sdk-go/service/secretsmanager"
"github.com/aws/aws-sdk-go/service/secretsmanager/secretsmanageriface"
"github.com/aws/aws-sdk-go/service/ssm"
"github.com/aws/aws-sdk-go/service/ssm/ssmiface"
"github.com/geofffranks/simpleyaml"
. "github.com/smartystreets/goconvey/convey"
"github.com/starkandwayne/goutils/tree"
)
type mockedSSM struct {
ssmiface.SSMAPI
secretsmanageriface.SecretsManagerAPI
MockGetParameter func(*ssm.GetParameterInput) (*ssm.GetParameterOutput, error)
}
// AddTagsToResource implements ssmiface.SSMAPI.
// Subtle: this method shadows the method (SSMAPI).AddTagsToResource of mockedSSM.SSMAPI.
func (m *mockedSSM) AddTagsToResource(*ssm.AddTagsToResourceInput) (*ssm.AddTagsToResourceOutput, error) {
panic("unimplemented")
}
// AddTagsToResourceRequest implements ssmiface.SSMAPI.
// Subtle: this method shadows the method (SSMAPI).AddTagsToResourceRequest of mockedSSM.SSMAPI.
func (m *mockedSSM) AddTagsToResourceRequest(*ssm.AddTagsToResourceInput) (*request.Request, *ssm.AddTagsToResourceOutput) {
panic("unimplemented")
}
// AddTagsToResourceWithContext implements ssmiface.SSMAPI.
// Subtle: this method shadows the method (SSMAPI).AddTagsToResourceWithContext of mockedSSM.SSMAPI.
func (m *mockedSSM) AddTagsToResourceWithContext(context.Context, *ssm.AddTagsToResourceInput, ...request.Option) (*ssm.AddTagsToResourceOutput, error) {
panic("unimplemented")
}
// AssociateOpsItemRelatedItem implements ssmiface.SSMAPI.
// Subtle: this method shadows the method (SSMAPI).AssociateOpsItemRelatedItem of mockedSSM.SSMAPI.
func (m *mockedSSM) AssociateOpsItemRelatedItem(*ssm.AssociateOpsItemRelatedItemInput) (*ssm.AssociateOpsItemRelatedItemOutput, error) {
panic("unimplemented")
}
// AssociateOpsItemRelatedItemRequest implements ssmiface.SSMAPI.
// Subtle: this method shadows the method (SSMAPI).AssociateOpsItemRelatedItemRequest of mockedSSM.SSMAPI.
func (m *mockedSSM) AssociateOpsItemRelatedItemRequest(*ssm.AssociateOpsItemRelatedItemInput) (*request.Request, *ssm.AssociateOpsItemRelatedItemOutput) {
panic("unimplemented")
}
// AssociateOpsItemRelatedItemWithContext implements ssmiface.SSMAPI.
// Subtle: this method shadows the method (SSMAPI).AssociateOpsItemRelatedItemWithContext of mockedSSM.SSMAPI.
func (m *mockedSSM) AssociateOpsItemRelatedItemWithContext(context.Context, *ssm.AssociateOpsItemRelatedItemInput, ...request.Option) (*ssm.AssociateOpsItemRelatedItemOutput, error) {
panic("unimplemented")
}
// CancelCommand implements ssmiface.SSMAPI.
// Subtle: this method shadows the method (SSMAPI).CancelCommand of mockedSSM.SSMAPI.
func (m *mockedSSM) CancelCommand(*ssm.CancelCommandInput) (*ssm.CancelCommandOutput, error) {
panic("unimplemented")
}
// CancelCommandRequest implements ssmiface.SSMAPI.
// Subtle: this method shadows the method (SSMAPI).CancelCommandRequest of mockedSSM.SSMAPI.
func (m *mockedSSM) CancelCommandRequest(*ssm.CancelCommandInput) (*request.Request, *ssm.CancelCommandOutput) {
panic("unimplemented")
}
// CancelCommandWithContext implements ssmiface.SSMAPI.
// Subtle: this method shadows the method (SSMAPI).CancelCommandWithContext of mockedSSM.SSMAPI.
func (m *mockedSSM) CancelCommandWithContext(context.Context, *ssm.CancelCommandInput, ...request.Option) (*ssm.CancelCommandOutput, error) {
panic("unimplemented")
}
// CancelMaintenanceWindowExecution implements ssmiface.SSMAPI.
// Subtle: this method shadows the method (SSMAPI).CancelMaintenanceWindowExecution of mockedSSM.SSMAPI.
func (m *mockedSSM) CancelMaintenanceWindowExecution(*ssm.CancelMaintenanceWindowExecutionInput) (*ssm.CancelMaintenanceWindowExecutionOutput, error) {
panic("unimplemented")
}
// CancelMaintenanceWindowExecutionRequest implements ssmiface.SSMAPI.
// Subtle: this method shadows the method (SSMAPI).CancelMaintenanceWindowExecutionRequest of mockedSSM.SSMAPI.
func (m *mockedSSM) CancelMaintenanceWindowExecutionRequest(*ssm.CancelMaintenanceWindowExecutionInput) (*request.Request, *ssm.CancelMaintenanceWindowExecutionOutput) {
panic("unimplemented")
}
// CancelMaintenanceWindowExecutionWithContext implements ssmiface.SSMAPI.
// Subtle: this method shadows the method (SSMAPI).CancelMaintenanceWindowExecutionWithContext of mockedSSM.SSMAPI.
func (m *mockedSSM) CancelMaintenanceWindowExecutionWithContext(context.Context, *ssm.CancelMaintenanceWindowExecutionInput, ...request.Option) (*ssm.CancelMaintenanceWindowExecutionOutput, error) {
panic("unimplemented")
}
// CreateActivation implements ssmiface.SSMAPI.
// Subtle: this method shadows the method (SSMAPI).CreateActivation of mockedSSM.SSMAPI.
func (m *mockedSSM) CreateActivation(*ssm.CreateActivationInput) (*ssm.CreateActivationOutput, error) {
panic("unimplemented")
}
// CreateActivationRequest implements ssmiface.SSMAPI.
// Subtle: this method shadows the method (SSMAPI).CreateActivationRequest of mockedSSM.SSMAPI.
func (m *mockedSSM) CreateActivationRequest(*ssm.CreateActivationInput) (*request.Request, *ssm.CreateActivationOutput) {
panic("unimplemented")
}
// CreateActivationWithContext implements ssmiface.SSMAPI.
// Subtle: this method shadows the method (SSMAPI).CreateActivationWithContext of mockedSSM.SSMAPI.
func (m *mockedSSM) CreateActivationWithContext(context.Context, *ssm.CreateActivationInput, ...request.Option) (*ssm.CreateActivationOutput, error) {
panic("unimplemented")
}
// CreateAssociation implements ssmiface.SSMAPI.
// Subtle: this method shadows the method (SSMAPI).CreateAssociation of mockedSSM.SSMAPI.
func (m *mockedSSM) CreateAssociation(*ssm.CreateAssociationInput) (*ssm.CreateAssociationOutput, error) {
panic("unimplemented")
}
// CreateAssociationBatch implements ssmiface.SSMAPI.
// Subtle: this method shadows the method (SSMAPI).CreateAssociationBatch of mockedSSM.SSMAPI.
func (m *mockedSSM) CreateAssociationBatch(*ssm.CreateAssociationBatchInput) (*ssm.CreateAssociationBatchOutput, error) {
panic("unimplemented")
}
// CreateAssociationBatchRequest implements ssmiface.SSMAPI.
// Subtle: this method shadows the method (SSMAPI).CreateAssociationBatchRequest of mockedSSM.SSMAPI.
func (m *mockedSSM) CreateAssociationBatchRequest(*ssm.CreateAssociationBatchInput) (*request.Request, *ssm.CreateAssociationBatchOutput) {
panic("unimplemented")
}
// CreateAssociationBatchWithContext implements ssmiface.SSMAPI.
// Subtle: this method shadows the method (SSMAPI).CreateAssociationBatchWithContext of mockedSSM.SSMAPI.
func (m *mockedSSM) CreateAssociationBatchWithContext(context.Context, *ssm.CreateAssociationBatchInput, ...request.Option) (*ssm.CreateAssociationBatchOutput, error) {
panic("unimplemented")
}
// CreateAssociationRequest implements ssmiface.SSMAPI.
// Subtle: this method shadows the method (SSMAPI).CreateAssociationRequest of mockedSSM.SSMAPI.
func (m *mockedSSM) CreateAssociationRequest(*ssm.CreateAssociationInput) (*request.Request, *ssm.CreateAssociationOutput) {
panic("unimplemented")
}
// CreateAssociationWithContext implements ssmiface.SSMAPI.
// Subtle: this method shadows the method (SSMAPI).CreateAssociationWithContext of mockedSSM.SSMAPI.
func (m *mockedSSM) CreateAssociationWithContext(context.Context, *ssm.CreateAssociationInput, ...request.Option) (*ssm.CreateAssociationOutput, error) {
panic("unimplemented")
}
// CreateDocument implements ssmiface.SSMAPI.
// Subtle: this method shadows the method (SSMAPI).CreateDocument of mockedSSM.SSMAPI.
func (m *mockedSSM) CreateDocument(*ssm.CreateDocumentInput) (*ssm.CreateDocumentOutput, error) {
panic("unimplemented")
}
// CreateDocumentRequest implements ssmiface.SSMAPI.
// Subtle: this method shadows the method (SSMAPI).CreateDocumentRequest of mockedSSM.SSMAPI.
func (m *mockedSSM) CreateDocumentRequest(*ssm.CreateDocumentInput) (*request.Request, *ssm.CreateDocumentOutput) {
panic("unimplemented")
}
// CreateDocumentWithContext implements ssmiface.SSMAPI.
// Subtle: this method shadows the method (SSMAPI).CreateDocumentWithContext of mockedSSM.SSMAPI.
func (m *mockedSSM) CreateDocumentWithContext(context.Context, *ssm.CreateDocumentInput, ...request.Option) (*ssm.CreateDocumentOutput, error) {
panic("unimplemented")
}
// CreateMaintenanceWindow implements ssmiface.SSMAPI.
// Subtle: this method shadows the method (SSMAPI).CreateMaintenanceWindow of mockedSSM.SSMAPI.
func (m *mockedSSM) CreateMaintenanceWindow(*ssm.CreateMaintenanceWindowInput) (*ssm.CreateMaintenanceWindowOutput, error) {
panic("unimplemented")
}
// CreateMaintenanceWindowRequest implements ssmiface.SSMAPI.
// Subtle: this method shadows the method (SSMAPI).CreateMaintenanceWindowRequest of mockedSSM.SSMAPI.
func (m *mockedSSM) CreateMaintenanceWindowRequest(*ssm.CreateMaintenanceWindowInput) (*request.Request, *ssm.CreateMaintenanceWindowOutput) {
panic("unimplemented")
}
// CreateMaintenanceWindowWithContext implements ssmiface.SSMAPI.
// Subtle: this method shadows the method (SSMAPI).CreateMaintenanceWindowWithContext of mockedSSM.SSMAPI.
func (m *mockedSSM) CreateMaintenanceWindowWithContext(context.Context, *ssm.CreateMaintenanceWindowInput, ...request.Option) (*ssm.CreateMaintenanceWindowOutput, error) {
panic("unimplemented")
}
// CreateOpsItem implements ssmiface.SSMAPI.
// Subtle: this method shadows the method (SSMAPI).CreateOpsItem of mockedSSM.SSMAPI.
func (m *mockedSSM) CreateOpsItem(*ssm.CreateOpsItemInput) (*ssm.CreateOpsItemOutput, error) {
panic("unimplemented")
}
// CreateOpsItemRequest implements ssmiface.SSMAPI.
// Subtle: this method shadows the method (SSMAPI).CreateOpsItemRequest of mockedSSM.SSMAPI.
func (m *mockedSSM) CreateOpsItemRequest(*ssm.CreateOpsItemInput) (*request.Request, *ssm.CreateOpsItemOutput) {
panic("unimplemented")
}
// CreateOpsItemWithContext implements ssmiface.SSMAPI.
// Subtle: this method shadows the method (SSMAPI).CreateOpsItemWithContext of mockedSSM.SSMAPI.
func (m *mockedSSM) CreateOpsItemWithContext(context.Context, *ssm.CreateOpsItemInput, ...request.Option) (*ssm.CreateOpsItemOutput, error) {
panic("unimplemented")
}
// CreateOpsMetadata implements ssmiface.SSMAPI.
// Subtle: this method shadows the method (SSMAPI).CreateOpsMetadata of mockedSSM.SSMAPI.
func (m *mockedSSM) CreateOpsMetadata(*ssm.CreateOpsMetadataInput) (*ssm.CreateOpsMetadataOutput, error) {
panic("unimplemented")
}
// CreateOpsMetadataRequest implements ssmiface.SSMAPI.
// Subtle: this method shadows the method (SSMAPI).CreateOpsMetadataRequest of mockedSSM.SSMAPI.
func (m *mockedSSM) CreateOpsMetadataRequest(*ssm.CreateOpsMetadataInput) (*request.Request, *ssm.CreateOpsMetadataOutput) {
panic("unimplemented")
}
// CreateOpsMetadataWithContext implements ssmiface.SSMAPI.
// Subtle: this method shadows the method (SSMAPI).CreateOpsMetadataWithContext of mockedSSM.SSMAPI.
func (m *mockedSSM) CreateOpsMetadataWithContext(context.Context, *ssm.CreateOpsMetadataInput, ...request.Option) (*ssm.CreateOpsMetadataOutput, error) {
panic("unimplemented")
}
// CreatePatchBaseline implements ssmiface.SSMAPI.
// Subtle: this method shadows the method (SSMAPI).CreatePatchBaseline of mockedSSM.SSMAPI.
func (m *mockedSSM) CreatePatchBaseline(*ssm.CreatePatchBaselineInput) (*ssm.CreatePatchBaselineOutput, error) {
panic("unimplemented")
}
// CreatePatchBaselineRequest implements ssmiface.SSMAPI.
// Subtle: this method shadows the method (SSMAPI).CreatePatchBaselineRequest of mockedSSM.SSMAPI.
func (m *mockedSSM) CreatePatchBaselineRequest(*ssm.CreatePatchBaselineInput) (*request.Request, *ssm.CreatePatchBaselineOutput) {
panic("unimplemented")
}
// CreatePatchBaselineWithContext implements ssmiface.SSMAPI.
// Subtle: this method shadows the method (SSMAPI).CreatePatchBaselineWithContext of mockedSSM.SSMAPI.
func (m *mockedSSM) CreatePatchBaselineWithContext(context.Context, *ssm.CreatePatchBaselineInput, ...request.Option) (*ssm.CreatePatchBaselineOutput, error) {
panic("unimplemented")
}
// CreateResourceDataSync implements ssmiface.SSMAPI.
// Subtle: this method shadows the method (SSMAPI).CreateResourceDataSync of mockedSSM.SSMAPI.
func (m *mockedSSM) CreateResourceDataSync(*ssm.CreateResourceDataSyncInput) (*ssm.CreateResourceDataSyncOutput, error) {
panic("unimplemented")
}
// CreateResourceDataSyncRequest implements ssmiface.SSMAPI.
// Subtle: this method shadows the method (SSMAPI).CreateResourceDataSyncRequest of mockedSSM.SSMAPI.
func (m *mockedSSM) CreateResourceDataSyncRequest(*ssm.CreateResourceDataSyncInput) (*request.Request, *ssm.CreateResourceDataSyncOutput) {
panic("unimplemented")
}
// CreateResourceDataSyncWithContext implements ssmiface.SSMAPI.
// Subtle: this method shadows the method (SSMAPI).CreateResourceDataSyncWithContext of mockedSSM.SSMAPI.
func (m *mockedSSM) CreateResourceDataSyncWithContext(context.Context, *ssm.CreateResourceDataSyncInput, ...request.Option) (*ssm.CreateResourceDataSyncOutput, error) {
panic("unimplemented")
}
// DeleteActivation implements ssmiface.SSMAPI.
// Subtle: this method shadows the method (SSMAPI).DeleteActivation of mockedSSM.SSMAPI.
func (m *mockedSSM) DeleteActivation(*ssm.DeleteActivationInput) (*ssm.DeleteActivationOutput, error) {
panic("unimplemented")
}
// DeleteActivationRequest implements ssmiface.SSMAPI.
// Subtle: this method shadows the method (SSMAPI).DeleteActivationRequest of mockedSSM.SSMAPI.
func (m *mockedSSM) DeleteActivationRequest(*ssm.DeleteActivationInput) (*request.Request, *ssm.DeleteActivationOutput) {
panic("unimplemented")
}
// DeleteActivationWithContext implements ssmiface.SSMAPI.
// Subtle: this method shadows the method (SSMAPI).DeleteActivationWithContext of mockedSSM.SSMAPI.
func (m *mockedSSM) DeleteActivationWithContext(context.Context, *ssm.DeleteActivationInput, ...request.Option) (*ssm.DeleteActivationOutput, error) {
panic("unimplemented")
}
// DeleteAssociation implements ssmiface.SSMAPI.
// Subtle: this method shadows the method (SSMAPI).DeleteAssociation of mockedSSM.SSMAPI.
func (m *mockedSSM) DeleteAssociation(*ssm.DeleteAssociationInput) (*ssm.DeleteAssociationOutput, error) {
panic("unimplemented")
}
// DeleteAssociationRequest implements ssmiface.SSMAPI.
// Subtle: this method shadows the method (SSMAPI).DeleteAssociationRequest of mockedSSM.SSMAPI.
func (m *mockedSSM) DeleteAssociationRequest(*ssm.DeleteAssociationInput) (*request.Request, *ssm.DeleteAssociationOutput) {
panic("unimplemented")
}
// DeleteAssociationWithContext implements ssmiface.SSMAPI.
// Subtle: this method shadows the method (SSMAPI).DeleteAssociationWithContext of mockedSSM.SSMAPI.
func (m *mockedSSM) DeleteAssociationWithContext(context.Context, *ssm.DeleteAssociationInput, ...request.Option) (*ssm.DeleteAssociationOutput, error) {
panic("unimplemented")
}
// DeleteDocument implements ssmiface.SSMAPI.
// Subtle: this method shadows the method (SSMAPI).DeleteDocument of mockedSSM.SSMAPI.
func (m *mockedSSM) DeleteDocument(*ssm.DeleteDocumentInput) (*ssm.DeleteDocumentOutput, error) {
panic("unimplemented")
}
// DeleteDocumentRequest implements ssmiface.SSMAPI.
// Subtle: this method shadows the method (SSMAPI).DeleteDocumentRequest of mockedSSM.SSMAPI.
func (m *mockedSSM) DeleteDocumentRequest(*ssm.DeleteDocumentInput) (*request.Request, *ssm.DeleteDocumentOutput) {
panic("unimplemented")
}
// DeleteDocumentWithContext implements ssmiface.SSMAPI.
// Subtle: this method shadows the method (SSMAPI).DeleteDocumentWithContext of mockedSSM.SSMAPI.
func (m *mockedSSM) DeleteDocumentWithContext(context.Context, *ssm.DeleteDocumentInput, ...request.Option) (*ssm.DeleteDocumentOutput, error) {
panic("unimplemented")
}
// DeleteInventory implements ssmiface.SSMAPI.
// Subtle: this method shadows the method (SSMAPI).DeleteInventory of mockedSSM.SSMAPI.
func (m *mockedSSM) DeleteInventory(*ssm.DeleteInventoryInput) (*ssm.DeleteInventoryOutput, error) {
panic("unimplemented")
}
// DeleteInventoryRequest implements ssmiface.SSMAPI.
// Subtle: this method shadows the method (SSMAPI).DeleteInventoryRequest of mockedSSM.SSMAPI.
func (m *mockedSSM) DeleteInventoryRequest(*ssm.DeleteInventoryInput) (*request.Request, *ssm.DeleteInventoryOutput) {
panic("unimplemented")
}
// DeleteInventoryWithContext implements ssmiface.SSMAPI.
// Subtle: this method shadows the method (SSMAPI).DeleteInventoryWithContext of mockedSSM.SSMAPI.
func (m *mockedSSM) DeleteInventoryWithContext(context.Context, *ssm.DeleteInventoryInput, ...request.Option) (*ssm.DeleteInventoryOutput, error) {
panic("unimplemented")
}
// DeleteMaintenanceWindow implements ssmiface.SSMAPI.
// Subtle: this method shadows the method (SSMAPI).DeleteMaintenanceWindow of mockedSSM.SSMAPI.
func (m *mockedSSM) DeleteMaintenanceWindow(*ssm.DeleteMaintenanceWindowInput) (*ssm.DeleteMaintenanceWindowOutput, error) {
panic("unimplemented")
}
// DeleteMaintenanceWindowRequest implements ssmiface.SSMAPI.
// Subtle: this method shadows the method (SSMAPI).DeleteMaintenanceWindowRequest of mockedSSM.SSMAPI.
func (m *mockedSSM) DeleteMaintenanceWindowRequest(*ssm.DeleteMaintenanceWindowInput) (*request.Request, *ssm.DeleteMaintenanceWindowOutput) {
panic("unimplemented")
}
// DeleteMaintenanceWindowWithContext implements ssmiface.SSMAPI.
// Subtle: this method shadows the method (SSMAPI).DeleteMaintenanceWindowWithContext of mockedSSM.SSMAPI.
func (m *mockedSSM) DeleteMaintenanceWindowWithContext(context.Context, *ssm.DeleteMaintenanceWindowInput, ...request.Option) (*ssm.DeleteMaintenanceWindowOutput, error) {
panic("unimplemented")
}
// DeleteOpsMetadata implements ssmiface.SSMAPI.
// Subtle: this method shadows the method (SSMAPI).DeleteOpsMetadata of mockedSSM.SSMAPI.
func (m *mockedSSM) DeleteOpsMetadata(*ssm.DeleteOpsMetadataInput) (*ssm.DeleteOpsMetadataOutput, error) {
panic("unimplemented")
}
// DeleteOpsMetadataRequest implements ssmiface.SSMAPI.
// Subtle: this method shadows the method (SSMAPI).DeleteOpsMetadataRequest of mockedSSM.SSMAPI.
func (m *mockedSSM) DeleteOpsMetadataRequest(*ssm.DeleteOpsMetadataInput) (*request.Request, *ssm.DeleteOpsMetadataOutput) {
panic("unimplemented")
}
// DeleteOpsMetadataWithContext implements ssmiface.SSMAPI.
// Subtle: this method shadows the method (SSMAPI).DeleteOpsMetadataWithContext of mockedSSM.SSMAPI.
func (m *mockedSSM) DeleteOpsMetadataWithContext(context.Context, *ssm.DeleteOpsMetadataInput, ...request.Option) (*ssm.DeleteOpsMetadataOutput, error) {
panic("unimplemented")
}
// DeleteParameter implements ssmiface.SSMAPI.
// Subtle: this method shadows the method (SSMAPI).DeleteParameter of mockedSSM.SSMAPI.
func (m *mockedSSM) DeleteParameter(*ssm.DeleteParameterInput) (*ssm.DeleteParameterOutput, error) {
panic("unimplemented")
}
// DeleteParameterRequest implements ssmiface.SSMAPI.
// Subtle: this method shadows the method (SSMAPI).DeleteParameterRequest of mockedSSM.SSMAPI.
func (m *mockedSSM) DeleteParameterRequest(*ssm.DeleteParameterInput) (*request.Request, *ssm.DeleteParameterOutput) {
panic("unimplemented")
}
// DeleteParameterWithContext implements ssmiface.SSMAPI.
// Subtle: this method shadows the method (SSMAPI).DeleteParameterWithContext of mockedSSM.SSMAPI.
func (m *mockedSSM) DeleteParameterWithContext(context.Context, *ssm.DeleteParameterInput, ...request.Option) (*ssm.DeleteParameterOutput, error) {
panic("unimplemented")
}
// DeleteParameters implements ssmiface.SSMAPI.
// Subtle: this method shadows the method (SSMAPI).DeleteParameters of mockedSSM.SSMAPI.
func (m *mockedSSM) DeleteParameters(*ssm.DeleteParametersInput) (*ssm.DeleteParametersOutput, error) {
panic("unimplemented")
}
// DeleteParametersRequest implements ssmiface.SSMAPI.
// Subtle: this method shadows the method (SSMAPI).DeleteParametersRequest of mockedSSM.SSMAPI.
func (m *mockedSSM) DeleteParametersRequest(*ssm.DeleteParametersInput) (*request.Request, *ssm.DeleteParametersOutput) {
panic("unimplemented")
}
// DeleteParametersWithContext implements ssmiface.SSMAPI.
// Subtle: this method shadows the method (SSMAPI).DeleteParametersWithContext of mockedSSM.SSMAPI.
func (m *mockedSSM) DeleteParametersWithContext(context.Context, *ssm.DeleteParametersInput, ...request.Option) (*ssm.DeleteParametersOutput, error) {
panic("unimplemented")
}
// DeletePatchBaseline implements ssmiface.SSMAPI.
// Subtle: this method shadows the method (SSMAPI).DeletePatchBaseline of mockedSSM.SSMAPI.
func (m *mockedSSM) DeletePatchBaseline(*ssm.DeletePatchBaselineInput) (*ssm.DeletePatchBaselineOutput, error) {
panic("unimplemented")
}
// DeletePatchBaselineRequest implements ssmiface.SSMAPI.
// Subtle: this method shadows the method (SSMAPI).DeletePatchBaselineRequest of mockedSSM.SSMAPI.
func (m *mockedSSM) DeletePatchBaselineRequest(*ssm.DeletePatchBaselineInput) (*request.Request, *ssm.DeletePatchBaselineOutput) {
panic("unimplemented")
}
// DeletePatchBaselineWithContext implements ssmiface.SSMAPI.
// Subtle: this method shadows the method (SSMAPI).DeletePatchBaselineWithContext of mockedSSM.SSMAPI.
func (m *mockedSSM) DeletePatchBaselineWithContext(context.Context, *ssm.DeletePatchBaselineInput, ...request.Option) (*ssm.DeletePatchBaselineOutput, error) {
panic("unimplemented")
}
// DeleteResourceDataSync implements ssmiface.SSMAPI.
// Subtle: this method shadows the method (SSMAPI).DeleteResourceDataSync of mockedSSM.SSMAPI.
func (m *mockedSSM) DeleteResourceDataSync(*ssm.DeleteResourceDataSyncInput) (*ssm.DeleteResourceDataSyncOutput, error) {
panic("unimplemented")
}
// DeleteResourceDataSyncRequest implements ssmiface.SSMAPI.
// Subtle: this method shadows the method (SSMAPI).DeleteResourceDataSyncRequest of mockedSSM.SSMAPI.
func (m *mockedSSM) DeleteResourceDataSyncRequest(*ssm.DeleteResourceDataSyncInput) (*request.Request, *ssm.DeleteResourceDataSyncOutput) {
panic("unimplemented")
}
// DeleteResourceDataSyncWithContext implements ssmiface.SSMAPI.
// Subtle: this method shadows the method (SSMAPI).DeleteResourceDataSyncWithContext of mockedSSM.SSMAPI.
func (m *mockedSSM) DeleteResourceDataSyncWithContext(context.Context, *ssm.DeleteResourceDataSyncInput, ...request.Option) (*ssm.DeleteResourceDataSyncOutput, error) {
panic("unimplemented")
}
// DeleteResourcePolicy implements ssmiface.SSMAPI.
func (m *mockedSSM) DeleteResourcePolicy(*ssm.DeleteResourcePolicyInput) (*ssm.DeleteResourcePolicyOutput, error) {
panic("unimplemented")
}
// DeleteResourcePolicyRequest implements ssmiface.SSMAPI.
func (m *mockedSSM) DeleteResourcePolicyRequest(*ssm.DeleteResourcePolicyInput) (*request.Request, *ssm.DeleteResourcePolicyOutput) {
panic("unimplemented")
}
// DeleteResourcePolicyWithContext implements ssmiface.SSMAPI.
func (m *mockedSSM) DeleteResourcePolicyWithContext(context.Context, *ssm.DeleteResourcePolicyInput, ...request.Option) (*ssm.DeleteResourcePolicyOutput, error) {
panic("unimplemented")
}
// DeregisterManagedInstance implements ssmiface.SSMAPI.
// Subtle: this method shadows the method (SSMAPI).DeregisterManagedInstance of mockedSSM.SSMAPI.
func (m *mockedSSM) DeregisterManagedInstance(*ssm.DeregisterManagedInstanceInput) (*ssm.DeregisterManagedInstanceOutput, error) {
panic("unimplemented")
}
// DeregisterManagedInstanceRequest implements ssmiface.SSMAPI.
// Subtle: this method shadows the method (SSMAPI).DeregisterManagedInstanceRequest of mockedSSM.SSMAPI.
func (m *mockedSSM) DeregisterManagedInstanceRequest(*ssm.DeregisterManagedInstanceInput) (*request.Request, *ssm.DeregisterManagedInstanceOutput) {
panic("unimplemented")
}
// DeregisterManagedInstanceWithContext implements ssmiface.SSMAPI.
// Subtle: this method shadows the method (SSMAPI).DeregisterManagedInstanceWithContext of mockedSSM.SSMAPI.
func (m *mockedSSM) DeregisterManagedInstanceWithContext(context.Context, *ssm.DeregisterManagedInstanceInput, ...request.Option) (*ssm.DeregisterManagedInstanceOutput, error) {
panic("unimplemented")
}
// DeregisterPatchBaselineForPatchGroup implements ssmiface.SSMAPI.
// Subtle: this method shadows the method (SSMAPI).DeregisterPatchBaselineForPatchGroup of mockedSSM.SSMAPI.
func (m *mockedSSM) DeregisterPatchBaselineForPatchGroup(*ssm.DeregisterPatchBaselineForPatchGroupInput) (*ssm.DeregisterPatchBaselineForPatchGroupOutput, error) {
panic("unimplemented")
}
// DeregisterPatchBaselineForPatchGroupRequest implements ssmiface.SSMAPI.
// Subtle: this method shadows the method (SSMAPI).DeregisterPatchBaselineForPatchGroupRequest of mockedSSM.SSMAPI.
func (m *mockedSSM) DeregisterPatchBaselineForPatchGroupRequest(*ssm.DeregisterPatchBaselineForPatchGroupInput) (*request.Request, *ssm.DeregisterPatchBaselineForPatchGroupOutput) {
panic("unimplemented")
}
// DeregisterPatchBaselineForPatchGroupWithContext implements ssmiface.SSMAPI.
// Subtle: this method shadows the method (SSMAPI).DeregisterPatchBaselineForPatchGroupWithContext of mockedSSM.SSMAPI.
func (m *mockedSSM) DeregisterPatchBaselineForPatchGroupWithContext(context.Context, *ssm.DeregisterPatchBaselineForPatchGroupInput, ...request.Option) (*ssm.DeregisterPatchBaselineForPatchGroupOutput, error) {
panic("unimplemented")
}
// DeregisterTargetFromMaintenanceWindow implements ssmiface.SSMAPI.
// Subtle: this method shadows the method (SSMAPI).DeregisterTargetFromMaintenanceWindow of mockedSSM.SSMAPI.
func (m *mockedSSM) DeregisterTargetFromMaintenanceWindow(*ssm.DeregisterTargetFromMaintenanceWindowInput) (*ssm.DeregisterTargetFromMaintenanceWindowOutput, error) {
panic("unimplemented")
}
// DeregisterTargetFromMaintenanceWindowRequest implements ssmiface.SSMAPI.
// Subtle: this method shadows the method (SSMAPI).DeregisterTargetFromMaintenanceWindowRequest of mockedSSM.SSMAPI.
func (m *mockedSSM) DeregisterTargetFromMaintenanceWindowRequest(*ssm.DeregisterTargetFromMaintenanceWindowInput) (*request.Request, *ssm.DeregisterTargetFromMaintenanceWindowOutput) {
panic("unimplemented")
}
// DeregisterTargetFromMaintenanceWindowWithContext implements ssmiface.SSMAPI.
// Subtle: this method shadows the method (SSMAPI).DeregisterTargetFromMaintenanceWindowWithContext of mockedSSM.SSMAPI.
func (m *mockedSSM) DeregisterTargetFromMaintenanceWindowWithContext(context.Context, *ssm.DeregisterTargetFromMaintenanceWindowInput, ...request.Option) (*ssm.DeregisterTargetFromMaintenanceWindowOutput, error) {
panic("unimplemented")
}
// DeregisterTaskFromMaintenanceWindow implements ssmiface.SSMAPI.
// Subtle: this method shadows the method (SSMAPI).DeregisterTaskFromMaintenanceWindow of mockedSSM.SSMAPI.
func (m *mockedSSM) DeregisterTaskFromMaintenanceWindow(*ssm.DeregisterTaskFromMaintenanceWindowInput) (*ssm.DeregisterTaskFromMaintenanceWindowOutput, error) {
panic("unimplemented")
}
// DeregisterTaskFromMaintenanceWindowRequest implements ssmiface.SSMAPI.
// Subtle: this method shadows the method (SSMAPI).DeregisterTaskFromMaintenanceWindowRequest of mockedSSM.SSMAPI.
func (m *mockedSSM) DeregisterTaskFromMaintenanceWindowRequest(*ssm.DeregisterTaskFromMaintenanceWindowInput) (*request.Request, *ssm.DeregisterTaskFromMaintenanceWindowOutput) {
panic("unimplemented")
}
// DeregisterTaskFromMaintenanceWindowWithContext implements ssmiface.SSMAPI.
// Subtle: this method shadows the method (SSMAPI).DeregisterTaskFromMaintenanceWindowWithContext of mockedSSM.SSMAPI.
func (m *mockedSSM) DeregisterTaskFromMaintenanceWindowWithContext(context.Context, *ssm.DeregisterTaskFromMaintenanceWindowInput, ...request.Option) (*ssm.DeregisterTaskFromMaintenanceWindowOutput, error) {
panic("unimplemented")
}
// DescribeActivations implements ssmiface.SSMAPI.
// Subtle: this method shadows the method (SSMAPI).DescribeActivations of mockedSSM.SSMAPI.
func (m *mockedSSM) DescribeActivations(*ssm.DescribeActivationsInput) (*ssm.DescribeActivationsOutput, error) {
panic("unimplemented")
}
// DescribeActivationsPages implements ssmiface.SSMAPI.
// Subtle: this method shadows the method (SSMAPI).DescribeActivationsPages of mockedSSM.SSMAPI.
func (m *mockedSSM) DescribeActivationsPages(*ssm.DescribeActivationsInput, func(*ssm.DescribeActivationsOutput, bool) bool) error {
panic("unimplemented")
}
// DescribeActivationsPagesWithContext implements ssmiface.SSMAPI.
// Subtle: this method shadows the method (SSMAPI).DescribeActivationsPagesWithContext of mockedSSM.SSMAPI.
func (m *mockedSSM) DescribeActivationsPagesWithContext(context.Context, *ssm.DescribeActivationsInput, func(*ssm.DescribeActivationsOutput, bool) bool, ...request.Option) error {
panic("unimplemented")
}
// DescribeActivationsRequest implements ssmiface.SSMAPI.
// Subtle: this method shadows the method (SSMAPI).DescribeActivationsRequest of mockedSSM.SSMAPI.
func (m *mockedSSM) DescribeActivationsRequest(*ssm.DescribeActivationsInput) (*request.Request, *ssm.DescribeActivationsOutput) {
panic("unimplemented")
}
// DescribeActivationsWithContext implements ssmiface.SSMAPI.
// Subtle: this method shadows the method (SSMAPI).DescribeActivationsWithContext of mockedSSM.SSMAPI.
func (m *mockedSSM) DescribeActivationsWithContext(context.Context, *ssm.DescribeActivationsInput, ...request.Option) (*ssm.DescribeActivationsOutput, error) {
panic("unimplemented")
}
// DescribeAssociation implements ssmiface.SSMAPI.
// Subtle: this method shadows the method (SSMAPI).DescribeAssociation of mockedSSM.SSMAPI.
func (m *mockedSSM) DescribeAssociation(*ssm.DescribeAssociationInput) (*ssm.DescribeAssociationOutput, error) {
panic("unimplemented")
}
// DescribeAssociationExecutionTargets implements ssmiface.SSMAPI.
// Subtle: this method shadows the method (SSMAPI).DescribeAssociationExecutionTargets of mockedSSM.SSMAPI.
func (m *mockedSSM) DescribeAssociationExecutionTargets(*ssm.DescribeAssociationExecutionTargetsInput) (*ssm.DescribeAssociationExecutionTargetsOutput, error) {
panic("unimplemented")
}
// DescribeAssociationExecutionTargetsPages implements ssmiface.SSMAPI.
// Subtle: this method shadows the method (SSMAPI).DescribeAssociationExecutionTargetsPages of mockedSSM.SSMAPI.
func (m *mockedSSM) DescribeAssociationExecutionTargetsPages(*ssm.DescribeAssociationExecutionTargetsInput, func(*ssm.DescribeAssociationExecutionTargetsOutput, bool) bool) error {
panic("unimplemented")
}
// DescribeAssociationExecutionTargetsPagesWithContext implements ssmiface.SSMAPI.
// Subtle: this method shadows the method (SSMAPI).DescribeAssociationExecutionTargetsPagesWithContext of mockedSSM.SSMAPI.
func (m *mockedSSM) DescribeAssociationExecutionTargetsPagesWithContext(context.Context, *ssm.DescribeAssociationExecutionTargetsInput, func(*ssm.DescribeAssociationExecutionTargetsOutput, bool) bool, ...request.Option) error {
panic("unimplemented")
}
// DescribeAssociationExecutionTargetsRequest implements ssmiface.SSMAPI.
// Subtle: this method shadows the method (SSMAPI).DescribeAssociationExecutionTargetsRequest of mockedSSM.SSMAPI.
func (m *mockedSSM) DescribeAssociationExecutionTargetsRequest(*ssm.DescribeAssociationExecutionTargetsInput) (*request.Request, *ssm.DescribeAssociationExecutionTargetsOutput) {
panic("unimplemented")
}
// DescribeAssociationExecutionTargetsWithContext implements ssmiface.SSMAPI.
// Subtle: this method shadows the method (SSMAPI).DescribeAssociationExecutionTargetsWithContext of mockedSSM.SSMAPI.
func (m *mockedSSM) DescribeAssociationExecutionTargetsWithContext(context.Context, *ssm.DescribeAssociationExecutionTargetsInput, ...request.Option) (*ssm.DescribeAssociationExecutionTargetsOutput, error) {
panic("unimplemented")
}
// DescribeAssociationExecutions implements ssmiface.SSMAPI.
// Subtle: this method shadows the method (SSMAPI).DescribeAssociationExecutions of mockedSSM.SSMAPI.
func (m *mockedSSM) DescribeAssociationExecutions(*ssm.DescribeAssociationExecutionsInput) (*ssm.DescribeAssociationExecutionsOutput, error) {
panic("unimplemented")
}
// DescribeAssociationExecutionsPages implements ssmiface.SSMAPI.
// Subtle: this method shadows the method (SSMAPI).DescribeAssociationExecutionsPages of mockedSSM.SSMAPI.
func (m *mockedSSM) DescribeAssociationExecutionsPages(*ssm.DescribeAssociationExecutionsInput, func(*ssm.DescribeAssociationExecutionsOutput, bool) bool) error {
panic("unimplemented")
}
// DescribeAssociationExecutionsPagesWithContext implements ssmiface.SSMAPI.
// Subtle: this method shadows the method (SSMAPI).DescribeAssociationExecutionsPagesWithContext of mockedSSM.SSMAPI.
func (m *mockedSSM) DescribeAssociationExecutionsPagesWithContext(context.Context, *ssm.DescribeAssociationExecutionsInput, func(*ssm.DescribeAssociationExecutionsOutput, bool) bool, ...request.Option) error {
panic("unimplemented")
}
// DescribeAssociationExecutionsRequest implements ssmiface.SSMAPI.
// Subtle: this method shadows the method (SSMAPI).DescribeAssociationExecutionsRequest of mockedSSM.SSMAPI.
func (m *mockedSSM) DescribeAssociationExecutionsRequest(*ssm.DescribeAssociationExecutionsInput) (*request.Request, *ssm.DescribeAssociationExecutionsOutput) {
panic("unimplemented")
}
// DescribeAssociationExecutionsWithContext implements ssmiface.SSMAPI.
// Subtle: this method shadows the method (SSMAPI).DescribeAssociationExecutionsWithContext of mockedSSM.SSMAPI.
func (m *mockedSSM) DescribeAssociationExecutionsWithContext(context.Context, *ssm.DescribeAssociationExecutionsInput, ...request.Option) (*ssm.DescribeAssociationExecutionsOutput, error) {
panic("unimplemented")
}
// DescribeAssociationRequest implements ssmiface.SSMAPI.
// Subtle: this method shadows the method (SSMAPI).DescribeAssociationRequest of mockedSSM.SSMAPI.
func (m *mockedSSM) DescribeAssociationRequest(*ssm.DescribeAssociationInput) (*request.Request, *ssm.DescribeAssociationOutput) {
panic("unimplemented")
}
// DescribeAssociationWithContext implements ssmiface.SSMAPI.
// Subtle: this method shadows the method (SSMAPI).DescribeAssociationWithContext of mockedSSM.SSMAPI.
func (m *mockedSSM) DescribeAssociationWithContext(context.Context, *ssm.DescribeAssociationInput, ...request.Option) (*ssm.DescribeAssociationOutput, error) {
panic("unimplemented")
}
// DescribeAutomationExecutions implements ssmiface.SSMAPI.
// Subtle: this method shadows the method (SSMAPI).DescribeAutomationExecutions of mockedSSM.SSMAPI.
func (m *mockedSSM) DescribeAutomationExecutions(*ssm.DescribeAutomationExecutionsInput) (*ssm.DescribeAutomationExecutionsOutput, error) {
panic("unimplemented")
}
// DescribeAutomationExecutionsPages implements ssmiface.SSMAPI.
// Subtle: this method shadows the method (SSMAPI).DescribeAutomationExecutionsPages of mockedSSM.SSMAPI.
func (m *mockedSSM) DescribeAutomationExecutionsPages(*ssm.DescribeAutomationExecutionsInput, func(*ssm.DescribeAutomationExecutionsOutput, bool) bool) error {
panic("unimplemented")
}
// DescribeAutomationExecutionsPagesWithContext implements ssmiface.SSMAPI.
// Subtle: this method shadows the method (SSMAPI).DescribeAutomationExecutionsPagesWithContext of mockedSSM.SSMAPI.
func (m *mockedSSM) DescribeAutomationExecutionsPagesWithContext(context.Context, *ssm.DescribeAutomationExecutionsInput, func(*ssm.DescribeAutomationExecutionsOutput, bool) bool, ...request.Option) error {
panic("unimplemented")
}
// DescribeAutomationExecutionsRequest implements ssmiface.SSMAPI.
// Subtle: this method shadows the method (SSMAPI).DescribeAutomationExecutionsRequest of mockedSSM.SSMAPI.
func (m *mockedSSM) DescribeAutomationExecutionsRequest(*ssm.DescribeAutomationExecutionsInput) (*request.Request, *ssm.DescribeAutomationExecutionsOutput) {
panic("unimplemented")
}
// DescribeAutomationExecutionsWithContext implements ssmiface.SSMAPI.
// Subtle: this method shadows the method (SSMAPI).DescribeAutomationExecutionsWithContext of mockedSSM.SSMAPI.
func (m *mockedSSM) DescribeAutomationExecutionsWithContext(context.Context, *ssm.DescribeAutomationExecutionsInput, ...request.Option) (*ssm.DescribeAutomationExecutionsOutput, error) {
panic("unimplemented")
}
// DescribeAutomationStepExecutions implements ssmiface.SSMAPI.
// Subtle: this method shadows the method (SSMAPI).DescribeAutomationStepExecutions of mockedSSM.SSMAPI.
func (m *mockedSSM) DescribeAutomationStepExecutions(*ssm.DescribeAutomationStepExecutionsInput) (*ssm.DescribeAutomationStepExecutionsOutput, error) {
panic("unimplemented")
}
// DescribeAutomationStepExecutionsPages implements ssmiface.SSMAPI.
// Subtle: this method shadows the method (SSMAPI).DescribeAutomationStepExecutionsPages of mockedSSM.SSMAPI.
func (m *mockedSSM) DescribeAutomationStepExecutionsPages(*ssm.DescribeAutomationStepExecutionsInput, func(*ssm.DescribeAutomationStepExecutionsOutput, bool) bool) error {
panic("unimplemented")
}
// DescribeAutomationStepExecutionsPagesWithContext implements ssmiface.SSMAPI.
// Subtle: this method shadows the method (SSMAPI).DescribeAutomationStepExecutionsPagesWithContext of mockedSSM.SSMAPI.
func (m *mockedSSM) DescribeAutomationStepExecutionsPagesWithContext(context.Context, *ssm.DescribeAutomationStepExecutionsInput, func(*ssm.DescribeAutomationStepExecutionsOutput, bool) bool, ...request.Option) error {
panic("unimplemented")
}
// DescribeAutomationStepExecutionsRequest implements ssmiface.SSMAPI.
// Subtle: this method shadows the method (SSMAPI).DescribeAutomationStepExecutionsRequest of mockedSSM.SSMAPI.
func (m *mockedSSM) DescribeAutomationStepExecutionsRequest(*ssm.DescribeAutomationStepExecutionsInput) (*request.Request, *ssm.DescribeAutomationStepExecutionsOutput) {
panic("unimplemented")
}
// DescribeAutomationStepExecutionsWithContext implements ssmiface.SSMAPI.
// Subtle: this method shadows the method (SSMAPI).DescribeAutomationStepExecutionsWithContext of mockedSSM.SSMAPI.
func (m *mockedSSM) DescribeAutomationStepExecutionsWithContext(context.Context, *ssm.DescribeAutomationStepExecutionsInput, ...request.Option) (*ssm.DescribeAutomationStepExecutionsOutput, error) {
panic("unimplemented")
}
// DescribeAvailablePatches implements ssmiface.SSMAPI.
// Subtle: this method shadows the method (SSMAPI).DescribeAvailablePatches of mockedSSM.SSMAPI.
func (m *mockedSSM) DescribeAvailablePatches(*ssm.DescribeAvailablePatchesInput) (*ssm.DescribeAvailablePatchesOutput, error) {
panic("unimplemented")
}
// DescribeAvailablePatchesPages implements ssmiface.SSMAPI.
// Subtle: this method shadows the method (SSMAPI).DescribeAvailablePatchesPages of mockedSSM.SSMAPI.
func (m *mockedSSM) DescribeAvailablePatchesPages(*ssm.DescribeAvailablePatchesInput, func(*ssm.DescribeAvailablePatchesOutput, bool) bool) error {
panic("unimplemented")
}
// DescribeAvailablePatchesPagesWithContext implements ssmiface.SSMAPI.
// Subtle: this method shadows the method (SSMAPI).DescribeAvailablePatchesPagesWithContext of mockedSSM.SSMAPI.
func (m *mockedSSM) DescribeAvailablePatchesPagesWithContext(context.Context, *ssm.DescribeAvailablePatchesInput, func(*ssm.DescribeAvailablePatchesOutput, bool) bool, ...request.Option) error {
panic("unimplemented")
}
// DescribeAvailablePatchesRequest implements ssmiface.SSMAPI.
// Subtle: this method shadows the method (SSMAPI).DescribeAvailablePatchesRequest of mockedSSM.SSMAPI.
func (m *mockedSSM) DescribeAvailablePatchesRequest(*ssm.DescribeAvailablePatchesInput) (*request.Request, *ssm.DescribeAvailablePatchesOutput) {
panic("unimplemented")
}
// DescribeAvailablePatchesWithContext implements ssmiface.SSMAPI.
// Subtle: this method shadows the method (SSMAPI).DescribeAvailablePatchesWithContext of mockedSSM.SSMAPI.
func (m *mockedSSM) DescribeAvailablePatchesWithContext(context.Context, *ssm.DescribeAvailablePatchesInput, ...request.Option) (*ssm.DescribeAvailablePatchesOutput, error) {
panic("unimplemented")
}
// DescribeDocument implements ssmiface.SSMAPI.
// Subtle: this method shadows the method (SSMAPI).DescribeDocument of mockedSSM.SSMAPI.
func (m *mockedSSM) DescribeDocument(*ssm.DescribeDocumentInput) (*ssm.DescribeDocumentOutput, error) {
panic("unimplemented")
}
// DescribeDocumentPermission implements ssmiface.SSMAPI.
// Subtle: this method shadows the method (SSMAPI).DescribeDocumentPermission of mockedSSM.SSMAPI.
func (m *mockedSSM) DescribeDocumentPermission(*ssm.DescribeDocumentPermissionInput) (*ssm.DescribeDocumentPermissionOutput, error) {
panic("unimplemented")
}
// DescribeDocumentPermissionRequest implements ssmiface.SSMAPI.
// Subtle: this method shadows the method (SSMAPI).DescribeDocumentPermissionRequest of mockedSSM.SSMAPI.
func (m *mockedSSM) DescribeDocumentPermissionRequest(*ssm.DescribeDocumentPermissionInput) (*request.Request, *ssm.DescribeDocumentPermissionOutput) {
panic("unimplemented")
}
// DescribeDocumentPermissionWithContext implements ssmiface.SSMAPI.
// Subtle: this method shadows the method (SSMAPI).DescribeDocumentPermissionWithContext of mockedSSM.SSMAPI.
func (m *mockedSSM) DescribeDocumentPermissionWithContext(context.Context, *ssm.DescribeDocumentPermissionInput, ...request.Option) (*ssm.DescribeDocumentPermissionOutput, error) {
panic("unimplemented")
}
// DescribeDocumentRequest implements ssmiface.SSMAPI.
// Subtle: this method shadows the method (SSMAPI).DescribeDocumentRequest of mockedSSM.SSMAPI.
func (m *mockedSSM) DescribeDocumentRequest(*ssm.DescribeDocumentInput) (*request.Request, *ssm.DescribeDocumentOutput) {
panic("unimplemented")
}
// DescribeDocumentWithContext implements ssmiface.SSMAPI.
// Subtle: this method shadows the method (SSMAPI).DescribeDocumentWithContext of mockedSSM.SSMAPI.
func (m *mockedSSM) DescribeDocumentWithContext(context.Context, *ssm.DescribeDocumentInput, ...request.Option) (*ssm.DescribeDocumentOutput, error) {
panic("unimplemented")
}
// DescribeEffectiveInstanceAssociations implements ssmiface.SSMAPI.
// Subtle: this method shadows the method (SSMAPI).DescribeEffectiveInstanceAssociations of mockedSSM.SSMAPI.
func (m *mockedSSM) DescribeEffectiveInstanceAssociations(*ssm.DescribeEffectiveInstanceAssociationsInput) (*ssm.DescribeEffectiveInstanceAssociationsOutput, error) {
panic("unimplemented")
}
// DescribeEffectiveInstanceAssociationsPages implements ssmiface.SSMAPI.
// Subtle: this method shadows the method (SSMAPI).DescribeEffectiveInstanceAssociationsPages of mockedSSM.SSMAPI.
func (m *mockedSSM) DescribeEffectiveInstanceAssociationsPages(*ssm.DescribeEffectiveInstanceAssociationsInput, func(*ssm.DescribeEffectiveInstanceAssociationsOutput, bool) bool) error {
panic("unimplemented")
}
// DescribeEffectiveInstanceAssociationsPagesWithContext implements ssmiface.SSMAPI.
// Subtle: this method shadows the method (SSMAPI).DescribeEffectiveInstanceAssociationsPagesWithContext of mockedSSM.SSMAPI.
func (m *mockedSSM) DescribeEffectiveInstanceAssociationsPagesWithContext(context.Context, *ssm.DescribeEffectiveInstanceAssociationsInput, func(*ssm.DescribeEffectiveInstanceAssociationsOutput, bool) bool, ...request.Option) error {
panic("unimplemented")
}
// DescribeEffectiveInstanceAssociationsRequest implements ssmiface.SSMAPI.
// Subtle: this method shadows the method (SSMAPI).DescribeEffectiveInstanceAssociationsRequest of mockedSSM.SSMAPI.
func (m *mockedSSM) DescribeEffectiveInstanceAssociationsRequest(*ssm.DescribeEffectiveInstanceAssociationsInput) (*request.Request, *ssm.DescribeEffectiveInstanceAssociationsOutput) {
panic("unimplemented")
}
// DescribeEffectiveInstanceAssociationsWithContext implements ssmiface.SSMAPI.
// Subtle: this method shadows the method (SSMAPI).DescribeEffectiveInstanceAssociationsWithContext of mockedSSM.SSMAPI.
func (m *mockedSSM) DescribeEffectiveInstanceAssociationsWithContext(context.Context, *ssm.DescribeEffectiveInstanceAssociationsInput, ...request.Option) (*ssm.DescribeEffectiveInstanceAssociationsOutput, error) {
panic("unimplemented")
}
// DescribeEffectivePatchesForPatchBaseline implements ssmiface.SSMAPI.
// Subtle: this method shadows the method (SSMAPI).DescribeEffectivePatchesForPatchBaseline of mockedSSM.SSMAPI.
func (m *mockedSSM) DescribeEffectivePatchesForPatchBaseline(*ssm.DescribeEffectivePatchesForPatchBaselineInput) (*ssm.DescribeEffectivePatchesForPatchBaselineOutput, error) {
panic("unimplemented")
}
// DescribeEffectivePatchesForPatchBaselinePages implements ssmiface.SSMAPI.
// Subtle: this method shadows the method (SSMAPI).DescribeEffectivePatchesForPatchBaselinePages of mockedSSM.SSMAPI.
func (m *mockedSSM) DescribeEffectivePatchesForPatchBaselinePages(*ssm.DescribeEffectivePatchesForPatchBaselineInput, func(*ssm.DescribeEffectivePatchesForPatchBaselineOutput, bool) bool) error {
panic("unimplemented")
}
// DescribeEffectivePatchesForPatchBaselinePagesWithContext implements ssmiface.SSMAPI.
// Subtle: this method shadows the method (SSMAPI).DescribeEffectivePatchesForPatchBaselinePagesWithContext of mockedSSM.SSMAPI.
func (m *mockedSSM) DescribeEffectivePatchesForPatchBaselinePagesWithContext(context.Context, *ssm.DescribeEffectivePatchesForPatchBaselineInput, func(*ssm.DescribeEffectivePatchesForPatchBaselineOutput, bool) bool, ...request.Option) error {
panic("unimplemented")
}
// DescribeEffectivePatchesForPatchBaselineRequest implements ssmiface.SSMAPI.
// Subtle: this method shadows the method (SSMAPI).DescribeEffectivePatchesForPatchBaselineRequest of mockedSSM.SSMAPI.
func (m *mockedSSM) DescribeEffectivePatchesForPatchBaselineRequest(*ssm.DescribeEffectivePatchesForPatchBaselineInput) (*request.Request, *ssm.DescribeEffectivePatchesForPatchBaselineOutput) {
panic("unimplemented")
}
// DescribeEffectivePatchesForPatchBaselineWithContext implements ssmiface.SSMAPI.
// Subtle: this method shadows the method (SSMAPI).DescribeEffectivePatchesForPatchBaselineWithContext of mockedSSM.SSMAPI.
func (m *mockedSSM) DescribeEffectivePatchesForPatchBaselineWithContext(context.Context, *ssm.DescribeEffectivePatchesForPatchBaselineInput, ...request.Option) (*ssm.DescribeEffectivePatchesForPatchBaselineOutput, error) {
panic("unimplemented")
}
// DescribeInstanceAssociationsStatus implements ssmiface.SSMAPI.
// Subtle: this method shadows the method (SSMAPI).DescribeInstanceAssociationsStatus of mockedSSM.SSMAPI.
func (m *mockedSSM) DescribeInstanceAssociationsStatus(*ssm.DescribeInstanceAssociationsStatusInput) (*ssm.DescribeInstanceAssociationsStatusOutput, error) {
panic("unimplemented")
}
// DescribeInstanceAssociationsStatusPages implements ssmiface.SSMAPI.
// Subtle: this method shadows the method (SSMAPI).DescribeInstanceAssociationsStatusPages of mockedSSM.SSMAPI.
func (m *mockedSSM) DescribeInstanceAssociationsStatusPages(*ssm.DescribeInstanceAssociationsStatusInput, func(*ssm.DescribeInstanceAssociationsStatusOutput, bool) bool) error {
panic("unimplemented")
}
// DescribeInstanceAssociationsStatusPagesWithContext implements ssmiface.SSMAPI.
// Subtle: this method shadows the method (SSMAPI).DescribeInstanceAssociationsStatusPagesWithContext of mockedSSM.SSMAPI.
func (m *mockedSSM) DescribeInstanceAssociationsStatusPagesWithContext(context.Context, *ssm.DescribeInstanceAssociationsStatusInput, func(*ssm.DescribeInstanceAssociationsStatusOutput, bool) bool, ...request.Option) error {
panic("unimplemented")
}
// DescribeInstanceAssociationsStatusRequest implements ssmiface.SSMAPI.
// Subtle: this method shadows the method (SSMAPI).DescribeInstanceAssociationsStatusRequest of mockedSSM.SSMAPI.
func (m *mockedSSM) DescribeInstanceAssociationsStatusRequest(*ssm.DescribeInstanceAssociationsStatusInput) (*request.Request, *ssm.DescribeInstanceAssociationsStatusOutput) {
panic("unimplemented")
}
// DescribeInstanceAssociationsStatusWithContext implements ssmiface.SSMAPI.
// Subtle: this method shadows the method (SSMAPI).DescribeInstanceAssociationsStatusWithContext of mockedSSM.SSMAPI.
func (m *mockedSSM) DescribeInstanceAssociationsStatusWithContext(context.Context, *ssm.DescribeInstanceAssociationsStatusInput, ...request.Option) (*ssm.DescribeInstanceAssociationsStatusOutput, error) {
panic("unimplemented")
}
// DescribeInstanceInformation implements ssmiface.SSMAPI.
// Subtle: this method shadows the method (SSMAPI).DescribeInstanceInformation of mockedSSM.SSMAPI.
func (m *mockedSSM) DescribeInstanceInformation(*ssm.DescribeInstanceInformationInput) (*ssm.DescribeInstanceInformationOutput, error) {
panic("unimplemented")
}
// DescribeInstanceInformationPages implements ssmiface.SSMAPI.
// Subtle: this method shadows the method (SSMAPI).DescribeInstanceInformationPages of mockedSSM.SSMAPI.
func (m *mockedSSM) DescribeInstanceInformationPages(*ssm.DescribeInstanceInformationInput, func(*ssm.DescribeInstanceInformationOutput, bool) bool) error {
panic("unimplemented")
}
// DescribeInstanceInformationPagesWithContext implements ssmiface.SSMAPI.
// Subtle: this method shadows the method (SSMAPI).DescribeInstanceInformationPagesWithContext of mockedSSM.SSMAPI.
func (m *mockedSSM) DescribeInstanceInformationPagesWithContext(context.Context, *ssm.DescribeInstanceInformationInput, func(*ssm.DescribeInstanceInformationOutput, bool) bool, ...request.Option) error {
panic("unimplemented")
}
// DescribeInstanceInformationRequest implements ssmiface.SSMAPI.
// Subtle: this method shadows the method (SSMAPI).DescribeInstanceInformationRequest of mockedSSM.SSMAPI.
func (m *mockedSSM) DescribeInstanceInformationRequest(*ssm.DescribeInstanceInformationInput) (*request.Request, *ssm.DescribeInstanceInformationOutput) {
panic("unimplemented")
}
// DescribeInstanceInformationWithContext implements ssmiface.SSMAPI.
// Subtle: this method shadows the method (SSMAPI).DescribeInstanceInformationWithContext of mockedSSM.SSMAPI.
func (m *mockedSSM) DescribeInstanceInformationWithContext(context.Context, *ssm.DescribeInstanceInformationInput, ...request.Option) (*ssm.DescribeInstanceInformationOutput, error) {
panic("unimplemented")
}
// DescribeInstancePatchStates implements ssmiface.SSMAPI.
// Subtle: this method shadows the method (SSMAPI).DescribeInstancePatchStates of mockedSSM.SSMAPI.
func (m *mockedSSM) DescribeInstancePatchStates(*ssm.DescribeInstancePatchStatesInput) (*ssm.DescribeInstancePatchStatesOutput, error) {
panic("unimplemented")
}
// DescribeInstancePatchStatesForPatchGroup implements ssmiface.SSMAPI.
// Subtle: this method shadows the method (SSMAPI).DescribeInstancePatchStatesForPatchGroup of mockedSSM.SSMAPI.
func (m *mockedSSM) DescribeInstancePatchStatesForPatchGroup(*ssm.DescribeInstancePatchStatesForPatchGroupInput) (*ssm.DescribeInstancePatchStatesForPatchGroupOutput, error) {
panic("unimplemented")
}
// DescribeInstancePatchStatesForPatchGroupPages implements ssmiface.SSMAPI.
// Subtle: this method shadows the method (SSMAPI).DescribeInstancePatchStatesForPatchGroupPages of mockedSSM.SSMAPI.
func (m *mockedSSM) DescribeInstancePatchStatesForPatchGroupPages(*ssm.DescribeInstancePatchStatesForPatchGroupInput, func(*ssm.DescribeInstancePatchStatesForPatchGroupOutput, bool) bool) error {
panic("unimplemented")
}
// DescribeInstancePatchStatesForPatchGroupPagesWithContext implements ssmiface.SSMAPI.
// Subtle: this method shadows the method (SSMAPI).DescribeInstancePatchStatesForPatchGroupPagesWithContext of mockedSSM.SSMAPI.
func (m *mockedSSM) DescribeInstancePatchStatesForPatchGroupPagesWithContext(context.Context, *ssm.DescribeInstancePatchStatesForPatchGroupInput, func(*ssm.DescribeInstancePatchStatesForPatchGroupOutput, bool) bool, ...request.Option) error {
panic("unimplemented")
}
// DescribeInstancePatchStatesForPatchGroupRequest implements ssmiface.SSMAPI.
// Subtle: this method shadows the method (SSMAPI).DescribeInstancePatchStatesForPatchGroupRequest of mockedSSM.SSMAPI.
func (m *mockedSSM) DescribeInstancePatchStatesForPatchGroupRequest(*ssm.DescribeInstancePatchStatesForPatchGroupInput) (*request.Request, *ssm.DescribeInstancePatchStatesForPatchGroupOutput) {
panic("unimplemented")
}
// DescribeInstancePatchStatesForPatchGroupWithContext implements ssmiface.SSMAPI.
// Subtle: this method shadows the method (SSMAPI).DescribeInstancePatchStatesForPatchGroupWithContext of mockedSSM.SSMAPI.
func (m *mockedSSM) DescribeInstancePatchStatesForPatchGroupWithContext(context.Context, *ssm.DescribeInstancePatchStatesForPatchGroupInput, ...request.Option) (*ssm.DescribeInstancePatchStatesForPatchGroupOutput, error) {
panic("unimplemented")
}
// DescribeInstancePatchStatesPages implements ssmiface.SSMAPI.
// Subtle: this method shadows the method (SSMAPI).DescribeInstancePatchStatesPages of mockedSSM.SSMAPI.
func (m *mockedSSM) DescribeInstancePatchStatesPages(*ssm.DescribeInstancePatchStatesInput, func(*ssm.DescribeInstancePatchStatesOutput, bool) bool) error {
panic("unimplemented")
}
// DescribeInstancePatchStatesPagesWithContext implements ssmiface.SSMAPI.
// Subtle: this method shadows the method (SSMAPI).DescribeInstancePatchStatesPagesWithContext of mockedSSM.SSMAPI.
func (m *mockedSSM) DescribeInstancePatchStatesPagesWithContext(context.Context, *ssm.DescribeInstancePatchStatesInput, func(*ssm.DescribeInstancePatchStatesOutput, bool) bool, ...request.Option) error {
panic("unimplemented")
}
// DescribeInstancePatchStatesRequest implements ssmiface.SSMAPI.
// Subtle: this method shadows the method (SSMAPI).DescribeInstancePatchStatesRequest of mockedSSM.SSMAPI.
func (m *mockedSSM) DescribeInstancePatchStatesRequest(*ssm.DescribeInstancePatchStatesInput) (*request.Request, *ssm.DescribeInstancePatchStatesOutput) {
panic("unimplemented")
}
// DescribeInstancePatchStatesWithContext implements ssmiface.SSMAPI.
// Subtle: this method shadows the method (SSMAPI).DescribeInstancePatchStatesWithContext of mockedSSM.SSMAPI.
func (m *mockedSSM) DescribeInstancePatchStatesWithContext(context.Context, *ssm.DescribeInstancePatchStatesInput, ...request.Option) (*ssm.DescribeInstancePatchStatesOutput, error) {
panic("unimplemented")
}
// DescribeInstancePatches implements ssmiface.SSMAPI.
// Subtle: this method shadows the method (SSMAPI).DescribeInstancePatches of mockedSSM.SSMAPI.
func (m *mockedSSM) DescribeInstancePatches(*ssm.DescribeInstancePatchesInput) (*ssm.DescribeInstancePatchesOutput, error) {
panic("unimplemented")
}
// DescribeInstancePatchesPages implements ssmiface.SSMAPI.
// Subtle: this method shadows the method (SSMAPI).DescribeInstancePatchesPages of mockedSSM.SSMAPI.
func (m *mockedSSM) DescribeInstancePatchesPages(*ssm.DescribeInstancePatchesInput, func(*ssm.DescribeInstancePatchesOutput, bool) bool) error {
panic("unimplemented")
}
// DescribeInstancePatchesPagesWithContext implements ssmiface.SSMAPI.
// Subtle: this method shadows the method (SSMAPI).DescribeInstancePatchesPagesWithContext of mockedSSM.SSMAPI.
func (m *mockedSSM) DescribeInstancePatchesPagesWithContext(context.Context, *ssm.DescribeInstancePatchesInput, func(*ssm.DescribeInstancePatchesOutput, bool) bool, ...request.Option) error {
panic("unimplemented")
}
// DescribeInstancePatchesRequest implements ssmiface.SSMAPI.
// Subtle: this method shadows the method (SSMAPI).DescribeInstancePatchesRequest of mockedSSM.SSMAPI.
func (m *mockedSSM) DescribeInstancePatchesRequest(*ssm.DescribeInstancePatchesInput) (*request.Request, *ssm.DescribeInstancePatchesOutput) {
panic("unimplemented")
}
// DescribeInstancePatchesWithContext implements ssmiface.SSMAPI.
// Subtle: this method shadows the method (SSMAPI).DescribeInstancePatchesWithContext of mockedSSM.SSMAPI.
func (m *mockedSSM) DescribeInstancePatchesWithContext(context.Context, *ssm.DescribeInstancePatchesInput, ...request.Option) (*ssm.DescribeInstancePatchesOutput, error) {
panic("unimplemented")
}
// DescribeInventoryDeletions implements ssmiface.SSMAPI.
// Subtle: this method shadows the method (SSMAPI).DescribeInventoryDeletions of mockedSSM.SSMAPI.
func (m *mockedSSM) DescribeInventoryDeletions(*ssm.DescribeInventoryDeletionsInput) (*ssm.DescribeInventoryDeletionsOutput, error) {
panic("unimplemented")
}
// DescribeInventoryDeletionsPages implements ssmiface.SSMAPI.
// Subtle: this method shadows the method (SSMAPI).DescribeInventoryDeletionsPages of mockedSSM.SSMAPI.
func (m *mockedSSM) DescribeInventoryDeletionsPages(*ssm.DescribeInventoryDeletionsInput, func(*ssm.DescribeInventoryDeletionsOutput, bool) bool) error {
panic("unimplemented")
}
// DescribeInventoryDeletionsPagesWithContext implements ssmiface.SSMAPI.
// Subtle: this method shadows the method (SSMAPI).DescribeInventoryDeletionsPagesWithContext of mockedSSM.SSMAPI.
func (m *mockedSSM) DescribeInventoryDeletionsPagesWithContext(context.Context, *ssm.DescribeInventoryDeletionsInput, func(*ssm.DescribeInventoryDeletionsOutput, bool) bool, ...request.Option) error {
panic("unimplemented")
}
// DescribeInventoryDeletionsRequest implements ssmiface.SSMAPI.
// Subtle: this method shadows the method (SSMAPI).DescribeInventoryDeletionsRequest of mockedSSM.SSMAPI.
func (m *mockedSSM) DescribeInventoryDeletionsRequest(*ssm.DescribeInventoryDeletionsInput) (*request.Request, *ssm.DescribeInventoryDeletionsOutput) {
panic("unimplemented")
}