ya.make 48 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923
  1. PY23_LIBRARY()
  2. OWNER(g:python-contrib)
  3. VERSION(1.20.112)
  4. LICENSE(Apache-2.0)
  5. PEERDIR(
  6. contrib/python/dateutil
  7. contrib/python/jmespath
  8. contrib/python/six
  9. contrib/python/urllib3
  10. library/python/resource
  11. )
  12. NO_LINT()
  13. NO_CHECK_IMPORTS(
  14. botocore.crt.auth
  15. )
  16. PY_SRCS(
  17. TOP_LEVEL
  18. botocore/__init__.py
  19. botocore/args.py
  20. botocore/auth.py
  21. botocore/awsrequest.py
  22. botocore/client.py
  23. botocore/compat.py
  24. botocore/config.py
  25. botocore/configloader.py
  26. botocore/configprovider.py
  27. botocore/credentials.py
  28. botocore/crt/__init__.py
  29. botocore/crt/auth.py
  30. botocore/discovery.py
  31. botocore/docs/__init__.py
  32. botocore/docs/bcdoc/__init__.py
  33. botocore/docs/bcdoc/docstringparser.py
  34. botocore/docs/bcdoc/restdoc.py
  35. botocore/docs/bcdoc/style.py
  36. botocore/docs/client.py
  37. botocore/docs/docstring.py
  38. botocore/docs/example.py
  39. botocore/docs/method.py
  40. botocore/docs/paginator.py
  41. botocore/docs/params.py
  42. botocore/docs/service.py
  43. botocore/docs/shape.py
  44. botocore/docs/sharedexample.py
  45. botocore/docs/utils.py
  46. botocore/docs/waiter.py
  47. botocore/endpoint.py
  48. botocore/errorfactory.py
  49. botocore/eventstream.py
  50. botocore/exceptions.py
  51. botocore/handlers.py
  52. botocore/history.py
  53. botocore/hooks.py
  54. botocore/httpsession.py
  55. botocore/loaders.py
  56. botocore/model.py
  57. botocore/monitoring.py
  58. botocore/paginate.py
  59. botocore/parsers.py
  60. botocore/regions.py
  61. botocore/response.py
  62. botocore/retries/__init__.py
  63. botocore/retries/adaptive.py
  64. botocore/retries/base.py
  65. botocore/retries/bucket.py
  66. botocore/retries/quota.py
  67. botocore/retries/special.py
  68. botocore/retries/standard.py
  69. botocore/retries/throttling.py
  70. botocore/retryhandler.py
  71. botocore/serialize.py
  72. botocore/session.py
  73. botocore/signers.py
  74. botocore/stub.py
  75. botocore/translate.py
  76. botocore/utils.py
  77. botocore/validate.py
  78. botocore/vendored/__init__.py
  79. botocore/vendored/requests/__init__.py
  80. botocore/vendored/requests/exceptions.py
  81. botocore/vendored/requests/packages/__init__.py
  82. botocore/vendored/requests/packages/urllib3/__init__.py
  83. botocore/vendored/requests/packages/urllib3/exceptions.py
  84. botocore/waiter.py
  85. )
  86. RESOURCE_FILES(
  87. PREFIX contrib/python/botocore/
  88. .dist-info/METADATA
  89. .dist-info/top_level.txt
  90. botocore/cacert.pem
  91. botocore/data/_retry.json
  92. #botocore/data/accessanalyzer/2019-11-01/paginators-1.json
  93. #botocore/data/accessanalyzer/2019-11-01/service-2.json
  94. #botocore/data/acm-pca/2017-08-22/examples-1.json
  95. #botocore/data/acm-pca/2017-08-22/paginators-1.json
  96. #botocore/data/acm-pca/2017-08-22/service-2.json
  97. #botocore/data/acm-pca/2017-08-22/waiters-2.json
  98. #botocore/data/acm/2015-12-08/examples-1.json
  99. #botocore/data/acm/2015-12-08/paginators-1.json
  100. #botocore/data/acm/2015-12-08/service-2.json
  101. #botocore/data/acm/2015-12-08/waiters-2.json
  102. #botocore/data/alexaforbusiness/2017-11-09/examples-1.json
  103. #botocore/data/alexaforbusiness/2017-11-09/paginators-1.json
  104. #botocore/data/alexaforbusiness/2017-11-09/service-2.json
  105. #botocore/data/amp/2020-08-01/paginators-1.json
  106. #botocore/data/amp/2020-08-01/service-2.json
  107. #botocore/data/amplify/2017-07-25/paginators-1.json
  108. #botocore/data/amplify/2017-07-25/service-2.json
  109. #botocore/data/amplifybackend/2020-08-11/paginators-1.json
  110. #botocore/data/amplifybackend/2020-08-11/service-2.json
  111. #botocore/data/apigateway/2015-07-09/examples-1.json
  112. #botocore/data/apigateway/2015-07-09/paginators-1.json
  113. #botocore/data/apigateway/2015-07-09/service-2.json
  114. #botocore/data/apigatewaymanagementapi/2018-11-29/paginators-1.json
  115. #botocore/data/apigatewaymanagementapi/2018-11-29/service-2.json
  116. #botocore/data/apigatewayv2/2018-11-29/paginators-1.json
  117. #botocore/data/apigatewayv2/2018-11-29/service-2.json
  118. #botocore/data/appconfig/2019-10-09/paginators-1.json
  119. #botocore/data/appconfig/2019-10-09/service-2.json
  120. #botocore/data/appflow/2020-08-23/paginators-1.json
  121. #botocore/data/appflow/2020-08-23/service-2.json
  122. #botocore/data/appintegrations/2020-07-29/paginators-1.json
  123. #botocore/data/appintegrations/2020-07-29/service-2.json
  124. #botocore/data/application-autoscaling/2016-02-06/examples-1.json
  125. #botocore/data/application-autoscaling/2016-02-06/paginators-1.json
  126. #botocore/data/application-autoscaling/2016-02-06/service-2.json
  127. #botocore/data/application-insights/2018-11-25/paginators-1.json
  128. #botocore/data/application-insights/2018-11-25/service-2.json
  129. #botocore/data/applicationcostprofiler/2020-09-10/paginators-1.json
  130. #botocore/data/applicationcostprofiler/2020-09-10/service-2.json
  131. #botocore/data/appmesh/2018-10-01/paginators-1.json
  132. #botocore/data/appmesh/2018-10-01/service-2.json
  133. #botocore/data/appmesh/2019-01-25/paginators-1.json
  134. #botocore/data/appmesh/2019-01-25/service-2.json
  135. #botocore/data/apprunner/2020-05-15/paginators-1.json
  136. #botocore/data/apprunner/2020-05-15/service-2.json
  137. #botocore/data/appstream/2016-12-01/examples-1.json
  138. #botocore/data/appstream/2016-12-01/paginators-1.json
  139. #botocore/data/appstream/2016-12-01/service-2.json
  140. #botocore/data/appstream/2016-12-01/waiters-2.json
  141. #botocore/data/appsync/2017-07-25/examples-1.json
  142. #botocore/data/appsync/2017-07-25/paginators-1.json
  143. #botocore/data/appsync/2017-07-25/service-2.json
  144. #botocore/data/athena/2017-05-18/examples-1.json
  145. #botocore/data/athena/2017-05-18/paginators-1.json
  146. #botocore/data/athena/2017-05-18/service-2.json
  147. #botocore/data/auditmanager/2017-07-25/paginators-1.json
  148. #botocore/data/auditmanager/2017-07-25/service-2.json
  149. #botocore/data/autoscaling-plans/2018-01-06/examples-1.json
  150. #botocore/data/autoscaling-plans/2018-01-06/paginators-1.json
  151. #botocore/data/autoscaling-plans/2018-01-06/service-2.json
  152. #botocore/data/autoscaling/2011-01-01/examples-1.json
  153. #botocore/data/autoscaling/2011-01-01/paginators-1.json
  154. #botocore/data/autoscaling/2011-01-01/service-2.json
  155. #botocore/data/backup/2018-11-15/paginators-1.json
  156. #botocore/data/backup/2018-11-15/service-2.json
  157. #botocore/data/batch/2016-08-10/examples-1.json
  158. #botocore/data/batch/2016-08-10/paginators-1.json
  159. #botocore/data/batch/2016-08-10/service-2.json
  160. #botocore/data/braket/2019-09-01/paginators-1.json
  161. #botocore/data/braket/2019-09-01/service-2.json
  162. #botocore/data/budgets/2016-10-20/examples-1.json
  163. #botocore/data/budgets/2016-10-20/paginators-1.json
  164. #botocore/data/budgets/2016-10-20/service-2.json
  165. #botocore/data/ce/2017-10-25/examples-1.json
  166. #botocore/data/ce/2017-10-25/paginators-1.json
  167. #botocore/data/ce/2017-10-25/service-2.json
  168. #botocore/data/chime/2018-05-01/paginators-1.json
  169. #botocore/data/chime/2018-05-01/service-2.json
  170. #botocore/data/cloud9/2017-09-23/examples-1.json
  171. #botocore/data/cloud9/2017-09-23/paginators-1.json
  172. #botocore/data/cloud9/2017-09-23/service-2.json
  173. #botocore/data/clouddirectory/2016-05-10/paginators-1.json
  174. #botocore/data/clouddirectory/2016-05-10/service-2.json
  175. #botocore/data/clouddirectory/2017-01-11/examples-1.json
  176. #botocore/data/clouddirectory/2017-01-11/paginators-1.json
  177. #botocore/data/clouddirectory/2017-01-11/service-2.json
  178. #botocore/data/cloudformation/2010-05-15/examples-1.json
  179. #botocore/data/cloudformation/2010-05-15/paginators-1.json
  180. #botocore/data/cloudformation/2010-05-15/service-2.json
  181. #botocore/data/cloudformation/2010-05-15/waiters-2.json
  182. #botocore/data/cloudfront/2014-05-31/paginators-1.json
  183. #botocore/data/cloudfront/2014-05-31/service-2.json
  184. #botocore/data/cloudfront/2014-05-31/waiters-2.json
  185. #botocore/data/cloudfront/2014-10-21/paginators-1.json
  186. #botocore/data/cloudfront/2014-10-21/service-2.json
  187. #botocore/data/cloudfront/2014-10-21/waiters-2.json
  188. #botocore/data/cloudfront/2014-11-06/paginators-1.json
  189. #botocore/data/cloudfront/2014-11-06/service-2.json
  190. #botocore/data/cloudfront/2014-11-06/waiters-2.json
  191. #botocore/data/cloudfront/2015-04-17/paginators-1.json
  192. #botocore/data/cloudfront/2015-04-17/service-2.json
  193. #botocore/data/cloudfront/2015-04-17/waiters-2.json
  194. #botocore/data/cloudfront/2015-07-27/paginators-1.json
  195. #botocore/data/cloudfront/2015-07-27/service-2.json
  196. #botocore/data/cloudfront/2015-07-27/waiters-2.json
  197. #botocore/data/cloudfront/2015-09-17/paginators-1.json
  198. #botocore/data/cloudfront/2015-09-17/service-2.json
  199. #botocore/data/cloudfront/2015-09-17/waiters-2.json
  200. #botocore/data/cloudfront/2016-01-13/paginators-1.json
  201. #botocore/data/cloudfront/2016-01-13/service-2.json
  202. #botocore/data/cloudfront/2016-01-13/waiters-2.json
  203. #botocore/data/cloudfront/2016-01-28/paginators-1.json
  204. #botocore/data/cloudfront/2016-01-28/service-2.json
  205. #botocore/data/cloudfront/2016-01-28/waiters-2.json
  206. #botocore/data/cloudfront/2016-08-01/paginators-1.json
  207. #botocore/data/cloudfront/2016-08-01/service-2.json
  208. #botocore/data/cloudfront/2016-08-01/waiters-2.json
  209. #botocore/data/cloudfront/2016-08-20/paginators-1.json
  210. #botocore/data/cloudfront/2016-08-20/service-2.json
  211. #botocore/data/cloudfront/2016-08-20/waiters-2.json
  212. #botocore/data/cloudfront/2016-09-07/paginators-1.json
  213. #botocore/data/cloudfront/2016-09-07/service-2.json
  214. #botocore/data/cloudfront/2016-09-07/waiters-2.json
  215. #botocore/data/cloudfront/2016-09-29/paginators-1.json
  216. #botocore/data/cloudfront/2016-09-29/service-2.json
  217. #botocore/data/cloudfront/2016-09-29/waiters-2.json
  218. #botocore/data/cloudfront/2016-11-25/examples-1.json
  219. #botocore/data/cloudfront/2016-11-25/paginators-1.json
  220. #botocore/data/cloudfront/2016-11-25/service-2.json
  221. #botocore/data/cloudfront/2016-11-25/waiters-2.json
  222. #botocore/data/cloudfront/2017-03-25/examples-1.json
  223. #botocore/data/cloudfront/2017-03-25/paginators-1.json
  224. #botocore/data/cloudfront/2017-03-25/service-2.json
  225. #botocore/data/cloudfront/2017-03-25/waiters-2.json
  226. #botocore/data/cloudfront/2017-10-30/examples-1.json
  227. #botocore/data/cloudfront/2017-10-30/paginators-1.json
  228. #botocore/data/cloudfront/2017-10-30/service-2.json
  229. #botocore/data/cloudfront/2017-10-30/waiters-2.json
  230. #botocore/data/cloudfront/2018-06-18/examples-1.json
  231. #botocore/data/cloudfront/2018-06-18/paginators-1.json
  232. #botocore/data/cloudfront/2018-06-18/service-2.json
  233. #botocore/data/cloudfront/2018-06-18/waiters-2.json
  234. #botocore/data/cloudfront/2018-11-05/examples-1.json
  235. #botocore/data/cloudfront/2018-11-05/paginators-1.json
  236. #botocore/data/cloudfront/2018-11-05/service-2.json
  237. #botocore/data/cloudfront/2018-11-05/waiters-2.json
  238. #botocore/data/cloudfront/2019-03-26/examples-1.json
  239. #botocore/data/cloudfront/2019-03-26/paginators-1.json
  240. #botocore/data/cloudfront/2019-03-26/service-2.json
  241. #botocore/data/cloudfront/2019-03-26/waiters-2.json
  242. #botocore/data/cloudfront/2020-05-31/examples-1.json
  243. #botocore/data/cloudfront/2020-05-31/paginators-1.json
  244. #botocore/data/cloudfront/2020-05-31/service-2.json
  245. #botocore/data/cloudfront/2020-05-31/waiters-2.json
  246. #botocore/data/cloudhsm/2014-05-30/examples-1.json
  247. #botocore/data/cloudhsm/2014-05-30/paginators-1.json
  248. #botocore/data/cloudhsm/2014-05-30/service-2.json
  249. #botocore/data/cloudhsmv2/2017-04-28/examples-1.json
  250. #botocore/data/cloudhsmv2/2017-04-28/paginators-1.json
  251. #botocore/data/cloudhsmv2/2017-04-28/service-2.json
  252. #botocore/data/cloudsearch/2011-02-01/service-2.json
  253. #botocore/data/cloudsearch/2013-01-01/paginators-1.json
  254. #botocore/data/cloudsearch/2013-01-01/service-2.json
  255. #botocore/data/cloudsearchdomain/2013-01-01/examples-1.json
  256. #botocore/data/cloudsearchdomain/2013-01-01/service-2.json
  257. #botocore/data/cloudtrail/2013-11-01/examples-1.json
  258. #botocore/data/cloudtrail/2013-11-01/paginators-1.json
  259. #botocore/data/cloudtrail/2013-11-01/service-2.json
  260. #botocore/data/cloudwatch/2010-08-01/examples-1.json
  261. #botocore/data/cloudwatch/2010-08-01/paginators-1.json
  262. #botocore/data/cloudwatch/2010-08-01/service-2.json
  263. #botocore/data/cloudwatch/2010-08-01/waiters-2.json
  264. #botocore/data/codeartifact/2018-09-22/paginators-1.json
  265. #botocore/data/codeartifact/2018-09-22/paginators-1.sdk-extras.json
  266. #botocore/data/codeartifact/2018-09-22/service-2.json
  267. #botocore/data/codebuild/2016-10-06/examples-1.json
  268. #botocore/data/codebuild/2016-10-06/paginators-1.json
  269. #botocore/data/codebuild/2016-10-06/service-2.json
  270. #botocore/data/codecommit/2015-04-13/examples-1.json
  271. #botocore/data/codecommit/2015-04-13/paginators-1.json
  272. #botocore/data/codecommit/2015-04-13/service-2.json
  273. #botocore/data/codedeploy/2014-10-06/examples-1.json
  274. #botocore/data/codedeploy/2014-10-06/paginators-1.json
  275. #botocore/data/codedeploy/2014-10-06/service-2.json
  276. #botocore/data/codedeploy/2014-10-06/waiters-2.json
  277. #botocore/data/codeguru-reviewer/2019-09-19/paginators-1.json
  278. #botocore/data/codeguru-reviewer/2019-09-19/service-2.json
  279. #botocore/data/codeguru-reviewer/2019-09-19/waiters-2.json
  280. #botocore/data/codeguruprofiler/2019-07-18/paginators-1.json
  281. #botocore/data/codeguruprofiler/2019-07-18/service-2.json
  282. #botocore/data/codepipeline/2015-07-09/examples-1.json
  283. #botocore/data/codepipeline/2015-07-09/paginators-1.json
  284. #botocore/data/codepipeline/2015-07-09/service-2.json
  285. #botocore/data/codestar-connections/2019-12-01/paginators-1.json
  286. #botocore/data/codestar-connections/2019-12-01/service-2.json
  287. #botocore/data/codestar-notifications/2019-10-15/paginators-1.json
  288. #botocore/data/codestar-notifications/2019-10-15/service-2.json
  289. #botocore/data/codestar/2017-04-19/examples-1.json
  290. #botocore/data/codestar/2017-04-19/paginators-1.json
  291. #botocore/data/codestar/2017-04-19/service-2.json
  292. #botocore/data/cognito-identity/2014-06-30/examples-1.json
  293. #botocore/data/cognito-identity/2014-06-30/paginators-1.json
  294. #botocore/data/cognito-identity/2014-06-30/service-2.json
  295. #botocore/data/cognito-idp/2016-04-18/examples-1.json
  296. #botocore/data/cognito-idp/2016-04-18/paginators-1.json
  297. #botocore/data/cognito-idp/2016-04-18/service-2.json
  298. #botocore/data/cognito-sync/2014-06-30/paginators-1.json
  299. #botocore/data/cognito-sync/2014-06-30/service-2.json
  300. #botocore/data/comprehend/2017-11-27/examples-1.json
  301. #botocore/data/comprehend/2017-11-27/paginators-1.json
  302. #botocore/data/comprehend/2017-11-27/service-2.json
  303. #botocore/data/comprehendmedical/2018-10-30/paginators-1.json
  304. #botocore/data/comprehendmedical/2018-10-30/service-2.json
  305. #botocore/data/compute-optimizer/2019-11-01/paginators-1.json
  306. #botocore/data/compute-optimizer/2019-11-01/service-2.json
  307. #botocore/data/config/2014-11-12/examples-1.json
  308. #botocore/data/config/2014-11-12/paginators-1.json
  309. #botocore/data/config/2014-11-12/service-2.json
  310. #botocore/data/connect-contact-lens/2020-08-21/paginators-1.json
  311. #botocore/data/connect-contact-lens/2020-08-21/service-2.json
  312. #botocore/data/connect/2017-08-08/examples-1.json
  313. #botocore/data/connect/2017-08-08/paginators-1.json
  314. #botocore/data/connect/2017-08-08/service-2.json
  315. #botocore/data/connectparticipant/2018-09-07/paginators-1.json
  316. #botocore/data/connectparticipant/2018-09-07/service-2.json
  317. #botocore/data/cur/2017-01-06/examples-1.json
  318. #botocore/data/cur/2017-01-06/paginators-1.json
  319. #botocore/data/cur/2017-01-06/service-2.json
  320. #botocore/data/customer-profiles/2020-08-15/paginators-1.json
  321. #botocore/data/customer-profiles/2020-08-15/service-2.json
  322. #botocore/data/databrew/2017-07-25/paginators-1.json
  323. #botocore/data/databrew/2017-07-25/service-2.json
  324. #botocore/data/dataexchange/2017-07-25/paginators-1.json
  325. #botocore/data/dataexchange/2017-07-25/service-2.json
  326. #botocore/data/datapipeline/2012-10-29/paginators-1.json
  327. #botocore/data/datapipeline/2012-10-29/service-2.json
  328. #botocore/data/datasync/2018-11-09/paginators-1.json
  329. #botocore/data/datasync/2018-11-09/service-2.json
  330. #botocore/data/dax/2017-04-19/examples-1.json
  331. #botocore/data/dax/2017-04-19/paginators-1.json
  332. #botocore/data/dax/2017-04-19/service-2.json
  333. #botocore/data/detective/2018-10-26/paginators-1.json
  334. #botocore/data/detective/2018-10-26/service-2.json
  335. #botocore/data/devicefarm/2015-06-23/examples-1.json
  336. #botocore/data/devicefarm/2015-06-23/paginators-1.json
  337. #botocore/data/devicefarm/2015-06-23/service-2.json
  338. #botocore/data/devops-guru/2020-12-01/paginators-1.json
  339. #botocore/data/devops-guru/2020-12-01/service-2.json
  340. #botocore/data/directconnect/2012-10-25/examples-1.json
  341. #botocore/data/directconnect/2012-10-25/paginators-1.json
  342. #botocore/data/directconnect/2012-10-25/service-2.json
  343. #botocore/data/discovery/2015-11-01/examples-1.json
  344. #botocore/data/discovery/2015-11-01/paginators-1.json
  345. #botocore/data/discovery/2015-11-01/service-2.json
  346. #botocore/data/dlm/2018-01-12/examples-1.json
  347. #botocore/data/dlm/2018-01-12/paginators-1.json
  348. #botocore/data/dlm/2018-01-12/service-2.json
  349. #botocore/data/dms/2016-01-01/examples-1.json
  350. #botocore/data/dms/2016-01-01/paginators-1.json
  351. #botocore/data/dms/2016-01-01/service-2.json
  352. #botocore/data/dms/2016-01-01/waiters-2.json
  353. #botocore/data/docdb/2014-10-31/paginators-1.json
  354. #botocore/data/docdb/2014-10-31/service-2.json
  355. #botocore/data/docdb/2014-10-31/service-2.sdk-extras.json
  356. #botocore/data/docdb/2014-10-31/waiters-2.json
  357. #botocore/data/ds/2015-04-16/examples-1.json
  358. #botocore/data/ds/2015-04-16/paginators-1.json
  359. #botocore/data/ds/2015-04-16/service-2.json
  360. #botocore/data/dynamodb/2012-08-10/examples-1.json
  361. #botocore/data/dynamodb/2012-08-10/paginators-1.json
  362. #botocore/data/dynamodb/2012-08-10/service-2.json
  363. #botocore/data/dynamodb/2012-08-10/waiters-2.json
  364. #botocore/data/dynamodbstreams/2012-08-10/examples-1.json
  365. #botocore/data/dynamodbstreams/2012-08-10/paginators-1.json
  366. #botocore/data/dynamodbstreams/2012-08-10/service-2.json
  367. #botocore/data/ebs/2019-11-02/paginators-1.json
  368. #botocore/data/ebs/2019-11-02/service-2.json
  369. botocore/data/ec2-instance-connect/2018-04-02/paginators-1.json
  370. botocore/data/ec2-instance-connect/2018-04-02/service-2.json
  371. botocore/data/ec2/2014-09-01/paginators-1.json
  372. botocore/data/ec2/2014-09-01/service-2.json
  373. botocore/data/ec2/2014-09-01/waiters-2.json
  374. botocore/data/ec2/2014-10-01/paginators-1.json
  375. botocore/data/ec2/2014-10-01/service-2.json
  376. botocore/data/ec2/2014-10-01/waiters-2.json
  377. botocore/data/ec2/2015-03-01/paginators-1.json
  378. botocore/data/ec2/2015-03-01/service-2.json
  379. botocore/data/ec2/2015-03-01/waiters-2.json
  380. botocore/data/ec2/2015-04-15/paginators-1.json
  381. botocore/data/ec2/2015-04-15/service-2.json
  382. botocore/data/ec2/2015-04-15/waiters-2.json
  383. botocore/data/ec2/2015-10-01/paginators-1.json
  384. botocore/data/ec2/2015-10-01/service-2.json
  385. botocore/data/ec2/2015-10-01/waiters-2.json
  386. botocore/data/ec2/2016-04-01/paginators-1.json
  387. botocore/data/ec2/2016-04-01/service-2.json
  388. botocore/data/ec2/2016-04-01/waiters-2.json
  389. botocore/data/ec2/2016-09-15/examples-1.json
  390. botocore/data/ec2/2016-09-15/paginators-1.json
  391. botocore/data/ec2/2016-09-15/service-2.json
  392. botocore/data/ec2/2016-09-15/waiters-2.json
  393. botocore/data/ec2/2016-11-15/examples-1.json
  394. botocore/data/ec2/2016-11-15/paginators-1.json
  395. botocore/data/ec2/2016-11-15/service-2.json
  396. botocore/data/ec2/2016-11-15/waiters-2.json
  397. #botocore/data/ecr-public/2020-10-30/paginators-1.json
  398. #botocore/data/ecr-public/2020-10-30/service-2.json
  399. #botocore/data/ecr/2015-09-21/examples-1.json
  400. #botocore/data/ecr/2015-09-21/paginators-1.json
  401. #botocore/data/ecr/2015-09-21/service-2.json
  402. #botocore/data/ecr/2015-09-21/waiters-2.json
  403. #botocore/data/ecs/2014-11-13/examples-1.json
  404. #botocore/data/ecs/2014-11-13/paginators-1.json
  405. #botocore/data/ecs/2014-11-13/service-2.json
  406. #botocore/data/ecs/2014-11-13/waiters-2.json
  407. #botocore/data/efs/2015-02-01/examples-1.json
  408. #botocore/data/efs/2015-02-01/paginators-1.json
  409. #botocore/data/efs/2015-02-01/service-2.json
  410. #botocore/data/eks/2017-11-01/examples-1.json
  411. #botocore/data/eks/2017-11-01/paginators-1.json
  412. #botocore/data/eks/2017-11-01/service-2.json
  413. #botocore/data/eks/2017-11-01/service-2.sdk-extras.json
  414. #botocore/data/eks/2017-11-01/waiters-2.json
  415. #botocore/data/elastic-inference/2017-07-25/paginators-1.json
  416. #botocore/data/elastic-inference/2017-07-25/service-2.json
  417. #botocore/data/elasticache/2014-09-30/paginators-1.json
  418. #botocore/data/elasticache/2014-09-30/service-2.json
  419. #botocore/data/elasticache/2014-09-30/waiters-2.json
  420. #botocore/data/elasticache/2015-02-02/examples-1.json
  421. #botocore/data/elasticache/2015-02-02/paginators-1.json
  422. #botocore/data/elasticache/2015-02-02/service-2.json
  423. #botocore/data/elasticache/2015-02-02/waiters-2.json
  424. #botocore/data/elasticbeanstalk/2010-12-01/examples-1.json
  425. #botocore/data/elasticbeanstalk/2010-12-01/paginators-1.json
  426. #botocore/data/elasticbeanstalk/2010-12-01/service-2.json
  427. #botocore/data/elasticbeanstalk/2010-12-01/waiters-2.json
  428. #botocore/data/elastictranscoder/2012-09-25/examples-1.json
  429. #botocore/data/elastictranscoder/2012-09-25/paginators-1.json
  430. #botocore/data/elastictranscoder/2012-09-25/service-2.json
  431. #botocore/data/elastictranscoder/2012-09-25/waiters-2.json
  432. #botocore/data/elb/2012-06-01/examples-1.json
  433. #botocore/data/elb/2012-06-01/paginators-1.json
  434. #botocore/data/elb/2012-06-01/service-2.json
  435. #botocore/data/elb/2012-06-01/waiters-2.json
  436. #botocore/data/elbv2/2015-12-01/examples-1.json
  437. #botocore/data/elbv2/2015-12-01/paginators-1.json
  438. #botocore/data/elbv2/2015-12-01/service-2.json
  439. #botocore/data/elbv2/2015-12-01/waiters-2.json
  440. #botocore/data/emr-containers/2020-10-01/paginators-1.json
  441. #botocore/data/emr-containers/2020-10-01/service-2.json
  442. #botocore/data/emr/2009-03-31/examples-1.json
  443. #botocore/data/emr/2009-03-31/paginators-1.json
  444. #botocore/data/emr/2009-03-31/service-2.json
  445. #botocore/data/emr/2009-03-31/waiters-2.json
  446. botocore/data/endpoints.json
  447. #botocore/data/es/2015-01-01/examples-1.json
  448. #botocore/data/es/2015-01-01/paginators-1.json
  449. #botocore/data/es/2015-01-01/service-2.json
  450. #botocore/data/events/2014-02-03/service-2.json
  451. #botocore/data/events/2015-10-07/examples-1.json
  452. #botocore/data/events/2015-10-07/paginators-1.json
  453. #botocore/data/events/2015-10-07/service-2.json
  454. #botocore/data/finspace-data/2020-07-13/paginators-1.json
  455. #botocore/data/finspace-data/2020-07-13/service-2.json
  456. #botocore/data/finspace/2021-03-12/paginators-1.json
  457. #botocore/data/finspace/2021-03-12/service-2.json
  458. #botocore/data/firehose/2015-08-04/examples-1.json
  459. #botocore/data/firehose/2015-08-04/paginators-1.json
  460. #botocore/data/firehose/2015-08-04/service-2.json
  461. #botocore/data/fis/2020-12-01/paginators-1.json
  462. #botocore/data/fis/2020-12-01/service-2.json
  463. #botocore/data/fms/2018-01-01/examples-1.json
  464. #botocore/data/fms/2018-01-01/paginators-1.json
  465. #botocore/data/fms/2018-01-01/service-2.json
  466. #botocore/data/forecast/2018-06-26/paginators-1.json
  467. #botocore/data/forecast/2018-06-26/service-2.json
  468. #botocore/data/forecastquery/2018-06-26/paginators-1.json
  469. #botocore/data/forecastquery/2018-06-26/service-2.json
  470. #botocore/data/frauddetector/2019-11-15/paginators-1.json
  471. #botocore/data/frauddetector/2019-11-15/service-2.json
  472. #botocore/data/fsx/2018-03-01/paginators-1.json
  473. #botocore/data/fsx/2018-03-01/service-2.json
  474. #botocore/data/gamelift/2015-10-01/examples-1.json
  475. #botocore/data/gamelift/2015-10-01/paginators-1.json
  476. #botocore/data/gamelift/2015-10-01/service-2.json
  477. #botocore/data/glacier/2012-06-01/examples-1.json
  478. #botocore/data/glacier/2012-06-01/paginators-1.json
  479. #botocore/data/glacier/2012-06-01/service-2.json
  480. #botocore/data/glacier/2012-06-01/waiters-2.json
  481. #botocore/data/globalaccelerator/2018-08-08/paginators-1.json
  482. #botocore/data/globalaccelerator/2018-08-08/service-2.json
  483. #botocore/data/glue/2017-03-31/examples-1.json
  484. #botocore/data/glue/2017-03-31/paginators-1.json
  485. #botocore/data/glue/2017-03-31/service-2.json
  486. #botocore/data/greengrass/2017-06-07/paginators-1.json
  487. #botocore/data/greengrass/2017-06-07/service-2.json
  488. #botocore/data/greengrassv2/2020-11-30/paginators-1.json
  489. #botocore/data/greengrassv2/2020-11-30/service-2.json
  490. #botocore/data/groundstation/2019-05-23/paginators-1.json
  491. #botocore/data/groundstation/2019-05-23/service-2.json
  492. #botocore/data/guardduty/2017-11-28/paginators-1.json
  493. #botocore/data/guardduty/2017-11-28/service-2.json
  494. #botocore/data/health/2016-08-04/examples-1.json
  495. #botocore/data/health/2016-08-04/paginators-1.json
  496. #botocore/data/health/2016-08-04/service-2.json
  497. #botocore/data/healthlake/2017-07-01/paginators-1.json
  498. #botocore/data/healthlake/2017-07-01/service-2.json
  499. #botocore/data/honeycode/2020-03-01/paginators-1.json
  500. #botocore/data/honeycode/2020-03-01/paginators-1.sdk-extras.json
  501. #botocore/data/honeycode/2020-03-01/service-2.json
  502. #botocore/data/iam/2010-05-08/examples-1.json
  503. #botocore/data/iam/2010-05-08/paginators-1.json
  504. #botocore/data/iam/2010-05-08/service-2.json
  505. #botocore/data/iam/2010-05-08/waiters-2.json
  506. #botocore/data/identitystore/2020-06-15/paginators-1.json
  507. #botocore/data/identitystore/2020-06-15/service-2.json
  508. #botocore/data/imagebuilder/2019-12-02/paginators-1.json
  509. #botocore/data/imagebuilder/2019-12-02/service-2.json
  510. #botocore/data/importexport/2010-06-01/paginators-1.json
  511. #botocore/data/importexport/2010-06-01/service-2.json
  512. #botocore/data/inspector/2015-08-18/service-2.json
  513. #botocore/data/inspector/2016-02-16/examples-1.json
  514. #botocore/data/inspector/2016-02-16/paginators-1.json
  515. #botocore/data/inspector/2016-02-16/service-2.json
  516. #botocore/data/iot-data/2015-05-28/paginators-1.json
  517. #botocore/data/iot-data/2015-05-28/service-2.json
  518. #botocore/data/iot-jobs-data/2017-09-29/examples-1.json
  519. #botocore/data/iot-jobs-data/2017-09-29/paginators-1.json
  520. #botocore/data/iot-jobs-data/2017-09-29/service-2.json
  521. #botocore/data/iot/2015-05-28/examples-1.json
  522. #botocore/data/iot/2015-05-28/paginators-1.json
  523. #botocore/data/iot/2015-05-28/service-2.json
  524. #botocore/data/iot1click-devices/2018-05-14/paginators-1.json
  525. #botocore/data/iot1click-devices/2018-05-14/service-2.json
  526. #botocore/data/iot1click-projects/2018-05-14/examples-1.json
  527. #botocore/data/iot1click-projects/2018-05-14/paginators-1.json
  528. #botocore/data/iot1click-projects/2018-05-14/service-2.json
  529. #botocore/data/iotanalytics/2017-11-27/examples-1.json
  530. #botocore/data/iotanalytics/2017-11-27/paginators-1.json
  531. #botocore/data/iotanalytics/2017-11-27/service-2.json
  532. #botocore/data/iotdeviceadvisor/2020-09-18/paginators-1.json
  533. #botocore/data/iotdeviceadvisor/2020-09-18/service-2.json
  534. #botocore/data/iotevents-data/2018-10-23/paginators-1.json
  535. #botocore/data/iotevents-data/2018-10-23/service-2.json
  536. #botocore/data/iotevents/2018-07-27/paginators-1.json
  537. #botocore/data/iotevents/2018-07-27/service-2.json
  538. #botocore/data/iotfleethub/2020-11-03/paginators-1.json
  539. #botocore/data/iotfleethub/2020-11-03/service-2.json
  540. #botocore/data/iotsecuretunneling/2018-10-05/paginators-1.json
  541. #botocore/data/iotsecuretunneling/2018-10-05/service-2.json
  542. #botocore/data/iotsitewise/2019-12-02/paginators-1.json
  543. #botocore/data/iotsitewise/2019-12-02/service-2.json
  544. #botocore/data/iotsitewise/2019-12-02/waiters-2.json
  545. #botocore/data/iotthingsgraph/2018-09-06/paginators-1.json
  546. #botocore/data/iotthingsgraph/2018-09-06/service-2.json
  547. #botocore/data/iotwireless/2020-11-22/paginators-1.json
  548. #botocore/data/iotwireless/2020-11-22/service-2.json
  549. #botocore/data/ivs/2020-07-14/paginators-1.json
  550. #botocore/data/ivs/2020-07-14/service-2.json
  551. #botocore/data/kafka/2018-11-14/paginators-1.json
  552. #botocore/data/kafka/2018-11-14/service-2.json
  553. #botocore/data/kendra/2019-02-03/paginators-1.json
  554. #botocore/data/kendra/2019-02-03/service-2.json
  555. #botocore/data/kinesis-video-archived-media/2017-09-30/examples-1.json
  556. #botocore/data/kinesis-video-archived-media/2017-09-30/paginators-1.json
  557. #botocore/data/kinesis-video-archived-media/2017-09-30/service-2.json
  558. #botocore/data/kinesis-video-media/2017-09-30/examples-1.json
  559. #botocore/data/kinesis-video-media/2017-09-30/paginators-1.json
  560. #botocore/data/kinesis-video-media/2017-09-30/service-2.json
  561. #botocore/data/kinesis-video-signaling/2019-12-04/paginators-1.json
  562. #botocore/data/kinesis-video-signaling/2019-12-04/service-2.json
  563. botocore/data/kinesis/2013-12-02/examples-1.json
  564. botocore/data/kinesis/2013-12-02/paginators-1.json
  565. botocore/data/kinesis/2013-12-02/service-2.json
  566. botocore/data/kinesis/2013-12-02/waiters-2.json
  567. #botocore/data/kinesisanalytics/2015-08-14/examples-1.json
  568. #botocore/data/kinesisanalytics/2015-08-14/paginators-1.json
  569. #botocore/data/kinesisanalytics/2015-08-14/service-2.json
  570. #botocore/data/kinesisanalyticsv2/2018-05-23/paginators-1.json
  571. #botocore/data/kinesisanalyticsv2/2018-05-23/service-2.json
  572. #botocore/data/kinesisvideo/2017-09-30/examples-1.json
  573. #botocore/data/kinesisvideo/2017-09-30/paginators-1.json
  574. #botocore/data/kinesisvideo/2017-09-30/service-2.json
  575. #botocore/data/kms/2014-11-01/examples-1.json
  576. #botocore/data/kms/2014-11-01/paginators-1.json
  577. #botocore/data/kms/2014-11-01/service-2.json
  578. #botocore/data/lakeformation/2017-03-31/paginators-1.json
  579. #botocore/data/lakeformation/2017-03-31/service-2.json
  580. #botocore/data/lambda/2014-11-11/service-2.json
  581. #botocore/data/lambda/2015-03-31/examples-1.json
  582. #botocore/data/lambda/2015-03-31/paginators-1.json
  583. #botocore/data/lambda/2015-03-31/service-2.json
  584. #botocore/data/lambda/2015-03-31/waiters-2.json
  585. #botocore/data/lex-models/2017-04-19/examples-1.json
  586. #botocore/data/lex-models/2017-04-19/paginators-1.json
  587. #botocore/data/lex-models/2017-04-19/service-2.json
  588. #botocore/data/lex-runtime/2016-11-28/examples-1.json
  589. #botocore/data/lex-runtime/2016-11-28/paginators-1.json
  590. #botocore/data/lex-runtime/2016-11-28/service-2.json
  591. #botocore/data/lexv2-models/2020-08-07/paginators-1.json
  592. #botocore/data/lexv2-models/2020-08-07/service-2.json
  593. #botocore/data/lexv2-runtime/2020-08-07/paginators-1.json
  594. #botocore/data/lexv2-runtime/2020-08-07/service-2.json
  595. #botocore/data/license-manager/2018-08-01/paginators-1.json
  596. #botocore/data/license-manager/2018-08-01/service-2.json
  597. #botocore/data/lightsail/2016-11-28/examples-1.json
  598. #botocore/data/lightsail/2016-11-28/paginators-1.json
  599. #botocore/data/lightsail/2016-11-28/service-2.json
  600. #botocore/data/location/2020-11-19/paginators-1.json
  601. #botocore/data/location/2020-11-19/service-2.json
  602. #botocore/data/logs/2014-03-28/examples-1.json
  603. #botocore/data/logs/2014-03-28/paginators-1.json
  604. #botocore/data/logs/2014-03-28/service-2.json
  605. #botocore/data/lookoutequipment/2020-12-15/paginators-1.json
  606. #botocore/data/lookoutequipment/2020-12-15/service-2.json
  607. #botocore/data/lookoutmetrics/2017-07-25/paginators-1.json
  608. #botocore/data/lookoutmetrics/2017-07-25/service-2.json
  609. #botocore/data/lookoutvision/2020-11-20/paginators-1.json
  610. #botocore/data/lookoutvision/2020-11-20/service-2.json
  611. #botocore/data/machinelearning/2014-12-12/examples-1.json
  612. #botocore/data/machinelearning/2014-12-12/paginators-1.json
  613. #botocore/data/machinelearning/2014-12-12/service-2.json
  614. #botocore/data/machinelearning/2014-12-12/waiters-2.json
  615. #botocore/data/macie/2017-12-19/examples-1.json
  616. #botocore/data/macie/2017-12-19/paginators-1.json
  617. #botocore/data/macie/2017-12-19/service-2.json
  618. #botocore/data/macie2/2020-01-01/paginators-1.json
  619. #botocore/data/macie2/2020-01-01/service-2.json
  620. #botocore/data/managedblockchain/2018-09-24/paginators-1.json
  621. #botocore/data/managedblockchain/2018-09-24/service-2.json
  622. #botocore/data/marketplace-catalog/2018-09-17/paginators-1.json
  623. #botocore/data/marketplace-catalog/2018-09-17/service-2.json
  624. #botocore/data/marketplace-entitlement/2017-01-11/examples-1.json
  625. #botocore/data/marketplace-entitlement/2017-01-11/paginators-1.json
  626. #botocore/data/marketplace-entitlement/2017-01-11/service-2.json
  627. #botocore/data/marketplacecommerceanalytics/2015-07-01/examples-1.json
  628. #botocore/data/marketplacecommerceanalytics/2015-07-01/paginators-1.json
  629. #botocore/data/marketplacecommerceanalytics/2015-07-01/service-2.json
  630. #botocore/data/mediaconnect/2018-11-14/paginators-1.json
  631. #botocore/data/mediaconnect/2018-11-14/service-2.json
  632. #botocore/data/mediaconnect/2018-11-14/waiters-2.json
  633. #botocore/data/mediaconvert/2017-08-29/paginators-1.json
  634. #botocore/data/mediaconvert/2017-08-29/service-2.json
  635. #botocore/data/medialive/2017-10-14/paginators-1.json
  636. #botocore/data/medialive/2017-10-14/service-2.json
  637. #botocore/data/medialive/2017-10-14/waiters-2.json
  638. #botocore/data/mediapackage-vod/2018-11-07/paginators-1.json
  639. #botocore/data/mediapackage-vod/2018-11-07/service-2.json
  640. #botocore/data/mediapackage/2017-10-12/paginators-1.json
  641. #botocore/data/mediapackage/2017-10-12/service-2.json
  642. #botocore/data/mediastore-data/2017-09-01/examples-1.json
  643. #botocore/data/mediastore-data/2017-09-01/paginators-1.json
  644. #botocore/data/mediastore-data/2017-09-01/service-2.json
  645. #botocore/data/mediastore/2017-09-01/examples-1.json
  646. #botocore/data/mediastore/2017-09-01/paginators-1.json
  647. #botocore/data/mediastore/2017-09-01/service-2.json
  648. #botocore/data/mediatailor/2018-04-23/paginators-1.json
  649. #botocore/data/mediatailor/2018-04-23/service-2.json
  650. #botocore/data/meteringmarketplace/2016-01-14/examples-1.json
  651. #botocore/data/meteringmarketplace/2016-01-14/paginators-1.json
  652. #botocore/data/meteringmarketplace/2016-01-14/service-2.json
  653. #botocore/data/mgh/2017-05-31/examples-1.json
  654. #botocore/data/mgh/2017-05-31/paginators-1.json
  655. #botocore/data/mgh/2017-05-31/service-2.json
  656. #botocore/data/mgn/2020-02-26/paginators-1.json
  657. #botocore/data/mgn/2020-02-26/service-2.json
  658. #botocore/data/migrationhub-config/2019-06-30/paginators-1.json
  659. #botocore/data/migrationhub-config/2019-06-30/service-2.json
  660. #botocore/data/mobile/2017-07-01/examples-1.json
  661. #botocore/data/mobile/2017-07-01/paginators-1.json
  662. #botocore/data/mobile/2017-07-01/service-2.json
  663. #botocore/data/mq/2017-11-27/paginators-1.json
  664. #botocore/data/mq/2017-11-27/service-2.json
  665. #botocore/data/mturk/2017-01-17/examples-1.json
  666. #botocore/data/mturk/2017-01-17/paginators-1.json
  667. #botocore/data/mturk/2017-01-17/service-2.json
  668. #botocore/data/mwaa/2020-07-01/paginators-1.json
  669. #botocore/data/mwaa/2020-07-01/service-2.json
  670. #botocore/data/neptune/2014-10-31/examples-1.json
  671. #botocore/data/neptune/2014-10-31/paginators-1.json
  672. #botocore/data/neptune/2014-10-31/service-2.json
  673. #botocore/data/neptune/2014-10-31/service-2.sdk-extras.json
  674. #botocore/data/neptune/2014-10-31/waiters-2.json
  675. #botocore/data/network-firewall/2020-11-12/paginators-1.json
  676. #botocore/data/network-firewall/2020-11-12/service-2.json
  677. #botocore/data/networkmanager/2019-07-05/paginators-1.json
  678. #botocore/data/networkmanager/2019-07-05/service-2.json
  679. #botocore/data/nimble/2020-08-01/paginators-1.json
  680. #botocore/data/nimble/2020-08-01/service-2.json
  681. #botocore/data/opsworks/2013-02-18/examples-1.json
  682. #botocore/data/opsworks/2013-02-18/paginators-1.json
  683. #botocore/data/opsworks/2013-02-18/service-2.json
  684. #botocore/data/opsworks/2013-02-18/waiters-2.json
  685. #botocore/data/opsworkscm/2016-11-01/examples-1.json
  686. #botocore/data/opsworkscm/2016-11-01/paginators-1.json
  687. #botocore/data/opsworkscm/2016-11-01/service-2.json
  688. #botocore/data/opsworkscm/2016-11-01/waiters-2.json
  689. #botocore/data/organizations/2016-11-28/examples-1.json
  690. #botocore/data/organizations/2016-11-28/paginators-1.json
  691. #botocore/data/organizations/2016-11-28/service-2.json
  692. #botocore/data/outposts/2019-12-03/paginators-1.json
  693. #botocore/data/outposts/2019-12-03/service-2.json
  694. #botocore/data/personalize-events/2018-03-22/paginators-1.json
  695. #botocore/data/personalize-events/2018-03-22/service-2.json
  696. #botocore/data/personalize-runtime/2018-05-22/paginators-1.json
  697. #botocore/data/personalize-runtime/2018-05-22/service-2.json
  698. #botocore/data/personalize/2018-05-22/paginators-1.json
  699. #botocore/data/personalize/2018-05-22/service-2.json
  700. #botocore/data/pi/2018-02-27/examples-1.json
  701. #botocore/data/pi/2018-02-27/paginators-1.json
  702. #botocore/data/pi/2018-02-27/service-2.json
  703. #botocore/data/pinpoint-email/2018-07-26/paginators-1.json
  704. #botocore/data/pinpoint-email/2018-07-26/service-2.json
  705. #botocore/data/pinpoint-sms-voice/2018-09-05/service-2.json
  706. #botocore/data/pinpoint/2016-12-01/examples-1.json
  707. #botocore/data/pinpoint/2016-12-01/service-2.json
  708. botocore/data/polly/2016-06-10/examples-1.json
  709. botocore/data/polly/2016-06-10/paginators-1.json
  710. botocore/data/polly/2016-06-10/service-2.json
  711. #botocore/data/pricing/2017-10-15/examples-1.json
  712. #botocore/data/pricing/2017-10-15/paginators-1.json
  713. #botocore/data/pricing/2017-10-15/service-2.json
  714. #botocore/data/proton/2020-07-20/paginators-1.json
  715. #botocore/data/proton/2020-07-20/service-2.json
  716. #botocore/data/proton/2020-07-20/waiters-2.json
  717. #botocore/data/qldb-session/2019-07-11/paginators-1.json
  718. #botocore/data/qldb-session/2019-07-11/service-2.json
  719. #botocore/data/qldb/2019-01-02/paginators-1.json
  720. #botocore/data/qldb/2019-01-02/service-2.json
  721. #botocore/data/quicksight/2018-04-01/paginators-1.json
  722. #botocore/data/quicksight/2018-04-01/paginators-1.sdk-extras.json
  723. #botocore/data/quicksight/2018-04-01/service-2.json
  724. #botocore/data/ram/2018-01-04/paginators-1.json
  725. #botocore/data/ram/2018-01-04/service-2.json
  726. #botocore/data/rds-data/2018-08-01/paginators-1.json
  727. #botocore/data/rds-data/2018-08-01/service-2.json
  728. #botocore/data/rds/2014-09-01/paginators-1.json
  729. #botocore/data/rds/2014-09-01/service-2.json
  730. #botocore/data/rds/2014-09-01/waiters-2.json
  731. #botocore/data/rds/2014-10-31/examples-1.json
  732. #botocore/data/rds/2014-10-31/paginators-1.json
  733. #botocore/data/rds/2014-10-31/service-2.json
  734. #botocore/data/rds/2014-10-31/service-2.sdk-extras.json
  735. #botocore/data/rds/2014-10-31/waiters-2.json
  736. #botocore/data/redshift-data/2019-12-20/paginators-1.json
  737. #botocore/data/redshift-data/2019-12-20/paginators-1.sdk-extras.json
  738. #botocore/data/redshift-data/2019-12-20/service-2.json
  739. #botocore/data/redshift/2012-12-01/examples-1.json
  740. #botocore/data/redshift/2012-12-01/paginators-1.json
  741. #botocore/data/redshift/2012-12-01/service-2.json
  742. #botocore/data/redshift/2012-12-01/waiters-2.json
  743. #botocore/data/rekognition/2016-06-27/examples-1.json
  744. #botocore/data/rekognition/2016-06-27/paginators-1.json
  745. #botocore/data/rekognition/2016-06-27/service-2.json
  746. #botocore/data/rekognition/2016-06-27/waiters-2.json
  747. #botocore/data/resource-groups/2017-11-27/examples-1.json
  748. #botocore/data/resource-groups/2017-11-27/paginators-1.json
  749. #botocore/data/resource-groups/2017-11-27/service-2.json
  750. #botocore/data/resourcegroupstaggingapi/2017-01-26/examples-1.json
  751. #botocore/data/resourcegroupstaggingapi/2017-01-26/paginators-1.json
  752. #botocore/data/resourcegroupstaggingapi/2017-01-26/service-2.json
  753. #botocore/data/robomaker/2018-06-29/paginators-1.json
  754. #botocore/data/robomaker/2018-06-29/service-2.json
  755. botocore/data/route53/2013-04-01/examples-1.json
  756. botocore/data/route53/2013-04-01/paginators-1.json
  757. botocore/data/route53/2013-04-01/service-2.json
  758. botocore/data/route53/2013-04-01/waiters-2.json
  759. botocore/data/route53domains/2014-05-15/examples-1.json
  760. botocore/data/route53domains/2014-05-15/paginators-1.json
  761. botocore/data/route53domains/2014-05-15/service-2.json
  762. botocore/data/route53resolver/2018-04-01/paginators-1.json
  763. botocore/data/route53resolver/2018-04-01/paginators-1.sdk-extras.json
  764. botocore/data/route53resolver/2018-04-01/service-2.json
  765. botocore/data/s3/2006-03-01/examples-1.json
  766. botocore/data/s3/2006-03-01/paginators-1.json
  767. botocore/data/s3/2006-03-01/service-2.json
  768. botocore/data/s3/2006-03-01/waiters-2.json
  769. #botocore/data/s3control/2018-08-20/paginators-1.json
  770. #botocore/data/s3control/2018-08-20/service-2.json
  771. #botocore/data/s3outposts/2017-07-25/paginators-1.json
  772. #botocore/data/s3outposts/2017-07-25/service-2.json
  773. #botocore/data/sagemaker-a2i-runtime/2019-11-07/paginators-1.json
  774. #botocore/data/sagemaker-a2i-runtime/2019-11-07/service-2.json
  775. #botocore/data/sagemaker-edge/2020-09-23/paginators-1.json
  776. #botocore/data/sagemaker-edge/2020-09-23/service-2.json
  777. #botocore/data/sagemaker-featurestore-runtime/2020-07-01/paginators-1.json
  778. #botocore/data/sagemaker-featurestore-runtime/2020-07-01/service-2.json
  779. #botocore/data/sagemaker-runtime/2017-05-13/examples-1.json
  780. #botocore/data/sagemaker-runtime/2017-05-13/paginators-1.json
  781. #botocore/data/sagemaker-runtime/2017-05-13/service-2.json
  782. #botocore/data/sagemaker/2017-07-24/examples-1.json
  783. #botocore/data/sagemaker/2017-07-24/paginators-1.json
  784. #botocore/data/sagemaker/2017-07-24/service-2.json
  785. #botocore/data/sagemaker/2017-07-24/waiters-2.json
  786. #botocore/data/savingsplans/2019-06-28/paginators-1.json
  787. #botocore/data/savingsplans/2019-06-28/service-2.json
  788. #botocore/data/schemas/2019-12-02/paginators-1.json
  789. #botocore/data/schemas/2019-12-02/service-2.json
  790. #botocore/data/schemas/2019-12-02/waiters-2.json
  791. #botocore/data/sdb/2009-04-15/paginators-1.json
  792. #botocore/data/sdb/2009-04-15/service-2.json
  793. botocore/data/secretsmanager/2017-10-17/examples-1.json
  794. botocore/data/secretsmanager/2017-10-17/paginators-1.json
  795. botocore/data/secretsmanager/2017-10-17/service-2.json
  796. botocore/data/secretsmanager/2017-10-17/service-2.sdk-extras.json
  797. #botocore/data/securityhub/2018-10-26/paginators-1.json
  798. #botocore/data/securityhub/2018-10-26/service-2.json
  799. #botocore/data/serverlessrepo/2017-09-08/paginators-1.json
  800. #botocore/data/serverlessrepo/2017-09-08/service-2.json
  801. #botocore/data/service-quotas/2019-06-24/paginators-1.json
  802. #botocore/data/service-quotas/2019-06-24/service-2.json
  803. #botocore/data/servicecatalog-appregistry/2020-06-24/paginators-1.json
  804. #botocore/data/servicecatalog-appregistry/2020-06-24/service-2.json
  805. #botocore/data/servicecatalog/2015-12-10/examples-1.json
  806. #botocore/data/servicecatalog/2015-12-10/paginators-1.json
  807. #botocore/data/servicecatalog/2015-12-10/service-2.json
  808. #botocore/data/servicediscovery/2017-03-14/examples-1.json
  809. #botocore/data/servicediscovery/2017-03-14/paginators-1.json
  810. #botocore/data/servicediscovery/2017-03-14/service-2.json
  811. #botocore/data/ses/2010-12-01/examples-1.json
  812. #botocore/data/ses/2010-12-01/paginators-1.json
  813. #botocore/data/ses/2010-12-01/service-2.json
  814. #botocore/data/ses/2010-12-01/waiters-2.json
  815. #botocore/data/sesv2/2019-09-27/paginators-1.json
  816. #botocore/data/sesv2/2019-09-27/service-2.json
  817. #botocore/data/shield/2016-06-02/examples-1.json
  818. #botocore/data/shield/2016-06-02/paginators-1.json
  819. #botocore/data/shield/2016-06-02/service-2.json
  820. #botocore/data/signer/2017-08-25/examples-1.json
  821. #botocore/data/signer/2017-08-25/paginators-1.json
  822. #botocore/data/signer/2017-08-25/service-2.json
  823. #botocore/data/signer/2017-08-25/waiters-2.json
  824. #botocore/data/sms-voice/2018-09-05/service-2.json
  825. #botocore/data/sms/2016-10-24/examples-1.json
  826. #botocore/data/sms/2016-10-24/paginators-1.json
  827. #botocore/data/sms/2016-10-24/service-2.json
  828. #botocore/data/snowball/2016-06-30/examples-1.json
  829. #botocore/data/snowball/2016-06-30/paginators-1.json
  830. #botocore/data/snowball/2016-06-30/service-2.json
  831. #botocore/data/sns/2010-03-31/examples-1.json
  832. #botocore/data/sns/2010-03-31/paginators-1.json
  833. #botocore/data/sns/2010-03-31/service-2.json
  834. botocore/data/sqs/2012-11-05/examples-1.json
  835. botocore/data/sqs/2012-11-05/paginators-1.json
  836. botocore/data/sqs/2012-11-05/service-2.json
  837. #botocore/data/ssm-contacts/2021-05-03/paginators-1.json
  838. #botocore/data/ssm-contacts/2021-05-03/service-2.json
  839. #botocore/data/ssm-incidents/2018-05-10/paginators-1.json
  840. #botocore/data/ssm-incidents/2018-05-10/service-2.json
  841. #botocore/data/ssm-incidents/2018-05-10/waiters-2.json
  842. #botocore/data/ssm/2014-11-06/examples-1.json
  843. #botocore/data/ssm/2014-11-06/paginators-1.json
  844. #botocore/data/ssm/2014-11-06/service-2.json
  845. #botocore/data/ssm/2014-11-06/waiters-2.json
  846. #botocore/data/sso-admin/2020-07-20/paginators-1.json
  847. #botocore/data/sso-admin/2020-07-20/service-2.json
  848. #botocore/data/sso-oidc/2019-06-10/paginators-1.json
  849. #botocore/data/sso-oidc/2019-06-10/service-2.json
  850. #botocore/data/sso/2019-06-10/paginators-1.json
  851. #botocore/data/sso/2019-06-10/service-2.json
  852. #botocore/data/stepfunctions/2016-11-23/examples-1.json
  853. #botocore/data/stepfunctions/2016-11-23/paginators-1.json
  854. #botocore/data/stepfunctions/2016-11-23/service-2.json
  855. #botocore/data/storagegateway/2013-06-30/examples-1.json
  856. #botocore/data/storagegateway/2013-06-30/paginators-1.json
  857. #botocore/data/storagegateway/2013-06-30/service-2.json
  858. botocore/data/sts/2011-06-15/examples-1.json
  859. botocore/data/sts/2011-06-15/paginators-1.json
  860. botocore/data/sts/2011-06-15/service-2.json
  861. #botocore/data/support/2013-04-15/examples-1.json
  862. #botocore/data/support/2013-04-15/paginators-1.json
  863. #botocore/data/support/2013-04-15/service-2.json
  864. #botocore/data/swf/2012-01-25/examples-1.json
  865. #botocore/data/swf/2012-01-25/paginators-1.json
  866. #botocore/data/swf/2012-01-25/service-2.json
  867. #botocore/data/synthetics/2017-10-11/paginators-1.json
  868. #botocore/data/synthetics/2017-10-11/service-2.json
  869. #botocore/data/textract/2018-06-27/paginators-1.json
  870. #botocore/data/textract/2018-06-27/service-2.json
  871. #botocore/data/timestream-query/2018-11-01/paginators-1.json
  872. #botocore/data/timestream-query/2018-11-01/service-2.json
  873. #botocore/data/timestream-write/2018-11-01/paginators-1.json
  874. #botocore/data/timestream-write/2018-11-01/service-2.json
  875. #botocore/data/transcribe/2017-10-26/examples-1.json
  876. #botocore/data/transcribe/2017-10-26/paginators-1.json
  877. #botocore/data/transcribe/2017-10-26/service-2.json
  878. #botocore/data/transfer/2018-11-05/paginators-1.json
  879. #botocore/data/transfer/2018-11-05/service-2.json
  880. botocore/data/translate/2017-07-01/examples-1.json
  881. botocore/data/translate/2017-07-01/paginators-1.json
  882. botocore/data/translate/2017-07-01/service-2.json
  883. #botocore/data/waf-regional/2016-11-28/examples-1.json
  884. #botocore/data/waf-regional/2016-11-28/paginators-1.json
  885. #botocore/data/waf-regional/2016-11-28/service-2.json
  886. #botocore/data/waf/2015-08-24/examples-1.json
  887. #botocore/data/waf/2015-08-24/paginators-1.json
  888. #botocore/data/waf/2015-08-24/service-2.json
  889. #botocore/data/wafv2/2019-07-29/paginators-1.json
  890. #botocore/data/wafv2/2019-07-29/service-2.json
  891. #botocore/data/wellarchitected/2020-03-31/paginators-1.json
  892. #botocore/data/wellarchitected/2020-03-31/service-2.json
  893. #botocore/data/workdocs/2016-05-01/examples-1.json
  894. #botocore/data/workdocs/2016-05-01/paginators-1.json
  895. #botocore/data/workdocs/2016-05-01/service-2.json
  896. #botocore/data/worklink/2018-09-25/paginators-1.json
  897. #botocore/data/worklink/2018-09-25/service-2.json
  898. #botocore/data/workmail/2017-10-01/examples-1.json
  899. #botocore/data/workmail/2017-10-01/paginators-1.json
  900. #botocore/data/workmail/2017-10-01/service-2.json
  901. #botocore/data/workmailmessageflow/2019-05-01/paginators-1.json
  902. #botocore/data/workmailmessageflow/2019-05-01/service-2.json
  903. #botocore/data/workspaces/2015-04-08/examples-1.json
  904. #botocore/data/workspaces/2015-04-08/paginators-1.json
  905. #botocore/data/workspaces/2015-04-08/service-2.json
  906. #botocore/data/xray/2016-04-12/examples-1.json
  907. #botocore/data/xray/2016-04-12/paginators-1.json
  908. #botocore/data/xray/2016-04-12/service-2.json
  909. )
  910. END()
  911. RECURSE_FOR_TESTS(
  912. tests
  913. )