aboutsummaryrefslogtreecommitdiffstats
path: root/contrib/python/botocore/ya.make
blob: 9f7b34b17d7f2cbc188ffb11a02743dd8eb7ec5f (plain) (blame)
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
PY23_LIBRARY()

OWNER(g:python-contrib)

VERSION(1.20.112)

LICENSE(Apache-2.0)

PEERDIR(
    contrib/python/dateutil
    contrib/python/jmespath
    contrib/python/six
    contrib/python/urllib3
    library/python/resource
)

NO_LINT()

NO_CHECK_IMPORTS(
    botocore.crt.auth
)

PY_SRCS(
    TOP_LEVEL
    botocore/__init__.py
    botocore/args.py
    botocore/auth.py
    botocore/awsrequest.py
    botocore/client.py
    botocore/compat.py
    botocore/config.py
    botocore/configloader.py
    botocore/configprovider.py
    botocore/credentials.py
    botocore/crt/__init__.py
    botocore/crt/auth.py
    botocore/discovery.py
    botocore/docs/__init__.py
    botocore/docs/bcdoc/__init__.py
    botocore/docs/bcdoc/docstringparser.py
    botocore/docs/bcdoc/restdoc.py
    botocore/docs/bcdoc/style.py
    botocore/docs/client.py
    botocore/docs/docstring.py
    botocore/docs/example.py
    botocore/docs/method.py
    botocore/docs/paginator.py
    botocore/docs/params.py
    botocore/docs/service.py
    botocore/docs/shape.py
    botocore/docs/sharedexample.py
    botocore/docs/utils.py
    botocore/docs/waiter.py
    botocore/endpoint.py
    botocore/errorfactory.py
    botocore/eventstream.py
    botocore/exceptions.py
    botocore/handlers.py
    botocore/history.py
    botocore/hooks.py
    botocore/httpsession.py
    botocore/loaders.py
    botocore/model.py
    botocore/monitoring.py
    botocore/paginate.py
    botocore/parsers.py
    botocore/regions.py
    botocore/response.py
    botocore/retries/__init__.py
    botocore/retries/adaptive.py
    botocore/retries/base.py
    botocore/retries/bucket.py
    botocore/retries/quota.py
    botocore/retries/special.py
    botocore/retries/standard.py
    botocore/retries/throttling.py
    botocore/retryhandler.py
    botocore/serialize.py
    botocore/session.py
    botocore/signers.py
    botocore/stub.py
    botocore/translate.py
    botocore/utils.py
    botocore/validate.py
    botocore/vendored/__init__.py
    botocore/vendored/requests/__init__.py
    botocore/vendored/requests/exceptions.py
    botocore/vendored/requests/packages/__init__.py
    botocore/vendored/requests/packages/urllib3/__init__.py
    botocore/vendored/requests/packages/urllib3/exceptions.py
    botocore/waiter.py
)

RESOURCE_FILES(
    PREFIX contrib/python/botocore/
    .dist-info/METADATA
    .dist-info/top_level.txt
    botocore/cacert.pem
    botocore/data/_retry.json
    #botocore/data/accessanalyzer/2019-11-01/paginators-1.json
    #botocore/data/accessanalyzer/2019-11-01/service-2.json
    #botocore/data/acm-pca/2017-08-22/examples-1.json
    #botocore/data/acm-pca/2017-08-22/paginators-1.json
    #botocore/data/acm-pca/2017-08-22/service-2.json
    #botocore/data/acm-pca/2017-08-22/waiters-2.json
    #botocore/data/acm/2015-12-08/examples-1.json
    #botocore/data/acm/2015-12-08/paginators-1.json
    #botocore/data/acm/2015-12-08/service-2.json
    #botocore/data/acm/2015-12-08/waiters-2.json
    #botocore/data/alexaforbusiness/2017-11-09/examples-1.json
    #botocore/data/alexaforbusiness/2017-11-09/paginators-1.json
    #botocore/data/alexaforbusiness/2017-11-09/service-2.json
    #botocore/data/amp/2020-08-01/paginators-1.json
    #botocore/data/amp/2020-08-01/service-2.json
    #botocore/data/amplify/2017-07-25/paginators-1.json
    #botocore/data/amplify/2017-07-25/service-2.json
    #botocore/data/amplifybackend/2020-08-11/paginators-1.json
    #botocore/data/amplifybackend/2020-08-11/service-2.json
    #botocore/data/apigateway/2015-07-09/examples-1.json
    #botocore/data/apigateway/2015-07-09/paginators-1.json
    #botocore/data/apigateway/2015-07-09/service-2.json
    #botocore/data/apigatewaymanagementapi/2018-11-29/paginators-1.json
    #botocore/data/apigatewaymanagementapi/2018-11-29/service-2.json
    #botocore/data/apigatewayv2/2018-11-29/paginators-1.json
    #botocore/data/apigatewayv2/2018-11-29/service-2.json
    #botocore/data/appconfig/2019-10-09/paginators-1.json
    #botocore/data/appconfig/2019-10-09/service-2.json
    #botocore/data/appflow/2020-08-23/paginators-1.json
    #botocore/data/appflow/2020-08-23/service-2.json
    #botocore/data/appintegrations/2020-07-29/paginators-1.json
    #botocore/data/appintegrations/2020-07-29/service-2.json
    #botocore/data/application-autoscaling/2016-02-06/examples-1.json
    #botocore/data/application-autoscaling/2016-02-06/paginators-1.json
    #botocore/data/application-autoscaling/2016-02-06/service-2.json
    #botocore/data/application-insights/2018-11-25/paginators-1.json
    #botocore/data/application-insights/2018-11-25/service-2.json
    #botocore/data/applicationcostprofiler/2020-09-10/paginators-1.json
    #botocore/data/applicationcostprofiler/2020-09-10/service-2.json
    #botocore/data/appmesh/2018-10-01/paginators-1.json
    #botocore/data/appmesh/2018-10-01/service-2.json
    #botocore/data/appmesh/2019-01-25/paginators-1.json
    #botocore/data/appmesh/2019-01-25/service-2.json
    #botocore/data/apprunner/2020-05-15/paginators-1.json
    #botocore/data/apprunner/2020-05-15/service-2.json
    #botocore/data/appstream/2016-12-01/examples-1.json
    #botocore/data/appstream/2016-12-01/paginators-1.json
    #botocore/data/appstream/2016-12-01/service-2.json
    #botocore/data/appstream/2016-12-01/waiters-2.json
    #botocore/data/appsync/2017-07-25/examples-1.json
    #botocore/data/appsync/2017-07-25/paginators-1.json
    #botocore/data/appsync/2017-07-25/service-2.json
    #botocore/data/athena/2017-05-18/examples-1.json
    #botocore/data/athena/2017-05-18/paginators-1.json
    #botocore/data/athena/2017-05-18/service-2.json
    #botocore/data/auditmanager/2017-07-25/paginators-1.json
    #botocore/data/auditmanager/2017-07-25/service-2.json
    #botocore/data/autoscaling-plans/2018-01-06/examples-1.json
    #botocore/data/autoscaling-plans/2018-01-06/paginators-1.json
    #botocore/data/autoscaling-plans/2018-01-06/service-2.json
    #botocore/data/autoscaling/2011-01-01/examples-1.json
    #botocore/data/autoscaling/2011-01-01/paginators-1.json
    #botocore/data/autoscaling/2011-01-01/service-2.json
    #botocore/data/backup/2018-11-15/paginators-1.json
    #botocore/data/backup/2018-11-15/service-2.json
    #botocore/data/batch/2016-08-10/examples-1.json
    #botocore/data/batch/2016-08-10/paginators-1.json
    #botocore/data/batch/2016-08-10/service-2.json
    #botocore/data/braket/2019-09-01/paginators-1.json
    #botocore/data/braket/2019-09-01/service-2.json
    #botocore/data/budgets/2016-10-20/examples-1.json
    #botocore/data/budgets/2016-10-20/paginators-1.json
    #botocore/data/budgets/2016-10-20/service-2.json
    #botocore/data/ce/2017-10-25/examples-1.json
    #botocore/data/ce/2017-10-25/paginators-1.json
    #botocore/data/ce/2017-10-25/service-2.json
    #botocore/data/chime/2018-05-01/paginators-1.json
    #botocore/data/chime/2018-05-01/service-2.json
    #botocore/data/cloud9/2017-09-23/examples-1.json
    #botocore/data/cloud9/2017-09-23/paginators-1.json
    #botocore/data/cloud9/2017-09-23/service-2.json
    #botocore/data/clouddirectory/2016-05-10/paginators-1.json
    #botocore/data/clouddirectory/2016-05-10/service-2.json
    #botocore/data/clouddirectory/2017-01-11/examples-1.json
    #botocore/data/clouddirectory/2017-01-11/paginators-1.json
    #botocore/data/clouddirectory/2017-01-11/service-2.json
    #botocore/data/cloudformation/2010-05-15/examples-1.json
    #botocore/data/cloudformation/2010-05-15/paginators-1.json
    #botocore/data/cloudformation/2010-05-15/service-2.json
    #botocore/data/cloudformation/2010-05-15/waiters-2.json
    #botocore/data/cloudfront/2014-05-31/paginators-1.json
    #botocore/data/cloudfront/2014-05-31/service-2.json
    #botocore/data/cloudfront/2014-05-31/waiters-2.json
    #botocore/data/cloudfront/2014-10-21/paginators-1.json
    #botocore/data/cloudfront/2014-10-21/service-2.json
    #botocore/data/cloudfront/2014-10-21/waiters-2.json
    #botocore/data/cloudfront/2014-11-06/paginators-1.json
    #botocore/data/cloudfront/2014-11-06/service-2.json
    #botocore/data/cloudfront/2014-11-06/waiters-2.json
    #botocore/data/cloudfront/2015-04-17/paginators-1.json
    #botocore/data/cloudfront/2015-04-17/service-2.json
    #botocore/data/cloudfront/2015-04-17/waiters-2.json
    #botocore/data/cloudfront/2015-07-27/paginators-1.json
    #botocore/data/cloudfront/2015-07-27/service-2.json
    #botocore/data/cloudfront/2015-07-27/waiters-2.json
    #botocore/data/cloudfront/2015-09-17/paginators-1.json
    #botocore/data/cloudfront/2015-09-17/service-2.json
    #botocore/data/cloudfront/2015-09-17/waiters-2.json
    #botocore/data/cloudfront/2016-01-13/paginators-1.json
    #botocore/data/cloudfront/2016-01-13/service-2.json
    #botocore/data/cloudfront/2016-01-13/waiters-2.json
    #botocore/data/cloudfront/2016-01-28/paginators-1.json
    #botocore/data/cloudfront/2016-01-28/service-2.json
    #botocore/data/cloudfront/2016-01-28/waiters-2.json
    #botocore/data/cloudfront/2016-08-01/paginators-1.json
    #botocore/data/cloudfront/2016-08-01/service-2.json
    #botocore/data/cloudfront/2016-08-01/waiters-2.json
    #botocore/data/cloudfront/2016-08-20/paginators-1.json
    #botocore/data/cloudfront/2016-08-20/service-2.json
    #botocore/data/cloudfront/2016-08-20/waiters-2.json
    #botocore/data/cloudfront/2016-09-07/paginators-1.json
    #botocore/data/cloudfront/2016-09-07/service-2.json
    #botocore/data/cloudfront/2016-09-07/waiters-2.json
    #botocore/data/cloudfront/2016-09-29/paginators-1.json
    #botocore/data/cloudfront/2016-09-29/service-2.json
    #botocore/data/cloudfront/2016-09-29/waiters-2.json
    #botocore/data/cloudfront/2016-11-25/examples-1.json
    #botocore/data/cloudfront/2016-11-25/paginators-1.json
    #botocore/data/cloudfront/2016-11-25/service-2.json
    #botocore/data/cloudfront/2016-11-25/waiters-2.json
    #botocore/data/cloudfront/2017-03-25/examples-1.json
    #botocore/data/cloudfront/2017-03-25/paginators-1.json
    #botocore/data/cloudfront/2017-03-25/service-2.json
    #botocore/data/cloudfront/2017-03-25/waiters-2.json
    #botocore/data/cloudfront/2017-10-30/examples-1.json
    #botocore/data/cloudfront/2017-10-30/paginators-1.json
    #botocore/data/cloudfront/2017-10-30/service-2.json
    #botocore/data/cloudfront/2017-10-30/waiters-2.json
    #botocore/data/cloudfront/2018-06-18/examples-1.json
    #botocore/data/cloudfront/2018-06-18/paginators-1.json
    #botocore/data/cloudfront/2018-06-18/service-2.json
    #botocore/data/cloudfront/2018-06-18/waiters-2.json
    #botocore/data/cloudfront/2018-11-05/examples-1.json
    #botocore/data/cloudfront/2018-11-05/paginators-1.json
    #botocore/data/cloudfront/2018-11-05/service-2.json
    #botocore/data/cloudfront/2018-11-05/waiters-2.json
    #botocore/data/cloudfront/2019-03-26/examples-1.json
    #botocore/data/cloudfront/2019-03-26/paginators-1.json
    #botocore/data/cloudfront/2019-03-26/service-2.json
    #botocore/data/cloudfront/2019-03-26/waiters-2.json
    #botocore/data/cloudfront/2020-05-31/examples-1.json
    #botocore/data/cloudfront/2020-05-31/paginators-1.json
    #botocore/data/cloudfront/2020-05-31/service-2.json
    #botocore/data/cloudfront/2020-05-31/waiters-2.json
    #botocore/data/cloudhsm/2014-05-30/examples-1.json
    #botocore/data/cloudhsm/2014-05-30/paginators-1.json
    #botocore/data/cloudhsm/2014-05-30/service-2.json
    #botocore/data/cloudhsmv2/2017-04-28/examples-1.json
    #botocore/data/cloudhsmv2/2017-04-28/paginators-1.json
    #botocore/data/cloudhsmv2/2017-04-28/service-2.json
    #botocore/data/cloudsearch/2011-02-01/service-2.json
    #botocore/data/cloudsearch/2013-01-01/paginators-1.json
    #botocore/data/cloudsearch/2013-01-01/service-2.json
    #botocore/data/cloudsearchdomain/2013-01-01/examples-1.json
    #botocore/data/cloudsearchdomain/2013-01-01/service-2.json
    #botocore/data/cloudtrail/2013-11-01/examples-1.json
    #botocore/data/cloudtrail/2013-11-01/paginators-1.json
    #botocore/data/cloudtrail/2013-11-01/service-2.json
    #botocore/data/cloudwatch/2010-08-01/examples-1.json
    #botocore/data/cloudwatch/2010-08-01/paginators-1.json
    #botocore/data/cloudwatch/2010-08-01/service-2.json
    #botocore/data/cloudwatch/2010-08-01/waiters-2.json
    #botocore/data/codeartifact/2018-09-22/paginators-1.json
    #botocore/data/codeartifact/2018-09-22/paginators-1.sdk-extras.json
    #botocore/data/codeartifact/2018-09-22/service-2.json
    #botocore/data/codebuild/2016-10-06/examples-1.json
    #botocore/data/codebuild/2016-10-06/paginators-1.json
    #botocore/data/codebuild/2016-10-06/service-2.json
    #botocore/data/codecommit/2015-04-13/examples-1.json
    #botocore/data/codecommit/2015-04-13/paginators-1.json
    #botocore/data/codecommit/2015-04-13/service-2.json
    #botocore/data/codedeploy/2014-10-06/examples-1.json
    #botocore/data/codedeploy/2014-10-06/paginators-1.json
    #botocore/data/codedeploy/2014-10-06/service-2.json
    #botocore/data/codedeploy/2014-10-06/waiters-2.json
    #botocore/data/codeguru-reviewer/2019-09-19/paginators-1.json
    #botocore/data/codeguru-reviewer/2019-09-19/service-2.json
    #botocore/data/codeguru-reviewer/2019-09-19/waiters-2.json
    #botocore/data/codeguruprofiler/2019-07-18/paginators-1.json
    #botocore/data/codeguruprofiler/2019-07-18/service-2.json
    #botocore/data/codepipeline/2015-07-09/examples-1.json
    #botocore/data/codepipeline/2015-07-09/paginators-1.json
    #botocore/data/codepipeline/2015-07-09/service-2.json
    #botocore/data/codestar-connections/2019-12-01/paginators-1.json
    #botocore/data/codestar-connections/2019-12-01/service-2.json
    #botocore/data/codestar-notifications/2019-10-15/paginators-1.json
    #botocore/data/codestar-notifications/2019-10-15/service-2.json
    #botocore/data/codestar/2017-04-19/examples-1.json
    #botocore/data/codestar/2017-04-19/paginators-1.json
    #botocore/data/codestar/2017-04-19/service-2.json
    #botocore/data/cognito-identity/2014-06-30/examples-1.json
    #botocore/data/cognito-identity/2014-06-30/paginators-1.json
    #botocore/data/cognito-identity/2014-06-30/service-2.json
    #botocore/data/cognito-idp/2016-04-18/examples-1.json
    #botocore/data/cognito-idp/2016-04-18/paginators-1.json
    #botocore/data/cognito-idp/2016-04-18/service-2.json
    #botocore/data/cognito-sync/2014-06-30/paginators-1.json
    #botocore/data/cognito-sync/2014-06-30/service-2.json
    #botocore/data/comprehend/2017-11-27/examples-1.json
    #botocore/data/comprehend/2017-11-27/paginators-1.json
    #botocore/data/comprehend/2017-11-27/service-2.json
    #botocore/data/comprehendmedical/2018-10-30/paginators-1.json
    #botocore/data/comprehendmedical/2018-10-30/service-2.json
    #botocore/data/compute-optimizer/2019-11-01/paginators-1.json
    #botocore/data/compute-optimizer/2019-11-01/service-2.json
    #botocore/data/config/2014-11-12/examples-1.json
    #botocore/data/config/2014-11-12/paginators-1.json
    #botocore/data/config/2014-11-12/service-2.json
    #botocore/data/connect-contact-lens/2020-08-21/paginators-1.json
    #botocore/data/connect-contact-lens/2020-08-21/service-2.json
    #botocore/data/connect/2017-08-08/examples-1.json
    #botocore/data/connect/2017-08-08/paginators-1.json
    #botocore/data/connect/2017-08-08/service-2.json
    #botocore/data/connectparticipant/2018-09-07/paginators-1.json
    #botocore/data/connectparticipant/2018-09-07/service-2.json
    #botocore/data/cur/2017-01-06/examples-1.json
    #botocore/data/cur/2017-01-06/paginators-1.json
    #botocore/data/cur/2017-01-06/service-2.json
    #botocore/data/customer-profiles/2020-08-15/paginators-1.json
    #botocore/data/customer-profiles/2020-08-15/service-2.json
    #botocore/data/databrew/2017-07-25/paginators-1.json
    #botocore/data/databrew/2017-07-25/service-2.json
    #botocore/data/dataexchange/2017-07-25/paginators-1.json
    #botocore/data/dataexchange/2017-07-25/service-2.json
    #botocore/data/datapipeline/2012-10-29/paginators-1.json
    #botocore/data/datapipeline/2012-10-29/service-2.json
    #botocore/data/datasync/2018-11-09/paginators-1.json
    #botocore/data/datasync/2018-11-09/service-2.json
    #botocore/data/dax/2017-04-19/examples-1.json
    #botocore/data/dax/2017-04-19/paginators-1.json
    #botocore/data/dax/2017-04-19/service-2.json
    #botocore/data/detective/2018-10-26/paginators-1.json
    #botocore/data/detective/2018-10-26/service-2.json
    #botocore/data/devicefarm/2015-06-23/examples-1.json
    #botocore/data/devicefarm/2015-06-23/paginators-1.json
    #botocore/data/devicefarm/2015-06-23/service-2.json
    #botocore/data/devops-guru/2020-12-01/paginators-1.json
    #botocore/data/devops-guru/2020-12-01/service-2.json
    #botocore/data/directconnect/2012-10-25/examples-1.json
    #botocore/data/directconnect/2012-10-25/paginators-1.json
    #botocore/data/directconnect/2012-10-25/service-2.json
    #botocore/data/discovery/2015-11-01/examples-1.json
    #botocore/data/discovery/2015-11-01/paginators-1.json
    #botocore/data/discovery/2015-11-01/service-2.json
    #botocore/data/dlm/2018-01-12/examples-1.json
    #botocore/data/dlm/2018-01-12/paginators-1.json
    #botocore/data/dlm/2018-01-12/service-2.json
    #botocore/data/dms/2016-01-01/examples-1.json
    #botocore/data/dms/2016-01-01/paginators-1.json
    #botocore/data/dms/2016-01-01/service-2.json
    #botocore/data/dms/2016-01-01/waiters-2.json
    #botocore/data/docdb/2014-10-31/paginators-1.json
    #botocore/data/docdb/2014-10-31/service-2.json
    #botocore/data/docdb/2014-10-31/service-2.sdk-extras.json
    #botocore/data/docdb/2014-10-31/waiters-2.json
    #botocore/data/ds/2015-04-16/examples-1.json
    #botocore/data/ds/2015-04-16/paginators-1.json
    #botocore/data/ds/2015-04-16/service-2.json
    #botocore/data/dynamodb/2012-08-10/examples-1.json
    #botocore/data/dynamodb/2012-08-10/paginators-1.json
    #botocore/data/dynamodb/2012-08-10/service-2.json
    #botocore/data/dynamodb/2012-08-10/waiters-2.json
    #botocore/data/dynamodbstreams/2012-08-10/examples-1.json
    #botocore/data/dynamodbstreams/2012-08-10/paginators-1.json
    #botocore/data/dynamodbstreams/2012-08-10/service-2.json
    #botocore/data/ebs/2019-11-02/paginators-1.json
    #botocore/data/ebs/2019-11-02/service-2.json
    botocore/data/ec2-instance-connect/2018-04-02/paginators-1.json
    botocore/data/ec2-instance-connect/2018-04-02/service-2.json
    botocore/data/ec2/2014-09-01/paginators-1.json
    botocore/data/ec2/2014-09-01/service-2.json
    botocore/data/ec2/2014-09-01/waiters-2.json
    botocore/data/ec2/2014-10-01/paginators-1.json
    botocore/data/ec2/2014-10-01/service-2.json
    botocore/data/ec2/2014-10-01/waiters-2.json
    botocore/data/ec2/2015-03-01/paginators-1.json
    botocore/data/ec2/2015-03-01/service-2.json
    botocore/data/ec2/2015-03-01/waiters-2.json
    botocore/data/ec2/2015-04-15/paginators-1.json
    botocore/data/ec2/2015-04-15/service-2.json
    botocore/data/ec2/2015-04-15/waiters-2.json
    botocore/data/ec2/2015-10-01/paginators-1.json
    botocore/data/ec2/2015-10-01/service-2.json
    botocore/data/ec2/2015-10-01/waiters-2.json
    botocore/data/ec2/2016-04-01/paginators-1.json
    botocore/data/ec2/2016-04-01/service-2.json
    botocore/data/ec2/2016-04-01/waiters-2.json
    botocore/data/ec2/2016-09-15/examples-1.json
    botocore/data/ec2/2016-09-15/paginators-1.json
    botocore/data/ec2/2016-09-15/service-2.json
    botocore/data/ec2/2016-09-15/waiters-2.json
    botocore/data/ec2/2016-11-15/examples-1.json
    botocore/data/ec2/2016-11-15/paginators-1.json
    botocore/data/ec2/2016-11-15/service-2.json
    botocore/data/ec2/2016-11-15/waiters-2.json
    #botocore/data/ecr-public/2020-10-30/paginators-1.json
    #botocore/data/ecr-public/2020-10-30/service-2.json
    #botocore/data/ecr/2015-09-21/examples-1.json
    #botocore/data/ecr/2015-09-21/paginators-1.json
    #botocore/data/ecr/2015-09-21/service-2.json
    #botocore/data/ecr/2015-09-21/waiters-2.json
    #botocore/data/ecs/2014-11-13/examples-1.json
    #botocore/data/ecs/2014-11-13/paginators-1.json
    #botocore/data/ecs/2014-11-13/service-2.json
    #botocore/data/ecs/2014-11-13/waiters-2.json
    #botocore/data/efs/2015-02-01/examples-1.json
    #botocore/data/efs/2015-02-01/paginators-1.json
    #botocore/data/efs/2015-02-01/service-2.json
    #botocore/data/eks/2017-11-01/examples-1.json
    #botocore/data/eks/2017-11-01/paginators-1.json
    #botocore/data/eks/2017-11-01/service-2.json
    #botocore/data/eks/2017-11-01/service-2.sdk-extras.json
    #botocore/data/eks/2017-11-01/waiters-2.json
    #botocore/data/elastic-inference/2017-07-25/paginators-1.json
    #botocore/data/elastic-inference/2017-07-25/service-2.json
    #botocore/data/elasticache/2014-09-30/paginators-1.json
    #botocore/data/elasticache/2014-09-30/service-2.json
    #botocore/data/elasticache/2014-09-30/waiters-2.json
    #botocore/data/elasticache/2015-02-02/examples-1.json
    #botocore/data/elasticache/2015-02-02/paginators-1.json
    #botocore/data/elasticache/2015-02-02/service-2.json
    #botocore/data/elasticache/2015-02-02/waiters-2.json
    #botocore/data/elasticbeanstalk/2010-12-01/examples-1.json
    #botocore/data/elasticbeanstalk/2010-12-01/paginators-1.json
    #botocore/data/elasticbeanstalk/2010-12-01/service-2.json
    #botocore/data/elasticbeanstalk/2010-12-01/waiters-2.json
    #botocore/data/elastictranscoder/2012-09-25/examples-1.json
    #botocore/data/elastictranscoder/2012-09-25/paginators-1.json
    #botocore/data/elastictranscoder/2012-09-25/service-2.json
    #botocore/data/elastictranscoder/2012-09-25/waiters-2.json
    #botocore/data/elb/2012-06-01/examples-1.json
    #botocore/data/elb/2012-06-01/paginators-1.json
    #botocore/data/elb/2012-06-01/service-2.json
    #botocore/data/elb/2012-06-01/waiters-2.json
    #botocore/data/elbv2/2015-12-01/examples-1.json
    #botocore/data/elbv2/2015-12-01/paginators-1.json
    #botocore/data/elbv2/2015-12-01/service-2.json
    #botocore/data/elbv2/2015-12-01/waiters-2.json
    #botocore/data/emr-containers/2020-10-01/paginators-1.json
    #botocore/data/emr-containers/2020-10-01/service-2.json
    #botocore/data/emr/2009-03-31/examples-1.json
    #botocore/data/emr/2009-03-31/paginators-1.json
    #botocore/data/emr/2009-03-31/service-2.json
    #botocore/data/emr/2009-03-31/waiters-2.json
    botocore/data/endpoints.json
    #botocore/data/es/2015-01-01/examples-1.json
    #botocore/data/es/2015-01-01/paginators-1.json
    #botocore/data/es/2015-01-01/service-2.json
    #botocore/data/events/2014-02-03/service-2.json
    #botocore/data/events/2015-10-07/examples-1.json
    #botocore/data/events/2015-10-07/paginators-1.json
    #botocore/data/events/2015-10-07/service-2.json
    #botocore/data/finspace-data/2020-07-13/paginators-1.json
    #botocore/data/finspace-data/2020-07-13/service-2.json
    #botocore/data/finspace/2021-03-12/paginators-1.json
    #botocore/data/finspace/2021-03-12/service-2.json
    #botocore/data/firehose/2015-08-04/examples-1.json
    #botocore/data/firehose/2015-08-04/paginators-1.json
    #botocore/data/firehose/2015-08-04/service-2.json
    #botocore/data/fis/2020-12-01/paginators-1.json
    #botocore/data/fis/2020-12-01/service-2.json
    #botocore/data/fms/2018-01-01/examples-1.json
    #botocore/data/fms/2018-01-01/paginators-1.json
    #botocore/data/fms/2018-01-01/service-2.json
    #botocore/data/forecast/2018-06-26/paginators-1.json
    #botocore/data/forecast/2018-06-26/service-2.json
    #botocore/data/forecastquery/2018-06-26/paginators-1.json
    #botocore/data/forecastquery/2018-06-26/service-2.json
    #botocore/data/frauddetector/2019-11-15/paginators-1.json
    #botocore/data/frauddetector/2019-11-15/service-2.json
    #botocore/data/fsx/2018-03-01/paginators-1.json
    #botocore/data/fsx/2018-03-01/service-2.json
    #botocore/data/gamelift/2015-10-01/examples-1.json
    #botocore/data/gamelift/2015-10-01/paginators-1.json
    #botocore/data/gamelift/2015-10-01/service-2.json
    #botocore/data/glacier/2012-06-01/examples-1.json
    #botocore/data/glacier/2012-06-01/paginators-1.json
    #botocore/data/glacier/2012-06-01/service-2.json
    #botocore/data/glacier/2012-06-01/waiters-2.json
    #botocore/data/globalaccelerator/2018-08-08/paginators-1.json
    #botocore/data/globalaccelerator/2018-08-08/service-2.json
    #botocore/data/glue/2017-03-31/examples-1.json
    #botocore/data/glue/2017-03-31/paginators-1.json
    #botocore/data/glue/2017-03-31/service-2.json
    #botocore/data/greengrass/2017-06-07/paginators-1.json
    #botocore/data/greengrass/2017-06-07/service-2.json
    #botocore/data/greengrassv2/2020-11-30/paginators-1.json
    #botocore/data/greengrassv2/2020-11-30/service-2.json
    #botocore/data/groundstation/2019-05-23/paginators-1.json
    #botocore/data/groundstation/2019-05-23/service-2.json
    #botocore/data/guardduty/2017-11-28/paginators-1.json
    #botocore/data/guardduty/2017-11-28/service-2.json
    #botocore/data/health/2016-08-04/examples-1.json
    #botocore/data/health/2016-08-04/paginators-1.json
    #botocore/data/health/2016-08-04/service-2.json
    #botocore/data/healthlake/2017-07-01/paginators-1.json
    #botocore/data/healthlake/2017-07-01/service-2.json
    #botocore/data/honeycode/2020-03-01/paginators-1.json
    #botocore/data/honeycode/2020-03-01/paginators-1.sdk-extras.json
    #botocore/data/honeycode/2020-03-01/service-2.json
    #botocore/data/iam/2010-05-08/examples-1.json
    #botocore/data/iam/2010-05-08/paginators-1.json
    #botocore/data/iam/2010-05-08/service-2.json
    #botocore/data/iam/2010-05-08/waiters-2.json
    #botocore/data/identitystore/2020-06-15/paginators-1.json
    #botocore/data/identitystore/2020-06-15/service-2.json
    #botocore/data/imagebuilder/2019-12-02/paginators-1.json
    #botocore/data/imagebuilder/2019-12-02/service-2.json
    #botocore/data/importexport/2010-06-01/paginators-1.json
    #botocore/data/importexport/2010-06-01/service-2.json
    #botocore/data/inspector/2015-08-18/service-2.json
    #botocore/data/inspector/2016-02-16/examples-1.json
    #botocore/data/inspector/2016-02-16/paginators-1.json
    #botocore/data/inspector/2016-02-16/service-2.json
    #botocore/data/iot-data/2015-05-28/paginators-1.json
    #botocore/data/iot-data/2015-05-28/service-2.json
    #botocore/data/iot-jobs-data/2017-09-29/examples-1.json
    #botocore/data/iot-jobs-data/2017-09-29/paginators-1.json
    #botocore/data/iot-jobs-data/2017-09-29/service-2.json
    #botocore/data/iot/2015-05-28/examples-1.json
    #botocore/data/iot/2015-05-28/paginators-1.json
    #botocore/data/iot/2015-05-28/service-2.json
    #botocore/data/iot1click-devices/2018-05-14/paginators-1.json
    #botocore/data/iot1click-devices/2018-05-14/service-2.json
    #botocore/data/iot1click-projects/2018-05-14/examples-1.json
    #botocore/data/iot1click-projects/2018-05-14/paginators-1.json
    #botocore/data/iot1click-projects/2018-05-14/service-2.json
    #botocore/data/iotanalytics/2017-11-27/examples-1.json
    #botocore/data/iotanalytics/2017-11-27/paginators-1.json
    #botocore/data/iotanalytics/2017-11-27/service-2.json
    #botocore/data/iotdeviceadvisor/2020-09-18/paginators-1.json
    #botocore/data/iotdeviceadvisor/2020-09-18/service-2.json
    #botocore/data/iotevents-data/2018-10-23/paginators-1.json
    #botocore/data/iotevents-data/2018-10-23/service-2.json
    #botocore/data/iotevents/2018-07-27/paginators-1.json
    #botocore/data/iotevents/2018-07-27/service-2.json
    #botocore/data/iotfleethub/2020-11-03/paginators-1.json
    #botocore/data/iotfleethub/2020-11-03/service-2.json
    #botocore/data/iotsecuretunneling/2018-10-05/paginators-1.json
    #botocore/data/iotsecuretunneling/2018-10-05/service-2.json
    #botocore/data/iotsitewise/2019-12-02/paginators-1.json
    #botocore/data/iotsitewise/2019-12-02/service-2.json
    #botocore/data/iotsitewise/2019-12-02/waiters-2.json
    #botocore/data/iotthingsgraph/2018-09-06/paginators-1.json
    #botocore/data/iotthingsgraph/2018-09-06/service-2.json
    #botocore/data/iotwireless/2020-11-22/paginators-1.json
    #botocore/data/iotwireless/2020-11-22/service-2.json
    #botocore/data/ivs/2020-07-14/paginators-1.json
    #botocore/data/ivs/2020-07-14/service-2.json
    #botocore/data/kafka/2018-11-14/paginators-1.json
    #botocore/data/kafka/2018-11-14/service-2.json
    #botocore/data/kendra/2019-02-03/paginators-1.json
    #botocore/data/kendra/2019-02-03/service-2.json
    #botocore/data/kinesis-video-archived-media/2017-09-30/examples-1.json
    #botocore/data/kinesis-video-archived-media/2017-09-30/paginators-1.json
    #botocore/data/kinesis-video-archived-media/2017-09-30/service-2.json
    #botocore/data/kinesis-video-media/2017-09-30/examples-1.json
    #botocore/data/kinesis-video-media/2017-09-30/paginators-1.json
    #botocore/data/kinesis-video-media/2017-09-30/service-2.json
    #botocore/data/kinesis-video-signaling/2019-12-04/paginators-1.json
    #botocore/data/kinesis-video-signaling/2019-12-04/service-2.json
    botocore/data/kinesis/2013-12-02/examples-1.json 
    botocore/data/kinesis/2013-12-02/paginators-1.json 
    botocore/data/kinesis/2013-12-02/service-2.json 
    botocore/data/kinesis/2013-12-02/waiters-2.json 
    #botocore/data/kinesisanalytics/2015-08-14/examples-1.json
    #botocore/data/kinesisanalytics/2015-08-14/paginators-1.json
    #botocore/data/kinesisanalytics/2015-08-14/service-2.json
    #botocore/data/kinesisanalyticsv2/2018-05-23/paginators-1.json
    #botocore/data/kinesisanalyticsv2/2018-05-23/service-2.json
    #botocore/data/kinesisvideo/2017-09-30/examples-1.json
    #botocore/data/kinesisvideo/2017-09-30/paginators-1.json
    #botocore/data/kinesisvideo/2017-09-30/service-2.json
    #botocore/data/kms/2014-11-01/examples-1.json
    #botocore/data/kms/2014-11-01/paginators-1.json
    #botocore/data/kms/2014-11-01/service-2.json
    #botocore/data/lakeformation/2017-03-31/paginators-1.json
    #botocore/data/lakeformation/2017-03-31/service-2.json
    #botocore/data/lambda/2014-11-11/service-2.json
    #botocore/data/lambda/2015-03-31/examples-1.json
    #botocore/data/lambda/2015-03-31/paginators-1.json
    #botocore/data/lambda/2015-03-31/service-2.json
    #botocore/data/lambda/2015-03-31/waiters-2.json
    #botocore/data/lex-models/2017-04-19/examples-1.json
    #botocore/data/lex-models/2017-04-19/paginators-1.json
    #botocore/data/lex-models/2017-04-19/service-2.json
    #botocore/data/lex-runtime/2016-11-28/examples-1.json
    #botocore/data/lex-runtime/2016-11-28/paginators-1.json
    #botocore/data/lex-runtime/2016-11-28/service-2.json
    #botocore/data/lexv2-models/2020-08-07/paginators-1.json
    #botocore/data/lexv2-models/2020-08-07/service-2.json
    #botocore/data/lexv2-runtime/2020-08-07/paginators-1.json
    #botocore/data/lexv2-runtime/2020-08-07/service-2.json
    #botocore/data/license-manager/2018-08-01/paginators-1.json
    #botocore/data/license-manager/2018-08-01/service-2.json
    #botocore/data/lightsail/2016-11-28/examples-1.json
    #botocore/data/lightsail/2016-11-28/paginators-1.json
    #botocore/data/lightsail/2016-11-28/service-2.json
    #botocore/data/location/2020-11-19/paginators-1.json
    #botocore/data/location/2020-11-19/service-2.json
    #botocore/data/logs/2014-03-28/examples-1.json
    #botocore/data/logs/2014-03-28/paginators-1.json
    #botocore/data/logs/2014-03-28/service-2.json
    #botocore/data/lookoutequipment/2020-12-15/paginators-1.json
    #botocore/data/lookoutequipment/2020-12-15/service-2.json
    #botocore/data/lookoutmetrics/2017-07-25/paginators-1.json
    #botocore/data/lookoutmetrics/2017-07-25/service-2.json
    #botocore/data/lookoutvision/2020-11-20/paginators-1.json
    #botocore/data/lookoutvision/2020-11-20/service-2.json
    #botocore/data/machinelearning/2014-12-12/examples-1.json
    #botocore/data/machinelearning/2014-12-12/paginators-1.json
    #botocore/data/machinelearning/2014-12-12/service-2.json
    #botocore/data/machinelearning/2014-12-12/waiters-2.json
    #botocore/data/macie/2017-12-19/examples-1.json
    #botocore/data/macie/2017-12-19/paginators-1.json
    #botocore/data/macie/2017-12-19/service-2.json
    #botocore/data/macie2/2020-01-01/paginators-1.json
    #botocore/data/macie2/2020-01-01/service-2.json
    #botocore/data/managedblockchain/2018-09-24/paginators-1.json
    #botocore/data/managedblockchain/2018-09-24/service-2.json
    #botocore/data/marketplace-catalog/2018-09-17/paginators-1.json
    #botocore/data/marketplace-catalog/2018-09-17/service-2.json
    #botocore/data/marketplace-entitlement/2017-01-11/examples-1.json
    #botocore/data/marketplace-entitlement/2017-01-11/paginators-1.json
    #botocore/data/marketplace-entitlement/2017-01-11/service-2.json
    #botocore/data/marketplacecommerceanalytics/2015-07-01/examples-1.json
    #botocore/data/marketplacecommerceanalytics/2015-07-01/paginators-1.json
    #botocore/data/marketplacecommerceanalytics/2015-07-01/service-2.json
    #botocore/data/mediaconnect/2018-11-14/paginators-1.json
    #botocore/data/mediaconnect/2018-11-14/service-2.json
    #botocore/data/mediaconnect/2018-11-14/waiters-2.json
    #botocore/data/mediaconvert/2017-08-29/paginators-1.json
    #botocore/data/mediaconvert/2017-08-29/service-2.json
    #botocore/data/medialive/2017-10-14/paginators-1.json
    #botocore/data/medialive/2017-10-14/service-2.json
    #botocore/data/medialive/2017-10-14/waiters-2.json
    #botocore/data/mediapackage-vod/2018-11-07/paginators-1.json
    #botocore/data/mediapackage-vod/2018-11-07/service-2.json
    #botocore/data/mediapackage/2017-10-12/paginators-1.json
    #botocore/data/mediapackage/2017-10-12/service-2.json
    #botocore/data/mediastore-data/2017-09-01/examples-1.json
    #botocore/data/mediastore-data/2017-09-01/paginators-1.json
    #botocore/data/mediastore-data/2017-09-01/service-2.json
    #botocore/data/mediastore/2017-09-01/examples-1.json
    #botocore/data/mediastore/2017-09-01/paginators-1.json
    #botocore/data/mediastore/2017-09-01/service-2.json
    #botocore/data/mediatailor/2018-04-23/paginators-1.json
    #botocore/data/mediatailor/2018-04-23/service-2.json
    #botocore/data/meteringmarketplace/2016-01-14/examples-1.json
    #botocore/data/meteringmarketplace/2016-01-14/paginators-1.json
    #botocore/data/meteringmarketplace/2016-01-14/service-2.json
    #botocore/data/mgh/2017-05-31/examples-1.json
    #botocore/data/mgh/2017-05-31/paginators-1.json
    #botocore/data/mgh/2017-05-31/service-2.json
    #botocore/data/mgn/2020-02-26/paginators-1.json
    #botocore/data/mgn/2020-02-26/service-2.json
    #botocore/data/migrationhub-config/2019-06-30/paginators-1.json
    #botocore/data/migrationhub-config/2019-06-30/service-2.json
    #botocore/data/mobile/2017-07-01/examples-1.json
    #botocore/data/mobile/2017-07-01/paginators-1.json
    #botocore/data/mobile/2017-07-01/service-2.json
    #botocore/data/mq/2017-11-27/paginators-1.json
    #botocore/data/mq/2017-11-27/service-2.json
    #botocore/data/mturk/2017-01-17/examples-1.json
    #botocore/data/mturk/2017-01-17/paginators-1.json
    #botocore/data/mturk/2017-01-17/service-2.json
    #botocore/data/mwaa/2020-07-01/paginators-1.json
    #botocore/data/mwaa/2020-07-01/service-2.json
    #botocore/data/neptune/2014-10-31/examples-1.json
    #botocore/data/neptune/2014-10-31/paginators-1.json
    #botocore/data/neptune/2014-10-31/service-2.json
    #botocore/data/neptune/2014-10-31/service-2.sdk-extras.json
    #botocore/data/neptune/2014-10-31/waiters-2.json
    #botocore/data/network-firewall/2020-11-12/paginators-1.json
    #botocore/data/network-firewall/2020-11-12/service-2.json
    #botocore/data/networkmanager/2019-07-05/paginators-1.json
    #botocore/data/networkmanager/2019-07-05/service-2.json
    #botocore/data/nimble/2020-08-01/paginators-1.json
    #botocore/data/nimble/2020-08-01/service-2.json
    #botocore/data/opsworks/2013-02-18/examples-1.json
    #botocore/data/opsworks/2013-02-18/paginators-1.json
    #botocore/data/opsworks/2013-02-18/service-2.json
    #botocore/data/opsworks/2013-02-18/waiters-2.json
    #botocore/data/opsworkscm/2016-11-01/examples-1.json
    #botocore/data/opsworkscm/2016-11-01/paginators-1.json
    #botocore/data/opsworkscm/2016-11-01/service-2.json
    #botocore/data/opsworkscm/2016-11-01/waiters-2.json
    #botocore/data/organizations/2016-11-28/examples-1.json
    #botocore/data/organizations/2016-11-28/paginators-1.json
    #botocore/data/organizations/2016-11-28/service-2.json
    #botocore/data/outposts/2019-12-03/paginators-1.json
    #botocore/data/outposts/2019-12-03/service-2.json
    #botocore/data/personalize-events/2018-03-22/paginators-1.json
    #botocore/data/personalize-events/2018-03-22/service-2.json
    #botocore/data/personalize-runtime/2018-05-22/paginators-1.json
    #botocore/data/personalize-runtime/2018-05-22/service-2.json
    #botocore/data/personalize/2018-05-22/paginators-1.json
    #botocore/data/personalize/2018-05-22/service-2.json
    #botocore/data/pi/2018-02-27/examples-1.json
    #botocore/data/pi/2018-02-27/paginators-1.json
    #botocore/data/pi/2018-02-27/service-2.json
    #botocore/data/pinpoint-email/2018-07-26/paginators-1.json
    #botocore/data/pinpoint-email/2018-07-26/service-2.json
    #botocore/data/pinpoint-sms-voice/2018-09-05/service-2.json
    #botocore/data/pinpoint/2016-12-01/examples-1.json
    #botocore/data/pinpoint/2016-12-01/service-2.json
    botocore/data/polly/2016-06-10/examples-1.json
    botocore/data/polly/2016-06-10/paginators-1.json
    botocore/data/polly/2016-06-10/service-2.json
    #botocore/data/pricing/2017-10-15/examples-1.json
    #botocore/data/pricing/2017-10-15/paginators-1.json
    #botocore/data/pricing/2017-10-15/service-2.json
    #botocore/data/proton/2020-07-20/paginators-1.json
    #botocore/data/proton/2020-07-20/service-2.json
    #botocore/data/proton/2020-07-20/waiters-2.json
    #botocore/data/qldb-session/2019-07-11/paginators-1.json
    #botocore/data/qldb-session/2019-07-11/service-2.json
    #botocore/data/qldb/2019-01-02/paginators-1.json
    #botocore/data/qldb/2019-01-02/service-2.json
    #botocore/data/quicksight/2018-04-01/paginators-1.json
    #botocore/data/quicksight/2018-04-01/paginators-1.sdk-extras.json
    #botocore/data/quicksight/2018-04-01/service-2.json
    #botocore/data/ram/2018-01-04/paginators-1.json
    #botocore/data/ram/2018-01-04/service-2.json
    #botocore/data/rds-data/2018-08-01/paginators-1.json
    #botocore/data/rds-data/2018-08-01/service-2.json
    #botocore/data/rds/2014-09-01/paginators-1.json
    #botocore/data/rds/2014-09-01/service-2.json
    #botocore/data/rds/2014-09-01/waiters-2.json
    #botocore/data/rds/2014-10-31/examples-1.json
    #botocore/data/rds/2014-10-31/paginators-1.json
    #botocore/data/rds/2014-10-31/service-2.json
    #botocore/data/rds/2014-10-31/service-2.sdk-extras.json
    #botocore/data/rds/2014-10-31/waiters-2.json
    #botocore/data/redshift-data/2019-12-20/paginators-1.json
    #botocore/data/redshift-data/2019-12-20/paginators-1.sdk-extras.json
    #botocore/data/redshift-data/2019-12-20/service-2.json
    #botocore/data/redshift/2012-12-01/examples-1.json
    #botocore/data/redshift/2012-12-01/paginators-1.json
    #botocore/data/redshift/2012-12-01/service-2.json
    #botocore/data/redshift/2012-12-01/waiters-2.json
    #botocore/data/rekognition/2016-06-27/examples-1.json
    #botocore/data/rekognition/2016-06-27/paginators-1.json
    #botocore/data/rekognition/2016-06-27/service-2.json
    #botocore/data/rekognition/2016-06-27/waiters-2.json
    #botocore/data/resource-groups/2017-11-27/examples-1.json
    #botocore/data/resource-groups/2017-11-27/paginators-1.json
    #botocore/data/resource-groups/2017-11-27/service-2.json
    #botocore/data/resourcegroupstaggingapi/2017-01-26/examples-1.json
    #botocore/data/resourcegroupstaggingapi/2017-01-26/paginators-1.json
    #botocore/data/resourcegroupstaggingapi/2017-01-26/service-2.json
    #botocore/data/robomaker/2018-06-29/paginators-1.json
    #botocore/data/robomaker/2018-06-29/service-2.json
    botocore/data/route53/2013-04-01/examples-1.json
    botocore/data/route53/2013-04-01/paginators-1.json
    botocore/data/route53/2013-04-01/service-2.json
    botocore/data/route53/2013-04-01/waiters-2.json
    botocore/data/route53domains/2014-05-15/examples-1.json
    botocore/data/route53domains/2014-05-15/paginators-1.json
    botocore/data/route53domains/2014-05-15/service-2.json
    botocore/data/route53resolver/2018-04-01/paginators-1.json
    botocore/data/route53resolver/2018-04-01/paginators-1.sdk-extras.json
    botocore/data/route53resolver/2018-04-01/service-2.json
    botocore/data/s3/2006-03-01/examples-1.json
    botocore/data/s3/2006-03-01/paginators-1.json
    botocore/data/s3/2006-03-01/service-2.json
    botocore/data/s3/2006-03-01/waiters-2.json
    #botocore/data/s3control/2018-08-20/paginators-1.json
    #botocore/data/s3control/2018-08-20/service-2.json
    #botocore/data/s3outposts/2017-07-25/paginators-1.json
    #botocore/data/s3outposts/2017-07-25/service-2.json
    #botocore/data/sagemaker-a2i-runtime/2019-11-07/paginators-1.json
    #botocore/data/sagemaker-a2i-runtime/2019-11-07/service-2.json
    #botocore/data/sagemaker-edge/2020-09-23/paginators-1.json
    #botocore/data/sagemaker-edge/2020-09-23/service-2.json
    #botocore/data/sagemaker-featurestore-runtime/2020-07-01/paginators-1.json
    #botocore/data/sagemaker-featurestore-runtime/2020-07-01/service-2.json
    #botocore/data/sagemaker-runtime/2017-05-13/examples-1.json
    #botocore/data/sagemaker-runtime/2017-05-13/paginators-1.json
    #botocore/data/sagemaker-runtime/2017-05-13/service-2.json
    #botocore/data/sagemaker/2017-07-24/examples-1.json
    #botocore/data/sagemaker/2017-07-24/paginators-1.json
    #botocore/data/sagemaker/2017-07-24/service-2.json
    #botocore/data/sagemaker/2017-07-24/waiters-2.json
    #botocore/data/savingsplans/2019-06-28/paginators-1.json
    #botocore/data/savingsplans/2019-06-28/service-2.json
    #botocore/data/schemas/2019-12-02/paginators-1.json
    #botocore/data/schemas/2019-12-02/service-2.json
    #botocore/data/schemas/2019-12-02/waiters-2.json
    #botocore/data/sdb/2009-04-15/paginators-1.json
    #botocore/data/sdb/2009-04-15/service-2.json
    botocore/data/secretsmanager/2017-10-17/examples-1.json
    botocore/data/secretsmanager/2017-10-17/paginators-1.json
    botocore/data/secretsmanager/2017-10-17/service-2.json
    botocore/data/secretsmanager/2017-10-17/service-2.sdk-extras.json
    #botocore/data/securityhub/2018-10-26/paginators-1.json
    #botocore/data/securityhub/2018-10-26/service-2.json
    #botocore/data/serverlessrepo/2017-09-08/paginators-1.json
    #botocore/data/serverlessrepo/2017-09-08/service-2.json
    #botocore/data/service-quotas/2019-06-24/paginators-1.json
    #botocore/data/service-quotas/2019-06-24/service-2.json
    #botocore/data/servicecatalog-appregistry/2020-06-24/paginators-1.json
    #botocore/data/servicecatalog-appregistry/2020-06-24/service-2.json
    #botocore/data/servicecatalog/2015-12-10/examples-1.json
    #botocore/data/servicecatalog/2015-12-10/paginators-1.json
    #botocore/data/servicecatalog/2015-12-10/service-2.json
    #botocore/data/servicediscovery/2017-03-14/examples-1.json
    #botocore/data/servicediscovery/2017-03-14/paginators-1.json
    #botocore/data/servicediscovery/2017-03-14/service-2.json
    #botocore/data/ses/2010-12-01/examples-1.json
    #botocore/data/ses/2010-12-01/paginators-1.json
    #botocore/data/ses/2010-12-01/service-2.json
    #botocore/data/ses/2010-12-01/waiters-2.json
    #botocore/data/sesv2/2019-09-27/paginators-1.json
    #botocore/data/sesv2/2019-09-27/service-2.json
    #botocore/data/shield/2016-06-02/examples-1.json
    #botocore/data/shield/2016-06-02/paginators-1.json
    #botocore/data/shield/2016-06-02/service-2.json
    #botocore/data/signer/2017-08-25/examples-1.json
    #botocore/data/signer/2017-08-25/paginators-1.json
    #botocore/data/signer/2017-08-25/service-2.json
    #botocore/data/signer/2017-08-25/waiters-2.json
    #botocore/data/sms-voice/2018-09-05/service-2.json
    #botocore/data/sms/2016-10-24/examples-1.json
    #botocore/data/sms/2016-10-24/paginators-1.json
    #botocore/data/sms/2016-10-24/service-2.json
    #botocore/data/snowball/2016-06-30/examples-1.json
    #botocore/data/snowball/2016-06-30/paginators-1.json
    #botocore/data/snowball/2016-06-30/service-2.json
    #botocore/data/sns/2010-03-31/examples-1.json
    #botocore/data/sns/2010-03-31/paginators-1.json
    #botocore/data/sns/2010-03-31/service-2.json
    botocore/data/sqs/2012-11-05/examples-1.json
    botocore/data/sqs/2012-11-05/paginators-1.json
    botocore/data/sqs/2012-11-05/service-2.json
    #botocore/data/ssm-contacts/2021-05-03/paginators-1.json
    #botocore/data/ssm-contacts/2021-05-03/service-2.json
    #botocore/data/ssm-incidents/2018-05-10/paginators-1.json
    #botocore/data/ssm-incidents/2018-05-10/service-2.json
    #botocore/data/ssm-incidents/2018-05-10/waiters-2.json
    #botocore/data/ssm/2014-11-06/examples-1.json
    #botocore/data/ssm/2014-11-06/paginators-1.json
    #botocore/data/ssm/2014-11-06/service-2.json
    #botocore/data/ssm/2014-11-06/waiters-2.json
    #botocore/data/sso-admin/2020-07-20/paginators-1.json
    #botocore/data/sso-admin/2020-07-20/service-2.json
    #botocore/data/sso-oidc/2019-06-10/paginators-1.json
    #botocore/data/sso-oidc/2019-06-10/service-2.json
    #botocore/data/sso/2019-06-10/paginators-1.json
    #botocore/data/sso/2019-06-10/service-2.json
    #botocore/data/stepfunctions/2016-11-23/examples-1.json
    #botocore/data/stepfunctions/2016-11-23/paginators-1.json
    #botocore/data/stepfunctions/2016-11-23/service-2.json
    #botocore/data/storagegateway/2013-06-30/examples-1.json
    #botocore/data/storagegateway/2013-06-30/paginators-1.json
    #botocore/data/storagegateway/2013-06-30/service-2.json
    botocore/data/sts/2011-06-15/examples-1.json
    botocore/data/sts/2011-06-15/paginators-1.json
    botocore/data/sts/2011-06-15/service-2.json
    #botocore/data/support/2013-04-15/examples-1.json
    #botocore/data/support/2013-04-15/paginators-1.json
    #botocore/data/support/2013-04-15/service-2.json
    #botocore/data/swf/2012-01-25/examples-1.json
    #botocore/data/swf/2012-01-25/paginators-1.json
    #botocore/data/swf/2012-01-25/service-2.json
    #botocore/data/synthetics/2017-10-11/paginators-1.json
    #botocore/data/synthetics/2017-10-11/service-2.json
    #botocore/data/textract/2018-06-27/paginators-1.json
    #botocore/data/textract/2018-06-27/service-2.json
    #botocore/data/timestream-query/2018-11-01/paginators-1.json
    #botocore/data/timestream-query/2018-11-01/service-2.json
    #botocore/data/timestream-write/2018-11-01/paginators-1.json
    #botocore/data/timestream-write/2018-11-01/service-2.json
    #botocore/data/transcribe/2017-10-26/examples-1.json
    #botocore/data/transcribe/2017-10-26/paginators-1.json
    #botocore/data/transcribe/2017-10-26/service-2.json
    #botocore/data/transfer/2018-11-05/paginators-1.json
    #botocore/data/transfer/2018-11-05/service-2.json
    botocore/data/translate/2017-07-01/examples-1.json
    botocore/data/translate/2017-07-01/paginators-1.json
    botocore/data/translate/2017-07-01/service-2.json
    #botocore/data/waf-regional/2016-11-28/examples-1.json
    #botocore/data/waf-regional/2016-11-28/paginators-1.json
    #botocore/data/waf-regional/2016-11-28/service-2.json
    #botocore/data/waf/2015-08-24/examples-1.json
    #botocore/data/waf/2015-08-24/paginators-1.json
    #botocore/data/waf/2015-08-24/service-2.json
    #botocore/data/wafv2/2019-07-29/paginators-1.json
    #botocore/data/wafv2/2019-07-29/service-2.json
    #botocore/data/wellarchitected/2020-03-31/paginators-1.json
    #botocore/data/wellarchitected/2020-03-31/service-2.json
    #botocore/data/workdocs/2016-05-01/examples-1.json
    #botocore/data/workdocs/2016-05-01/paginators-1.json
    #botocore/data/workdocs/2016-05-01/service-2.json
    #botocore/data/worklink/2018-09-25/paginators-1.json
    #botocore/data/worklink/2018-09-25/service-2.json
    #botocore/data/workmail/2017-10-01/examples-1.json
    #botocore/data/workmail/2017-10-01/paginators-1.json
    #botocore/data/workmail/2017-10-01/service-2.json
    #botocore/data/workmailmessageflow/2019-05-01/paginators-1.json
    #botocore/data/workmailmessageflow/2019-05-01/service-2.json
    #botocore/data/workspaces/2015-04-08/examples-1.json
    #botocore/data/workspaces/2015-04-08/paginators-1.json
    #botocore/data/workspaces/2015-04-08/service-2.json
    #botocore/data/xray/2016-04-12/examples-1.json
    #botocore/data/xray/2016-04-12/paginators-1.json
    #botocore/data/xray/2016-04-12/service-2.json
)

END()

RECURSE_FOR_TESTS(
    tests
)