aws-sdk-core 2.11.212 → 3.170.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (1183) hide show
  1. checksums.yaml +5 -5
  2. data/CHANGELOG.md +1589 -0
  3. data/LICENSE.txt +202 -0
  4. data/VERSION +1 -0
  5. data/lib/aws-defaults/default_configuration.rb +153 -0
  6. data/lib/aws-defaults/defaults_mode_config_resolver.rb +107 -0
  7. data/lib/aws-defaults.rb +3 -0
  8. data/lib/aws-sdk-core/arn.rb +105 -0
  9. data/lib/aws-sdk-core/arn_parser.rb +40 -0
  10. data/lib/aws-sdk-core/assume_role_credentials.rb +23 -7
  11. data/lib/aws-sdk-core/assume_role_web_identity_credentials.rb +108 -0
  12. data/lib/aws-sdk-core/async_client_stubs.rb +82 -0
  13. data/lib/aws-sdk-core/binary/decode_handler.rb +58 -0
  14. data/lib/aws-sdk-core/binary/encode_handler.rb +45 -0
  15. data/lib/aws-sdk-core/binary/event_builder.rb +124 -0
  16. data/lib/aws-sdk-core/binary/event_parser.rb +136 -0
  17. data/lib/aws-sdk-core/binary/event_stream_decoder.rb +64 -0
  18. data/lib/aws-sdk-core/binary/event_stream_encoder.rb +55 -0
  19. data/lib/aws-sdk-core/binary.rb +8 -0
  20. data/lib/aws-sdk-core/client_side_monitoring/publisher.rb +51 -0
  21. data/lib/aws-sdk-core/client_side_monitoring/request_metrics.rb +199 -0
  22. data/lib/aws-sdk-core/client_stubs.rb +31 -21
  23. data/lib/aws-sdk-core/credential_provider.rb +2 -29
  24. data/lib/aws-sdk-core/credential_provider_chain.rb +115 -35
  25. data/lib/aws-sdk-core/credentials.rb +2 -0
  26. data/lib/aws-sdk-core/deprecations.rb +17 -11
  27. data/lib/aws-sdk-core/eager_loader.rb +2 -0
  28. data/lib/aws-sdk-core/ec2_metadata.rb +238 -0
  29. data/lib/aws-sdk-core/ecs_credentials.rb +26 -11
  30. data/lib/aws-sdk-core/endpoint_cache.rb +16 -11
  31. data/lib/aws-sdk-core/endpoints/condition.rb +41 -0
  32. data/lib/aws-sdk-core/endpoints/endpoint.rb +17 -0
  33. data/lib/aws-sdk-core/endpoints/endpoint_rule.rb +75 -0
  34. data/lib/aws-sdk-core/endpoints/error_rule.rb +42 -0
  35. data/lib/aws-sdk-core/endpoints/function.rb +80 -0
  36. data/lib/aws-sdk-core/endpoints/matchers.rb +127 -0
  37. data/lib/aws-sdk-core/endpoints/reference.rb +31 -0
  38. data/lib/aws-sdk-core/endpoints/rule.rb +25 -0
  39. data/lib/aws-sdk-core/endpoints/rule_set.rb +52 -0
  40. data/lib/aws-sdk-core/endpoints/rules_provider.rb +37 -0
  41. data/lib/aws-sdk-core/endpoints/templater.rb +58 -0
  42. data/lib/aws-sdk-core/endpoints/tree_rule.rb +45 -0
  43. data/lib/aws-sdk-core/endpoints/url.rb +60 -0
  44. data/lib/aws-sdk-core/endpoints.rb +74 -0
  45. data/lib/aws-sdk-core/errors.rb +229 -31
  46. data/lib/aws-sdk-core/event_emitter.rb +64 -0
  47. data/lib/aws-sdk-core/ini_parser.rb +3 -0
  48. data/lib/aws-sdk-core/instance_profile_credentials.rb +231 -42
  49. data/lib/aws-sdk-core/json/builder.rb +6 -2
  50. data/lib/aws-sdk-core/json/error_handler.rb +31 -3
  51. data/lib/aws-sdk-core/json/handler.rb +24 -3
  52. data/lib/aws-sdk-core/json/json_engine.rb +12 -8
  53. data/lib/aws-sdk-core/json/oj_engine.rb +35 -6
  54. data/lib/aws-sdk-core/json/parser.rb +11 -1
  55. data/lib/aws-sdk-core/json.rb +15 -33
  56. data/lib/aws-sdk-core/log/formatter.rb +16 -4
  57. data/lib/aws-sdk-core/log/handler.rb +2 -0
  58. data/lib/aws-sdk-core/log/param_filter.rb +41 -15
  59. data/lib/aws-sdk-core/log/param_formatter.rb +2 -0
  60. data/lib/aws-sdk-core/pageable_response.rb +119 -47
  61. data/lib/aws-sdk-core/pager.rb +35 -25
  62. data/lib/aws-sdk-core/param_converter.rb +5 -3
  63. data/lib/aws-sdk-core/param_validator.rb +109 -26
  64. data/lib/aws-sdk-core/plugins/api_key.rb +56 -0
  65. data/lib/aws-sdk-core/plugins/apig_authorizer_token.rb +32 -0
  66. data/lib/aws-sdk-core/plugins/apig_credentials_configuration.rb +36 -0
  67. data/lib/aws-sdk-core/plugins/apig_user_agent.rb +39 -0
  68. data/lib/aws-sdk-core/plugins/bearer_authorization.rb +67 -0
  69. data/lib/aws-sdk-core/plugins/checksum_algorithm.rb +340 -0
  70. data/lib/aws-sdk-core/plugins/client_metrics_plugin.rb +283 -0
  71. data/lib/aws-sdk-core/plugins/client_metrics_send_plugin.rb +86 -0
  72. data/lib/aws-sdk-core/plugins/credentials_configuration.rb +105 -0
  73. data/lib/aws-sdk-core/plugins/defaults_mode.rb +40 -0
  74. data/lib/aws-sdk-core/plugins/endpoint_discovery.rb +58 -53
  75. data/lib/aws-sdk-core/plugins/endpoint_pattern.rb +17 -14
  76. data/lib/aws-sdk-core/plugins/event_stream_configuration.rb +32 -0
  77. data/lib/aws-sdk-core/plugins/global_configuration.rb +21 -10
  78. data/lib/aws-sdk-core/plugins/helpful_socket_errors.rb +2 -0
  79. data/lib/aws-sdk-core/plugins/http_checksum.rb +64 -0
  80. data/lib/aws-sdk-core/plugins/idempotency_token.rb +3 -2
  81. data/lib/aws-sdk-core/plugins/invocation_id.rb +35 -0
  82. data/lib/aws-sdk-core/plugins/jsonvalue_converter.rb +36 -6
  83. data/lib/aws-sdk-core/plugins/logging.rb +20 -18
  84. data/lib/aws-sdk-core/plugins/param_converter.rb +11 -5
  85. data/lib/aws-sdk-core/plugins/param_validator.rb +10 -5
  86. data/lib/aws-sdk-core/plugins/protocols/api_gateway.rb +29 -0
  87. data/lib/aws-sdk-core/plugins/protocols/ec2.rb +4 -1
  88. data/lib/aws-sdk-core/plugins/protocols/json_rpc.rb +15 -12
  89. data/lib/aws-sdk-core/plugins/protocols/query.rb +4 -2
  90. data/lib/aws-sdk-core/plugins/protocols/rest_json.rb +18 -1
  91. data/lib/aws-sdk-core/plugins/protocols/rest_xml.rb +2 -0
  92. data/lib/aws-sdk-core/plugins/recursion_detection.rb +38 -0
  93. data/lib/aws-sdk-core/plugins/regional_endpoint.rb +99 -28
  94. data/lib/aws-sdk-core/plugins/response_paging.rb +8 -19
  95. data/lib/aws-sdk-core/plugins/retries/client_rate_limiter.rb +139 -0
  96. data/lib/aws-sdk-core/plugins/retries/clock_skew.rb +100 -0
  97. data/lib/aws-sdk-core/plugins/retries/error_inspector.rb +147 -0
  98. data/lib/aws-sdk-core/plugins/retries/retry_quota.rb +59 -0
  99. data/lib/aws-sdk-core/plugins/retry_errors.rb +346 -97
  100. data/lib/aws-sdk-core/plugins/sign.rb +200 -0
  101. data/lib/aws-sdk-core/plugins/signature_v2.rb +54 -0
  102. data/lib/aws-sdk-core/plugins/signature_v4.rb +151 -0
  103. data/lib/aws-sdk-core/plugins/stub_responses.rb +44 -18
  104. data/lib/aws-sdk-core/plugins/transfer_encoding.rb +53 -0
  105. data/lib/aws-sdk-core/plugins/user_agent.rb +25 -10
  106. data/lib/aws-sdk-core/process_credentials.rb +79 -0
  107. data/lib/aws-sdk-core/query/ec2_param_builder.rb +11 -3
  108. data/lib/aws-sdk-core/query/handler.rb +22 -16
  109. data/lib/aws-sdk-core/query/param.rb +2 -0
  110. data/lib/aws-sdk-core/query/param_builder.rb +12 -4
  111. data/lib/aws-sdk-core/query/param_list.rb +2 -0
  112. data/lib/aws-sdk-core/query.rb +7 -0
  113. data/lib/aws-sdk-core/refreshing_credentials.rb +45 -12
  114. data/lib/aws-sdk-core/refreshing_token.rb +71 -0
  115. data/lib/aws-sdk-core/resources/collection.rb +123 -0
  116. data/lib/aws-sdk-core/rest/handler.rb +4 -1
  117. data/lib/aws-sdk-core/rest/request/body.rb +21 -1
  118. data/lib/aws-sdk-core/rest/request/builder.rb +4 -1
  119. data/lib/aws-sdk-core/rest/request/endpoint.rb +13 -6
  120. data/lib/aws-sdk-core/rest/request/headers.rb +26 -6
  121. data/lib/aws-sdk-core/rest/request/querystring_builder.rb +17 -2
  122. data/lib/aws-sdk-core/rest/response/body.rb +16 -1
  123. data/lib/aws-sdk-core/rest/response/headers.rb +8 -3
  124. data/lib/aws-sdk-core/rest/response/parser.rb +20 -14
  125. data/lib/aws-sdk-core/rest/response/status_code.rb +2 -0
  126. data/lib/aws-sdk-core/rest.rb +12 -0
  127. data/lib/aws-sdk-core/shared_config.rb +272 -72
  128. data/lib/aws-sdk-core/shared_credentials.rb +11 -1
  129. data/lib/aws-sdk-core/sso_credentials.rb +172 -0
  130. data/lib/aws-sdk-core/sso_token_provider.rb +135 -0
  131. data/lib/aws-sdk-core/static_token_provider.rb +14 -0
  132. data/lib/aws-sdk-core/structure.rb +39 -17
  133. data/lib/aws-sdk-core/stubbing/data_applicator.rb +3 -1
  134. data/lib/aws-sdk-core/stubbing/empty_stub.rb +12 -3
  135. data/lib/aws-sdk-core/stubbing/protocols/api_gateway.rb +10 -0
  136. data/lib/aws-sdk-core/stubbing/protocols/ec2.rb +3 -1
  137. data/lib/aws-sdk-core/stubbing/protocols/json.rb +3 -1
  138. data/lib/aws-sdk-core/stubbing/protocols/query.rb +4 -2
  139. data/lib/aws-sdk-core/stubbing/protocols/rest.rb +120 -2
  140. data/lib/aws-sdk-core/stubbing/protocols/rest_json.rb +8 -2
  141. data/lib/aws-sdk-core/stubbing/protocols/rest_xml.rb +11 -7
  142. data/lib/aws-sdk-core/stubbing/stub_data.rb +18 -3
  143. data/lib/aws-sdk-core/stubbing/xml_error.rb +2 -0
  144. data/lib/aws-sdk-core/token.rb +31 -0
  145. data/lib/aws-sdk-core/token_provider.rb +15 -0
  146. data/lib/aws-sdk-core/token_provider_chain.rb +51 -0
  147. data/lib/aws-sdk-core/type_builder.rb +2 -0
  148. data/lib/aws-sdk-core/util.rb +72 -0
  149. data/lib/aws-sdk-core/waiters/errors.rb +2 -0
  150. data/lib/aws-sdk-core/waiters/poller.rb +7 -9
  151. data/lib/aws-sdk-core/waiters/waiter.rb +5 -2
  152. data/lib/aws-sdk-core/waiters.rb +5 -0
  153. data/lib/aws-sdk-core/xml/builder.rb +15 -7
  154. data/lib/aws-sdk-core/xml/default_list.rb +2 -0
  155. data/lib/aws-sdk-core/xml/default_map.rb +2 -0
  156. data/lib/aws-sdk-core/xml/doc_builder.rb +15 -4
  157. data/lib/aws-sdk-core/xml/error_handler.rb +37 -6
  158. data/lib/aws-sdk-core/xml/parser/engines/libxml.rb +2 -0
  159. data/lib/aws-sdk-core/xml/parser/engines/nokogiri.rb +2 -0
  160. data/lib/aws-sdk-core/xml/parser/engines/oga.rb +4 -0
  161. data/lib/aws-sdk-core/xml/parser/engines/ox.rb +3 -1
  162. data/lib/aws-sdk-core/xml/parser/engines/rexml.rb +4 -1
  163. data/lib/aws-sdk-core/xml/parser/frame.rb +31 -6
  164. data/lib/aws-sdk-core/xml/parser/parsing_error.rb +2 -0
  165. data/lib/aws-sdk-core/xml/parser/stack.rb +2 -0
  166. data/lib/aws-sdk-core/xml/parser.rb +8 -11
  167. data/lib/aws-sdk-core/xml.rb +11 -0
  168. data/lib/aws-sdk-core.rb +115 -532
  169. data/lib/aws-sdk-sso/client.rb +610 -0
  170. data/lib/aws-sdk-sso/client_api.rb +190 -0
  171. data/lib/aws-sdk-sso/customizations.rb +1 -0
  172. data/lib/aws-sdk-sso/endpoint_parameters.rb +66 -0
  173. data/lib/aws-sdk-sso/endpoint_provider.rb +51 -0
  174. data/lib/aws-sdk-sso/endpoints.rb +71 -0
  175. data/lib/aws-sdk-sso/errors.rb +102 -0
  176. data/lib/aws-sdk-sso/plugins/endpoints.rb +76 -0
  177. data/lib/aws-sdk-sso/resource.rb +26 -0
  178. data/lib/aws-sdk-sso/types.rb +317 -0
  179. data/lib/aws-sdk-sso.rb +59 -0
  180. data/lib/aws-sdk-ssooidc/client.rb +606 -0
  181. data/lib/aws-sdk-ssooidc/client_api.rb +216 -0
  182. data/lib/aws-sdk-ssooidc/customizations.rb +1 -0
  183. data/lib/aws-sdk-ssooidc/endpoint_parameters.rb +66 -0
  184. data/lib/aws-sdk-ssooidc/endpoint_provider.rb +51 -0
  185. data/lib/aws-sdk-ssooidc/endpoints.rb +57 -0
  186. data/lib/aws-sdk-ssooidc/errors.rb +290 -0
  187. data/lib/aws-sdk-ssooidc/plugins/endpoints.rb +74 -0
  188. data/lib/aws-sdk-ssooidc/resource.rb +26 -0
  189. data/lib/aws-sdk-ssooidc/types.rb +502 -0
  190. data/lib/aws-sdk-ssooidc.rb +59 -0
  191. data/lib/aws-sdk-sts/client.rb +2343 -0
  192. data/lib/aws-sdk-sts/client_api.rb +344 -0
  193. data/lib/aws-sdk-sts/customizations.rb +4 -0
  194. data/lib/aws-sdk-sts/endpoint_parameters.rb +78 -0
  195. data/lib/aws-sdk-sts/endpoint_provider.rb +109 -0
  196. data/lib/aws-sdk-sts/endpoints.rb +135 -0
  197. data/lib/aws-sdk-sts/errors.rb +166 -0
  198. data/lib/aws-sdk-sts/plugins/endpoints.rb +84 -0
  199. data/lib/aws-sdk-sts/plugins/sts_regional_endpoints.rb +38 -0
  200. data/lib/aws-sdk-sts/presigner.rb +73 -0
  201. data/lib/aws-sdk-sts/resource.rb +26 -0
  202. data/lib/aws-sdk-sts/types.rb +1566 -0
  203. data/lib/aws-sdk-sts.rb +59 -0
  204. data/lib/seahorse/client/async_base.rb +51 -0
  205. data/lib/seahorse/client/async_response.rb +64 -0
  206. data/lib/seahorse/client/base.rb +8 -9
  207. data/lib/seahorse/client/block_io.rb +6 -2
  208. data/lib/seahorse/client/configuration.rb +12 -4
  209. data/lib/seahorse/client/events.rb +3 -1
  210. data/lib/seahorse/client/h2/connection.rb +247 -0
  211. data/lib/seahorse/client/h2/handler.rb +152 -0
  212. data/lib/seahorse/client/handler.rb +2 -0
  213. data/lib/seahorse/client/handler_builder.rb +2 -0
  214. data/lib/seahorse/client/handler_list.rb +2 -0
  215. data/lib/seahorse/client/handler_list_entry.rb +6 -4
  216. data/lib/seahorse/client/http/async_response.rb +44 -0
  217. data/lib/seahorse/client/http/headers.rb +2 -0
  218. data/lib/seahorse/client/http/request.rb +5 -3
  219. data/lib/seahorse/client/http/response.rb +18 -11
  220. data/lib/seahorse/client/logging/formatter.rb +8 -2
  221. data/lib/seahorse/client/logging/handler.rb +4 -0
  222. data/lib/seahorse/client/managed_file.rb +2 -0
  223. data/lib/seahorse/client/net_http/connection_pool.rb +46 -27
  224. data/lib/seahorse/client/net_http/handler.rb +29 -7
  225. data/lib/seahorse/client/net_http/patches.rb +18 -79
  226. data/lib/seahorse/client/networking_error.rb +30 -0
  227. data/lib/seahorse/client/plugin.rb +69 -6
  228. data/lib/seahorse/client/plugin_list.rb +2 -0
  229. data/lib/seahorse/client/plugins/content_length.rb +14 -3
  230. data/lib/seahorse/client/plugins/endpoint.rb +16 -10
  231. data/lib/seahorse/client/plugins/h2.rb +69 -0
  232. data/lib/seahorse/client/plugins/logging.rb +19 -19
  233. data/lib/seahorse/client/plugins/net_http.rb +58 -14
  234. data/lib/seahorse/client/plugins/operation_methods.rb +2 -0
  235. data/lib/seahorse/client/plugins/raise_response_errors.rb +6 -4
  236. data/lib/seahorse/client/plugins/request_callback.rb +110 -0
  237. data/lib/seahorse/client/plugins/response_target.rb +28 -10
  238. data/lib/seahorse/client/request.rb +2 -0
  239. data/lib/seahorse/client/request_context.rb +7 -0
  240. data/lib/seahorse/client/response.rb +5 -5
  241. data/lib/seahorse/model/api.rb +39 -0
  242. data/lib/seahorse/model/authorizer.rb +23 -0
  243. data/lib/seahorse/model/operation.rb +19 -0
  244. data/lib/seahorse/model/shapes.rb +71 -2
  245. data/lib/seahorse/util.rb +13 -23
  246. data/lib/seahorse/version.rb +2 -0
  247. data/lib/seahorse.rb +63 -60
  248. metadata +177 -951
  249. data/apis/AWSMigrationHub/2017-05-31/api-2.json +0 -838
  250. data/apis/AWSMigrationHub/2017-05-31/examples-1.json +0 -5
  251. data/apis/AWSMigrationHub/2017-05-31/paginators-1.json +0 -4
  252. data/apis/acm/2015-12-08/api-2.json +0 -808
  253. data/apis/acm/2015-12-08/examples-1.json +0 -5
  254. data/apis/acm/2015-12-08/paginators-1.json +0 -10
  255. data/apis/acm/2015-12-08/smoke.json +0 -18
  256. data/apis/acm/2015-12-08/waiters-2.json +0 -35
  257. data/apis/acm-pca/2017-08-22/api-2.json +0 -941
  258. data/apis/acm-pca/2017-08-22/examples-1.json +0 -5
  259. data/apis/acm-pca/2017-08-22/paginators-1.json +0 -10
  260. data/apis/acm-pca/2017-08-22/waiters-2.json +0 -61
  261. data/apis/alexaforbusiness/2017-11-09/api-2.json +0 -3104
  262. data/apis/alexaforbusiness/2017-11-09/examples-1.json +0 -5
  263. data/apis/alexaforbusiness/2017-11-09/paginators-1.json +0 -79
  264. data/apis/amplify/2017-07-25/api-2.json +0 -1453
  265. data/apis/amplify/2017-07-25/examples-1.json +0 -5
  266. data/apis/amplify/2017-07-25/paginators-1.json +0 -4
  267. data/apis/apigateway/2015-07-09/api-2.json +0 -5351
  268. data/apis/apigateway/2015-07-09/examples-1.json +0 -5
  269. data/apis/apigateway/2015-07-09/paginators-1.json +0 -76
  270. data/apis/apigateway/2015-07-09/smoke.json +0 -20
  271. data/apis/apigatewaymanagementapi/2018-11-29/api-2.json +0 -96
  272. data/apis/apigatewaymanagementapi/2018-11-29/paginators-1.json +0 -3
  273. data/apis/apigatewayv2/2018-11-29/api-2.json +0 -5531
  274. data/apis/apigatewayv2/2018-11-29/paginators-1.json +0 -3
  275. data/apis/application-autoscaling/2016-02-06/api-2.json +0 -766
  276. data/apis/application-autoscaling/2016-02-06/examples-1.json +0 -257
  277. data/apis/application-autoscaling/2016-02-06/paginators-1.json +0 -22
  278. data/apis/application-autoscaling/2016-02-06/smoke.json +0 -13
  279. data/apis/appmesh/2018-10-01/api-2.json +0 -1972
  280. data/apis/appmesh/2018-10-01/examples-1.json +0 -4
  281. data/apis/appmesh/2018-10-01/paginators-1.json +0 -28
  282. data/apis/appstream/2016-12-01/api-2.json +0 -2171
  283. data/apis/appstream/2016-12-01/examples-1.json +0 -5
  284. data/apis/appstream/2016-12-01/paginators-1.json +0 -14
  285. data/apis/appstream/2016-12-01/smoke.json +0 -11
  286. data/apis/appstream/2016-12-01/waiters-2.json +0 -55
  287. data/apis/appsync/2017-07-25/api-2.json +0 -1812
  288. data/apis/appsync/2017-07-25/examples-1.json +0 -5
  289. data/apis/appsync/2017-07-25/paginators-1.json +0 -4
  290. data/apis/athena/2017-05-18/api-2.json +0 -626
  291. data/apis/athena/2017-05-18/examples-1.json +0 -5
  292. data/apis/athena/2017-05-18/paginators-1.json +0 -19
  293. data/apis/athena/2017-05-18/smoke.json +0 -11
  294. data/apis/autoscaling/2011-01-01/api-2.json +0 -2450
  295. data/apis/autoscaling/2011-01-01/examples-1.json +0 -1396
  296. data/apis/autoscaling/2011-01-01/paginators-1.json +0 -52
  297. data/apis/autoscaling/2011-01-01/resources-1.json +0 -1624
  298. data/apis/autoscaling/2011-01-01/smoke.json +0 -20
  299. data/apis/autoscaling/2011-01-01/waiters-2.json +0 -62
  300. data/apis/autoscaling-plans/2018-01-06/api-2.json +0 -659
  301. data/apis/autoscaling-plans/2018-01-06/examples-1.json +0 -5
  302. data/apis/autoscaling-plans/2018-01-06/paginators-1.json +0 -4
  303. data/apis/backup/2018-11-15/api-2.json +0 -2150
  304. data/apis/backup/2018-11-15/examples-1.json +0 -5
  305. data/apis/backup/2018-11-15/paginators-1.json +0 -59
  306. data/apis/batch/2016-08-10/api-2.json +0 -1072
  307. data/apis/batch/2016-08-10/examples-1.json +0 -589
  308. data/apis/batch/2016-08-10/paginators-1.json +0 -4
  309. data/apis/batch/2016-08-10/smoke.json +0 -11
  310. data/apis/budgets/2016-10-20/api-2.json +0 -801
  311. data/apis/budgets/2016-10-20/examples-1.json +0 -5
  312. data/apis/budgets/2016-10-20/paginators-1.json +0 -4
  313. data/apis/ce/2017-10-25/api-2.json +0 -840
  314. data/apis/ce/2017-10-25/examples-1.json +0 -5
  315. data/apis/ce/2017-10-25/paginators-1.json +0 -4
  316. data/apis/chime/2018-05-01/api-2.json +0 -939
  317. data/apis/chime/2018-05-01/examples-1.json +0 -5
  318. data/apis/chime/2018-05-01/paginators-1.json +0 -14
  319. data/apis/cloud9/2017-09-23/api-2.json +0 -528
  320. data/apis/cloud9/2017-09-23/examples-1.json +0 -308
  321. data/apis/cloud9/2017-09-23/paginators-1.json +0 -14
  322. data/apis/clouddirectory/2016-05-10/api-2.json +0 -4244
  323. data/apis/clouddirectory/2016-05-10/examples-1.json +0 -5
  324. data/apis/clouddirectory/2016-05-10/paginators-1.json +0 -94
  325. data/apis/clouddirectory/2017-01-11/api-2.json +0 -4321
  326. data/apis/clouddirectory/2017-01-11/examples-1.json +0 -5
  327. data/apis/clouddirectory/2017-01-11/paginators-1.json +0 -99
  328. data/apis/cloudformation/2010-05-15/api-2.json +0 -2686
  329. data/apis/cloudformation/2010-05-15/examples-1.json +0 -5
  330. data/apis/cloudformation/2010-05-15/paginators-1.json +0 -42
  331. data/apis/cloudformation/2010-05-15/resources-1.json +0 -211
  332. data/apis/cloudformation/2010-05-15/waiters-2.json +0 -182
  333. data/apis/cloudfront/2016-01-28/api-2.json +0 -2219
  334. data/apis/cloudfront/2016-01-28/examples-1.json +0 -5
  335. data/apis/cloudfront/2016-01-28/paginators-1.json +0 -32
  336. data/apis/cloudfront/2016-01-28/waiters-2.json +0 -47
  337. data/apis/cloudfront/2016-08-01/api-2.json +0 -2548
  338. data/apis/cloudfront/2016-08-01/examples-1.json +0 -5
  339. data/apis/cloudfront/2016-08-01/paginators-1.json +0 -32
  340. data/apis/cloudfront/2016-08-01/waiters-2.json +0 -47
  341. data/apis/cloudfront/2016-08-20/api-2.json +0 -2586
  342. data/apis/cloudfront/2016-08-20/paginators-1.json +0 -32
  343. data/apis/cloudfront/2016-08-20/waiters-2.json +0 -47
  344. data/apis/cloudfront/2016-09-07/api-2.json +0 -2596
  345. data/apis/cloudfront/2016-09-07/examples-1.json +0 -5
  346. data/apis/cloudfront/2016-09-07/paginators-1.json +0 -32
  347. data/apis/cloudfront/2016-09-07/waiters-2.json +0 -47
  348. data/apis/cloudfront/2016-09-29/api-2.json +0 -2599
  349. data/apis/cloudfront/2016-09-29/examples-1.json +0 -5
  350. data/apis/cloudfront/2016-09-29/paginators-1.json +0 -32
  351. data/apis/cloudfront/2016-09-29/waiters-2.json +0 -47
  352. data/apis/cloudfront/2016-11-25/api-2.json +0 -2665
  353. data/apis/cloudfront/2016-11-25/examples-1.json +0 -5
  354. data/apis/cloudfront/2016-11-25/paginators-1.json +0 -32
  355. data/apis/cloudfront/2016-11-25/waiters-2.json +0 -47
  356. data/apis/cloudfront/2017-03-25/api-2.json +0 -2726
  357. data/apis/cloudfront/2017-03-25/examples-1.json +0 -83
  358. data/apis/cloudfront/2017-03-25/paginators-1.json +0 -32
  359. data/apis/cloudfront/2017-03-25/waiters-2.json +0 -47
  360. data/apis/cloudfront/2017-10-30/api-2.json +0 -3906
  361. data/apis/cloudfront/2017-10-30/examples-1.json +0 -5
  362. data/apis/cloudfront/2017-10-30/paginators-1.json +0 -32
  363. data/apis/cloudfront/2017-10-30/smoke.json +0 -20
  364. data/apis/cloudfront/2017-10-30/waiters-2.json +0 -47
  365. data/apis/cloudfront/2018-06-18/api-2.json +0 -3907
  366. data/apis/cloudfront/2018-06-18/examples-1.json +0 -5
  367. data/apis/cloudfront/2018-06-18/paginators-1.json +0 -32
  368. data/apis/cloudfront/2018-06-18/smoke.json +0 -20
  369. data/apis/cloudfront/2018-06-18/waiters-2.json +0 -47
  370. data/apis/cloudfront/2018-11-05/api-2.json +0 -4004
  371. data/apis/cloudfront/2018-11-05/examples-1.json +0 -5
  372. data/apis/cloudfront/2018-11-05/paginators-1.json +0 -32
  373. data/apis/cloudfront/2018-11-05/smoke.json +0 -20
  374. data/apis/cloudfront/2018-11-05/waiters-2.json +0 -47
  375. data/apis/cloudhsm/2014-05-30/api-2.json +0 -879
  376. data/apis/cloudhsm/2014-05-30/examples-1.json +0 -5
  377. data/apis/cloudhsm/2014-05-30/paginators-1.json +0 -4
  378. data/apis/cloudhsmv2/2017-04-28/api-2.json +0 -718
  379. data/apis/cloudhsmv2/2017-04-28/examples-1.json +0 -5
  380. data/apis/cloudhsmv2/2017-04-28/paginators-1.json +0 -19
  381. data/apis/cloudhsmv2/2017-04-28/smoke.json +0 -18
  382. data/apis/cloudsearch/2013-01-01/api-2.json +0 -2002
  383. data/apis/cloudsearch/2013-01-01/paginators-1.json +0 -20
  384. data/apis/cloudsearchdomain/2013-01-01/api-2.json +0 -374
  385. data/apis/cloudsearchdomain/2013-01-01/examples-1.json +0 -5
  386. data/apis/cloudtrail/2013-11-01/api-2.json +0 -978
  387. data/apis/cloudtrail/2013-11-01/examples-1.json +0 -5
  388. data/apis/cloudtrail/2013-11-01/paginators-1.json +0 -13
  389. data/apis/cloudtrail/2013-11-01/smoke.json +0 -18
  390. data/apis/codebuild/2016-10-06/api-2.json +0 -1211
  391. data/apis/codebuild/2016-10-06/examples-1.json +0 -281
  392. data/apis/codebuild/2016-10-06/paginators-1.json +0 -4
  393. data/apis/codebuild/2016-10-06/smoke.json +0 -11
  394. data/apis/codecommit/2015-04-13/api-2.json +0 -2842
  395. data/apis/codecommit/2015-04-13/examples-1.json +0 -5
  396. data/apis/codecommit/2015-04-13/paginators-1.json +0 -39
  397. data/apis/codecommit/2015-04-13/smoke.json +0 -18
  398. data/apis/codedeploy/2014-10-06/api-2.json +0 -3062
  399. data/apis/codedeploy/2014-10-06/examples-1.json +0 -5
  400. data/apis/codedeploy/2014-10-06/paginators-1.json +0 -34
  401. data/apis/codedeploy/2014-10-06/smoke.json +0 -18
  402. data/apis/codedeploy/2014-10-06/waiters-2.json +0 -30
  403. data/apis/codepipeline/2015-07-09/api-2.json +0 -2085
  404. data/apis/codepipeline/2015-07-09/examples-1.json +0 -5
  405. data/apis/codepipeline/2015-07-09/paginators-1.json +0 -4
  406. data/apis/codepipeline/2015-07-09/smoke.json +0 -18
  407. data/apis/codestar/2017-04-19/api-2.json +0 -1033
  408. data/apis/codestar/2017-04-19/examples-1.json +0 -5
  409. data/apis/codestar/2017-04-19/paginators-1.json +0 -4
  410. data/apis/codestar/2017-04-19/smoke.json +0 -11
  411. data/apis/cognito-identity/2014-06-30/api-2.json +0 -943
  412. data/apis/cognito-identity/2014-06-30/examples-1.json +0 -5
  413. data/apis/cognito-identity/2014-06-30/paginators-1.json +0 -4
  414. data/apis/cognito-idp/2016-04-18/api-2.json +0 -5194
  415. data/apis/cognito-idp/2016-04-18/examples-1.json +0 -5
  416. data/apis/cognito-idp/2016-04-18/paginators-1.json +0 -4
  417. data/apis/cognito-idp/2016-04-18/smoke.json +0 -20
  418. data/apis/cognito-sync/2014-06-30/api-2.json +0 -1875
  419. data/apis/comprehend/2017-11-27/api-2.json +0 -2106
  420. data/apis/comprehend/2017-11-27/examples-1.json +0 -5
  421. data/apis/comprehend/2017-11-27/paginators-1.json +0 -29
  422. data/apis/comprehendmedical/2018-10-30/api-2.json +0 -248
  423. data/apis/comprehendmedical/2018-10-30/examples-1.json +0 -5
  424. data/apis/comprehendmedical/2018-10-30/paginators-1.json +0 -4
  425. data/apis/config/2014-11-12/api-2.json +0 -2477
  426. data/apis/config/2014-11-12/examples-1.json +0 -5
  427. data/apis/config/2014-11-12/paginators-1.json +0 -10
  428. data/apis/config/2014-11-12/smoke.json +0 -19
  429. data/apis/connect/2017-08-08/api-2.json +0 -1379
  430. data/apis/connect/2017-08-08/examples-1.json +0 -5
  431. data/apis/connect/2017-08-08/paginators-1.json +0 -14
  432. data/apis/cur/2017-01-06/api-2.json +0 -226
  433. data/apis/cur/2017-01-06/examples-1.json +0 -5
  434. data/apis/cur/2017-01-06/paginators-1.json +0 -9
  435. data/apis/datapipeline/2012-10-29/api-2.json +0 -1168
  436. data/apis/datapipeline/2012-10-29/paginators-1.json +0 -26
  437. data/apis/datasync/2018-11-09/api-2.json +0 -1060
  438. data/apis/datasync/2018-11-09/examples-1.json +0 -5
  439. data/apis/datasync/2018-11-09/paginators-1.json +0 -29
  440. data/apis/dax/2017-04-19/api-2.json +0 -1140
  441. data/apis/dax/2017-04-19/examples-1.json +0 -5
  442. data/apis/dax/2017-04-19/paginators-1.json +0 -4
  443. data/apis/devicefarm/2015-06-23/api-2.json +0 -3053
  444. data/apis/devicefarm/2015-06-23/examples-1.json +0 -1242
  445. data/apis/devicefarm/2015-06-23/paginators-1.json +0 -77
  446. data/apis/devicefarm/2015-06-23/smoke.json +0 -18
  447. data/apis/directconnect/2012-10-25/api-2.json +0 -1689
  448. data/apis/directconnect/2012-10-25/examples-1.json +0 -5
  449. data/apis/directconnect/2012-10-25/paginators-1.json +0 -22
  450. data/apis/directconnect/2012-10-25/smoke.json +0 -18
  451. data/apis/discovery/2015-11-01/api-2.json +0 -1331
  452. data/apis/discovery/2015-11-01/examples-1.json +0 -5
  453. data/apis/discovery/2015-11-01/paginators-1.json +0 -14
  454. data/apis/discovery/2015-11-01/smoke.json +0 -11
  455. data/apis/dlm/2018-01-12/api-2.json +0 -418
  456. data/apis/dlm/2018-01-12/examples-1.json +0 -5
  457. data/apis/dlm/2018-01-12/paginators-1.json +0 -4
  458. data/apis/dms/2016-01-01/api-2.json +0 -2040
  459. data/apis/dms/2016-01-01/examples-1.json +0 -1053
  460. data/apis/dms/2016-01-01/paginators-1.json +0 -74
  461. data/apis/dms/2016-01-01/smoke.json +0 -18
  462. data/apis/dms/2016-01-01/waiters-2.json +0 -336
  463. data/apis/docdb/2014-10-31/api-2.json +0 -2413
  464. data/apis/docdb/2014-10-31/examples-1.json +0 -5
  465. data/apis/docdb/2014-10-31/paginators-1.json +0 -43
  466. data/apis/docdb/2014-10-31/smoke.json +0 -18
  467. data/apis/docdb/2014-10-31/waiters-2.json +0 -90
  468. data/apis/ds/2015-04-16/api-2.json +0 -2631
  469. data/apis/ds/2015-04-16/examples-1.json +0 -5
  470. data/apis/ds/2015-04-16/paginators-1.json +0 -9
  471. data/apis/ds/2015-04-16/smoke.json +0 -20
  472. data/apis/dynamodb/2011-12-05/api-2.json +0 -803
  473. data/apis/dynamodb/2011-12-05/examples-1.json +0 -5
  474. data/apis/dynamodb/2011-12-05/paginators-1.json +0 -26
  475. data/apis/dynamodb/2011-12-05/smoke.json +0 -20
  476. data/apis/dynamodb/2011-12-05/waiters-2.json +0 -35
  477. data/apis/dynamodb/2012-08-10/api-2.json +0 -2801
  478. data/apis/dynamodb/2012-08-10/examples-1.json +0 -631
  479. data/apis/dynamodb/2012-08-10/paginators-1.json +0 -26
  480. data/apis/dynamodb/2012-08-10/resources-1.json +0 -136
  481. data/apis/dynamodb/2012-08-10/smoke.json +0 -20
  482. data/apis/dynamodb/2012-08-10/waiters-2.json +0 -35
  483. data/apis/ec2/2015-10-01/api-2.json +0 -13760
  484. data/apis/ec2/2015-10-01/examples-1.json +0 -5
  485. data/apis/ec2/2015-10-01/paginators-1.json +0 -138
  486. data/apis/ec2/2015-10-01/resources-1.json +0 -2582
  487. data/apis/ec2/2015-10-01/waiters-2.json +0 -593
  488. data/apis/ec2/2016-04-01/api-2.json +0 -14191
  489. data/apis/ec2/2016-04-01/examples-1.json +0 -3729
  490. data/apis/ec2/2016-04-01/paginators-1.json +0 -138
  491. data/apis/ec2/2016-04-01/resources-1.json +0 -2582
  492. data/apis/ec2/2016-04-01/waiters-2.json +0 -593
  493. data/apis/ec2/2016-09-15/api-2.json +0 -14415
  494. data/apis/ec2/2016-09-15/examples-1.json +0 -3740
  495. data/apis/ec2/2016-09-15/paginators-1.json +0 -138
  496. data/apis/ec2/2016-09-15/resources-1.json +0 -2582
  497. data/apis/ec2/2016-09-15/waiters-2.json +0 -593
  498. data/apis/ec2/2016-11-15/api-2.json +0 -23190
  499. data/apis/ec2/2016-11-15/examples-1.json +0 -5048
  500. data/apis/ec2/2016-11-15/paginators-1.json +0 -153
  501. data/apis/ec2/2016-11-15/resources-1.json +0 -2582
  502. data/apis/ec2/2016-11-15/smoke.json +0 -20
  503. data/apis/ec2/2016-11-15/waiters-2.json +0 -622
  504. data/apis/ecr/2015-09-21/api-2.json +0 -1328
  505. data/apis/ecr/2015-09-21/examples-1.json +0 -215
  506. data/apis/ecr/2015-09-21/paginators-1.json +0 -22
  507. data/apis/ecr/2015-09-21/smoke.json +0 -18
  508. data/apis/ecs/2014-11-13/api-2.json +0 -2414
  509. data/apis/ecs/2014-11-13/examples-1.json +0 -952
  510. data/apis/ecs/2014-11-13/paginators-1.json +0 -40
  511. data/apis/ecs/2014-11-13/waiters-2.json +0 -93
  512. data/apis/eks/2017-11-01/api-2.json +0 -509
  513. data/apis/eks/2017-11-01/examples-1.json +0 -114
  514. data/apis/eks/2017-11-01/paginators-1.json +0 -4
  515. data/apis/eks/2017-11-01/waiters-2.json +0 -54
  516. data/apis/elasticache/2015-02-02/api-2.json +0 -2793
  517. data/apis/elasticache/2015-02-02/examples-1.json +0 -3149
  518. data/apis/elasticache/2015-02-02/paginators-1.json +0 -76
  519. data/apis/elasticache/2015-02-02/smoke.json +0 -18
  520. data/apis/elasticache/2015-02-02/waiters-2.json +0 -143
  521. data/apis/elasticbeanstalk/2010-12-01/api-2.json +0 -2488
  522. data/apis/elasticbeanstalk/2010-12-01/examples-1.json +0 -1109
  523. data/apis/elasticbeanstalk/2010-12-01/paginators-1.json +0 -25
  524. data/apis/elasticbeanstalk/2010-12-01/smoke.json +0 -18
  525. data/apis/elasticfilesystem/2015-02-01/api-2.json +0 -805
  526. data/apis/elasticfilesystem/2015-02-01/examples-1.json +0 -222
  527. data/apis/elasticfilesystem/2015-02-01/paginators-1.json +0 -4
  528. data/apis/elasticfilesystem/2015-02-01/smoke.json +0 -18
  529. data/apis/elasticloadbalancing/2012-06-01/api-2.json +0 -1642
  530. data/apis/elasticloadbalancing/2012-06-01/examples-1.json +0 -1036
  531. data/apis/elasticloadbalancing/2012-06-01/paginators-1.json +0 -18
  532. data/apis/elasticloadbalancing/2012-06-01/smoke.json +0 -20
  533. data/apis/elasticloadbalancing/2012-06-01/waiters-2.json +0 -54
  534. data/apis/elasticloadbalancingv2/2015-12-01/api-2.json +0 -2241
  535. data/apis/elasticloadbalancingv2/2015-12-01/examples-1.json +0 -1384
  536. data/apis/elasticloadbalancingv2/2015-12-01/paginators-1.json +0 -19
  537. data/apis/elasticloadbalancingv2/2015-12-01/smoke.json +0 -20
  538. data/apis/elasticloadbalancingv2/2015-12-01/waiters-2.json +0 -100
  539. data/apis/elasticmapreduce/2009-03-31/api-2.json +0 -2086
  540. data/apis/elasticmapreduce/2009-03-31/examples-1.json +0 -5
  541. data/apis/elasticmapreduce/2009-03-31/paginators-1.json +0 -37
  542. data/apis/elasticmapreduce/2009-03-31/smoke.json +0 -18
  543. data/apis/elasticmapreduce/2009-03-31/waiters-2.json +0 -86
  544. data/apis/elastictranscoder/2012-09-25/api-2.json +0 -1484
  545. data/apis/elastictranscoder/2012-09-25/examples-1.json +0 -5
  546. data/apis/elastictranscoder/2012-09-25/paginators-1.json +0 -24
  547. data/apis/elastictranscoder/2012-09-25/smoke.json +0 -18
  548. data/apis/elastictranscoder/2012-09-25/waiters-2.json +0 -30
  549. data/apis/email/2010-12-01/api-2.json +0 -3134
  550. data/apis/email/2010-12-01/examples-1.json +0 -1021
  551. data/apis/email/2010-12-01/paginators-1.json +0 -18
  552. data/apis/email/2010-12-01/smoke.json +0 -18
  553. data/apis/email/2010-12-01/waiters-2.json +0 -18
  554. data/apis/entitlement.marketplace/2017-01-11/api-2.json +0 -128
  555. data/apis/entitlement.marketplace/2017-01-11/examples-1.json +0 -5
  556. data/apis/entitlement.marketplace/2017-01-11/paginators-1.json +0 -4
  557. data/apis/es/2015-01-01/api-2.json +0 -1520
  558. data/apis/es/2015-01-01/examples-1.json +0 -5
  559. data/apis/es/2015-01-01/paginators-1.json +0 -29
  560. data/apis/es/2015-01-01/smoke.json +0 -18
  561. data/apis/events/2015-10-07/api-2.json +0 -850
  562. data/apis/events/2015-10-07/examples-1.json +0 -5
  563. data/apis/events/2015-10-07/paginators-1.json +0 -4
  564. data/apis/events/2015-10-07/smoke.json +0 -18
  565. data/apis/firehose/2015-08-04/api-2.json +0 -1376
  566. data/apis/firehose/2015-08-04/examples-1.json +0 -5
  567. data/apis/firehose/2015-08-04/paginators-1.json +0 -4
  568. data/apis/firehose/2015-08-04/smoke.json +0 -18
  569. data/apis/fms/2018-01-01/api-2.json +0 -636
  570. data/apis/fms/2018-01-01/examples-1.json +0 -5
  571. data/apis/fms/2018-01-01/paginators-1.json +0 -4
  572. data/apis/fsx/2018-03-01/api-2.json +0 -953
  573. data/apis/fsx/2018-03-01/examples-1.json +0 -384
  574. data/apis/fsx/2018-03-01/paginators-1.json +0 -14
  575. data/apis/gamelift/2015-10-01/api-2.json +0 -3243
  576. data/apis/gamelift/2015-10-01/examples-1.json +0 -5
  577. data/apis/gamelift/2015-10-01/paginators-1.json +0 -4
  578. data/apis/glacier/2012-06-01/api-2.json +0 -1906
  579. data/apis/glacier/2012-06-01/examples-1.json +0 -806
  580. data/apis/glacier/2012-06-01/paginators-1.json +0 -28
  581. data/apis/glacier/2012-06-01/resources-1.json +0 -563
  582. data/apis/glacier/2012-06-01/smoke.json +0 -18
  583. data/apis/glacier/2012-06-01/waiters-2.json +0 -39
  584. data/apis/globalaccelerator/2018-08-08/api-2.json +0 -798
  585. data/apis/globalaccelerator/2018-08-08/examples-1.json +0 -5
  586. data/apis/globalaccelerator/2018-08-08/paginators-1.json +0 -4
  587. data/apis/glue/2017-03-31/api-2.json +0 -4410
  588. data/apis/glue/2017-03-31/examples-1.json +0 -5
  589. data/apis/glue/2017-03-31/paginators-1.json +0 -69
  590. data/apis/glue/2017-03-31/smoke.json +0 -11
  591. data/apis/greengrass/2017-06-07/api-2.json +0 -4936
  592. data/apis/guardduty/2017-11-28/api-2.json +0 -3039
  593. data/apis/guardduty/2017-11-28/paginators-1.json +0 -46
  594. data/apis/health/2016-08-04/api-2.json +0 -553
  595. data/apis/health/2016-08-04/examples-1.json +0 -5
  596. data/apis/health/2016-08-04/paginators-1.json +0 -31
  597. data/apis/health/2016-08-04/smoke.json +0 -11
  598. data/apis/iam/2010-05-08/api-2.json +0 -5629
  599. data/apis/iam/2010-05-08/examples-1.json +0 -1489
  600. data/apis/iam/2010-05-08/paginators-1.json +0 -198
  601. data/apis/iam/2010-05-08/resources-1.json +0 -1740
  602. data/apis/iam/2010-05-08/smoke.json +0 -18
  603. data/apis/iam/2010-05-08/waiters-2.json +0 -39
  604. data/apis/importexport/2010-06-01/api-2.json +0 -667
  605. data/apis/importexport/2010-06-01/paginators-1.json +0 -11
  606. data/apis/inspector/2016-02-16/api-2.json +0 -2387
  607. data/apis/inspector/2016-02-16/examples-1.json +0 -1148
  608. data/apis/inspector/2016-02-16/paginators-1.json +0 -54
  609. data/apis/inspector/2016-02-16/smoke.json +0 -18
  610. data/apis/iot/2015-05-28/api-2.json +0 -8866
  611. data/apis/iot/2015-05-28/examples-1.json +0 -5
  612. data/apis/iot/2015-05-28/paginators-1.json +0 -4
  613. data/apis/iot/2015-05-28/smoke.json +0 -18
  614. data/apis/iot-data/2015-05-28/api-2.json +0 -264
  615. data/apis/iot-jobs-data/2017-09-29/api-2.json +0 -348
  616. data/apis/iot-jobs-data/2017-09-29/examples-1.json +0 -5
  617. data/apis/iot-jobs-data/2017-09-29/paginators-1.json +0 -4
  618. data/apis/iot1click-devices/2018-05-14/api-2.json +0 -769
  619. data/apis/iot1click-projects/2018-05-14/api-2.json +0 -748
  620. data/apis/iot1click-projects/2018-05-14/examples-1.json +0 -5
  621. data/apis/iot1click-projects/2018-05-14/paginators-1.json +0 -4
  622. data/apis/iotanalytics/2017-11-27/api-2.json +0 -2054
  623. data/apis/iotanalytics/2017-11-27/examples-1.json +0 -5
  624. data/apis/iotanalytics/2017-11-27/paginators-1.json +0 -29
  625. data/apis/kafka/2018-11-14/api-2.json +0 -789
  626. data/apis/kafka/2018-11-14/paginators-1.json +0 -3
  627. data/apis/kinesis/2013-12-02/api-2.json +0 -1409
  628. data/apis/kinesis/2013-12-02/examples-1.json +0 -5
  629. data/apis/kinesis/2013-12-02/paginators-1.json +0 -23
  630. data/apis/kinesis/2013-12-02/smoke.json +0 -18
  631. data/apis/kinesis/2013-12-02/waiters-2.json +0 -30
  632. data/apis/kinesis-video-archived-media/2017-09-30/api-2.json +0 -318
  633. data/apis/kinesis-video-archived-media/2017-09-30/examples-1.json +0 -5
  634. data/apis/kinesis-video-archived-media/2017-09-30/paginators-1.json +0 -4
  635. data/apis/kinesis-video-media/2017-09-30/api-2.json +0 -160
  636. data/apis/kinesis-video-media/2017-09-30/examples-1.json +0 -5
  637. data/apis/kinesis-video-media/2017-09-30/paginators-1.json +0 -4
  638. data/apis/kinesisanalytics/2015-08-14/api-2.json +0 -1378
  639. data/apis/kinesisanalytics/2015-08-14/examples-1.json +0 -5
  640. data/apis/kinesisanalytics/2015-08-14/paginators-1.json +0 -4
  641. data/apis/kinesisanalyticsv2/2018-05-23/api-2.json +0 -1984
  642. data/apis/kinesisanalyticsv2/2018-05-23/examples-1.json +0 -5
  643. data/apis/kinesisanalyticsv2/2018-05-23/paginators-1.json +0 -4
  644. data/apis/kinesisvideo/2017-09-30/api-2.json +0 -549
  645. data/apis/kinesisvideo/2017-09-30/examples-1.json +0 -5
  646. data/apis/kinesisvideo/2017-09-30/paginators-1.json +0 -4
  647. data/apis/kms/2014-11-01/api-2.json +0 -1833
  648. data/apis/kms/2014-11-01/examples-1.json +0 -906
  649. data/apis/kms/2014-11-01/paginators-1.json +0 -32
  650. data/apis/kms/2014-11-01/smoke.json +0 -19
  651. data/apis/lambda/2014-11-11/api-2.json +0 -668
  652. data/apis/lambda/2014-11-11/paginators-1.json +0 -16
  653. data/apis/lambda/2015-03-31/api-2.json +0 -2317
  654. data/apis/lambda/2015-03-31/examples-1.json +0 -614
  655. data/apis/lambda/2015-03-31/paginators-1.json +0 -16
  656. data/apis/lambda/2015-03-31/smoke.json +0 -18
  657. data/apis/lex-models/2017-04-19/api-2.json +0 -2261
  658. data/apis/lex-models/2017-04-19/examples-1.json +0 -758
  659. data/apis/lex-models/2017-04-19/paginators-1.json +0 -54
  660. data/apis/license-manager/2018-08-01/api-2.json +0 -780
  661. data/apis/license-manager/2018-08-01/examples-1.json +0 -5
  662. data/apis/license-manager/2018-08-01/paginators-1.json +0 -4
  663. data/apis/lightsail/2016-11-28/api-2.json +0 -4732
  664. data/apis/lightsail/2016-11-28/examples-1.json +0 -5
  665. data/apis/lightsail/2016-11-28/paginators-1.json +0 -4
  666. data/apis/lightsail/2016-11-28/smoke.json +0 -11
  667. data/apis/logs/2014-03-28/api-2.json +0 -1689
  668. data/apis/logs/2014-03-28/examples-1.json +0 -5
  669. data/apis/logs/2014-03-28/paginators-1.json +0 -49
  670. data/apis/logs/2014-03-28/smoke.json +0 -19
  671. data/apis/machinelearning/2014-12-12/api-2.json +0 -1978
  672. data/apis/machinelearning/2014-12-12/examples-1.json +0 -5
  673. data/apis/machinelearning/2014-12-12/paginators-1.json +0 -28
  674. data/apis/machinelearning/2014-12-12/waiters-2.json +0 -81
  675. data/apis/macie/2017-12-19/api-2.json +0 -365
  676. data/apis/macie/2017-12-19/examples-1.json +0 -5
  677. data/apis/macie/2017-12-19/paginators-1.json +0 -14
  678. data/apis/marketplacecommerceanalytics/2015-07-01/api-2.json +0 -171
  679. data/apis/marketplacecommerceanalytics/2015-07-01/examples-1.json +0 -5
  680. data/apis/marketplacecommerceanalytics/2015-07-01/paginators-1.json +0 -4
  681. data/apis/mediaconnect/2018-11-14/api-2.json +0 -1586
  682. data/apis/mediaconnect/2018-11-14/paginators-1.json +0 -10
  683. data/apis/mediaconvert/2017-08-29/api-2.json +0 -7691
  684. data/apis/mediaconvert/2017-08-29/paginators-1.json +0 -34
  685. data/apis/medialive/2017-10-14/api-2.json +0 -7865
  686. data/apis/medialive/2017-10-14/paginators-1.json +0 -40
  687. data/apis/mediapackage/2017-10-12/api-2.json +0 -1780
  688. data/apis/mediapackage/2017-10-12/paginators-1.json +0 -16
  689. data/apis/mediastore/2017-09-01/api-2.json +0 -568
  690. data/apis/mediastore/2017-09-01/examples-1.json +0 -5
  691. data/apis/mediastore/2017-09-01/paginators-1.json +0 -4
  692. data/apis/mediastore-data/2017-09-01/api-2.json +0 -392
  693. data/apis/mediastore-data/2017-09-01/examples-1.json +0 -5
  694. data/apis/mediastore-data/2017-09-01/paginators-1.json +0 -4
  695. data/apis/mediatailor/2018-04-23/api-2.json +0 -311
  696. data/apis/mediatailor/2018-04-23/paginators-1.json +0 -3
  697. data/apis/meteringmarketplace/2016-01-14/api-2.json +0 -347
  698. data/apis/meteringmarketplace/2016-01-14/examples-1.json +0 -5
  699. data/apis/meteringmarketplace/2016-01-14/paginators-1.json +0 -4
  700. data/apis/mobile/2017-07-01/api-2.json +0 -551
  701. data/apis/mobile/2017-07-01/examples-1.json +0 -5
  702. data/apis/mobile/2017-07-01/paginators-1.json +0 -14
  703. data/apis/monitoring/2010-08-01/api-2.json +0 -1199
  704. data/apis/monitoring/2010-08-01/examples-1.json +0 -5
  705. data/apis/monitoring/2010-08-01/paginators-1.json +0 -24
  706. data/apis/monitoring/2010-08-01/resources-1.json +0 -346
  707. data/apis/monitoring/2010-08-01/waiters-2.json +0 -18
  708. data/apis/mq/2017-11-27/api-2.json +0 -2241
  709. data/apis/mq/2017-11-27/paginators-1.json +0 -3
  710. data/apis/mturk-requester/2017-01-17/api-2.json +0 -1696
  711. data/apis/mturk-requester/2017-01-17/examples-1.json +0 -5
  712. data/apis/mturk-requester/2017-01-17/paginators-1.json +0 -54
  713. data/apis/neptune/2014-10-31/api-2.json +0 -3506
  714. data/apis/neptune/2014-10-31/examples-1.json +0 -5
  715. data/apis/neptune/2014-10-31/paginators-1.json +0 -61
  716. data/apis/neptune/2014-10-31/waiters-2.json +0 -90
  717. data/apis/opsworks/2013-02-18/api-2.json +0 -2885
  718. data/apis/opsworks/2013-02-18/examples-1.json +0 -5
  719. data/apis/opsworks/2013-02-18/paginators-1.json +0 -55
  720. data/apis/opsworks/2013-02-18/resources-1.json +0 -173
  721. data/apis/opsworks/2013-02-18/smoke.json +0 -18
  722. data/apis/opsworks/2013-02-18/waiters-2.json +0 -289
  723. data/apis/opsworkscm/2016-11-01/api-2.json +0 -766
  724. data/apis/opsworkscm/2016-11-01/examples-1.json +0 -5
  725. data/apis/opsworkscm/2016-11-01/paginators-1.json +0 -4
  726. data/apis/opsworkscm/2016-11-01/waiters-2.json +0 -25
  727. data/apis/organizations/2016-11-28/api-2.json +0 -2137
  728. data/apis/organizations/2016-11-28/examples-1.json +0 -1409
  729. data/apis/organizations/2016-11-28/paginators-1.json +0 -69
  730. data/apis/pi/2018-02-27/api-2.json +0 -253
  731. data/apis/pi/2018-02-27/examples-1.json +0 -5
  732. data/apis/pi/2018-02-27/paginators-1.json +0 -4
  733. data/apis/pinpoint/2016-12-01/api-2.json +0 -6965
  734. data/apis/pinpoint/2016-12-01/examples-1.json +0 -5
  735. data/apis/pinpoint-email/2018-07-26/api-2.json +0 -1710
  736. data/apis/pinpoint-email/2018-07-26/examples-1.json +0 -5
  737. data/apis/pinpoint-email/2018-07-26/paginators-1.json +0 -29
  738. data/apis/polly/2016-06-10/api-2.json +0 -795
  739. data/apis/polly/2016-06-10/examples-1.json +0 -171
  740. data/apis/polly/2016-06-10/paginators-1.json +0 -9
  741. data/apis/polly/2016-06-10/smoke.json +0 -11
  742. data/apis/pricing/2017-10-15/api-2.json +0 -227
  743. data/apis/pricing/2017-10-15/examples-1.json +0 -103
  744. data/apis/pricing/2017-10-15/paginators-1.json +0 -19
  745. data/apis/quicksight/2018-04-01/api-2.json +0 -1158
  746. data/apis/quicksight/2018-04-01/examples-1.json +0 -5
  747. data/apis/quicksight/2018-04-01/paginators-1.json +0 -4
  748. data/apis/ram/2018-01-04/api-2.json +0 -964
  749. data/apis/ram/2018-01-04/examples-1.json +0 -5
  750. data/apis/ram/2018-01-04/paginators-1.json +0 -34
  751. data/apis/rds/2013-01-10/api-2.json +0 -2903
  752. data/apis/rds/2013-01-10/examples-1.json +0 -5
  753. data/apis/rds/2013-01-10/paginators-1.json +0 -97
  754. data/apis/rds/2013-01-10/smoke.json +0 -18
  755. data/apis/rds/2013-02-12/api-2.json +0 -3059
  756. data/apis/rds/2013-02-12/examples-1.json +0 -5
  757. data/apis/rds/2013-02-12/paginators-1.json +0 -110
  758. data/apis/rds/2013-02-12/smoke.json +0 -18
  759. data/apis/rds/2013-09-09/api-2.json +0 -3160
  760. data/apis/rds/2013-09-09/examples-1.json +0 -5
  761. data/apis/rds/2013-09-09/paginators-1.json +0 -110
  762. data/apis/rds/2013-09-09/smoke.json +0 -18
  763. data/apis/rds/2013-09-09/waiters-2.json +0 -97
  764. data/apis/rds/2014-09-01/api-2.json +0 -3273
  765. data/apis/rds/2014-09-01/examples-1.json +0 -5
  766. data/apis/rds/2014-09-01/paginators-1.json +0 -4
  767. data/apis/rds/2014-09-01/smoke.json +0 -18
  768. data/apis/rds/2014-10-31/api-2.json +0 -6455
  769. data/apis/rds/2014-10-31/examples-1.json +0 -1951
  770. data/apis/rds/2014-10-31/paginators-1.json +0 -128
  771. data/apis/rds/2014-10-31/resources-1.json +0 -3272
  772. data/apis/rds/2014-10-31/smoke.json +0 -18
  773. data/apis/rds/2014-10-31/waiters-2.json +0 -175
  774. data/apis/rds/2015-11-12/api-2.json +0 -5509
  775. data/apis/rds/2015-11-12/examples-1.json +0 -1951
  776. data/apis/rds/2015-11-12/paginators-1.json +0 -110
  777. data/apis/rds/2015-11-12/resources-1.json +0 -3272
  778. data/apis/rds/2015-11-12/waiters-2.json +0 -175
  779. data/apis/rds-data/2018-08-01/api-2.json +0 -329
  780. data/apis/rds-data/2018-08-01/examples-1.json +0 -4
  781. data/apis/rds-data/2018-08-01/paginators-1.json +0 -3
  782. data/apis/redshift/2012-12-01/api-2.json +0 -4885
  783. data/apis/redshift/2012-12-01/examples-1.json +0 -5
  784. data/apis/redshift/2012-12-01/paginators-1.json +0 -94
  785. data/apis/redshift/2012-12-01/smoke.json +0 -18
  786. data/apis/redshift/2012-12-01/waiters-2.json +0 -97
  787. data/apis/rekognition/2016-06-27/api-2.json +0 -2140
  788. data/apis/rekognition/2016-06-27/examples-1.json +0 -651
  789. data/apis/rekognition/2016-06-27/paginators-1.json +0 -51
  790. data/apis/rekognition/2016-06-27/smoke.json +0 -11
  791. data/apis/resource-groups/2017-11-27/api-2.json +0 -731
  792. data/apis/resource-groups/2017-11-27/examples-1.json +0 -5
  793. data/apis/resource-groups/2017-11-27/paginators-1.json +0 -19
  794. data/apis/resourcegroupstaggingapi/2017-01-26/api-2.json +0 -328
  795. data/apis/resourcegroupstaggingapi/2017-01-26/examples-1.json +0 -5
  796. data/apis/resourcegroupstaggingapi/2017-01-26/paginators-1.json +0 -20
  797. data/apis/robomaker/2018-06-29/api-2.json +0 -1775
  798. data/apis/robomaker/2018-06-29/examples-1.json +0 -5
  799. data/apis/robomaker/2018-06-29/paginators-1.json +0 -4
  800. data/apis/route53/2013-04-01/api-2.json +0 -3772
  801. data/apis/route53/2013-04-01/examples-1.json +0 -762
  802. data/apis/route53/2013-04-01/paginators-1.json +0 -33
  803. data/apis/route53/2013-04-01/smoke.json +0 -18
  804. data/apis/route53/2013-04-01/waiters-2.json +0 -18
  805. data/apis/route53domains/2014-05-15/api-2.json +0 -1382
  806. data/apis/route53domains/2014-05-15/examples-1.json +0 -5
  807. data/apis/route53domains/2014-05-15/paginators-1.json +0 -16
  808. data/apis/route53resolver/2018-04-01/api-2.json +0 -1199
  809. data/apis/route53resolver/2018-04-01/examples-1.json +0 -5
  810. data/apis/route53resolver/2018-04-01/paginators-1.json +0 -24
  811. data/apis/route53resolver/2018-04-01/smoke.json +0 -18
  812. data/apis/runtime.lex/2016-11-28/api-2.json +0 -419
  813. data/apis/runtime.lex/2016-11-28/examples-1.json +0 -5
  814. data/apis/runtime.lex/2016-11-28/paginators-1.json +0 -4
  815. data/apis/runtime.sagemaker/2017-05-13/api-2.json +0 -152
  816. data/apis/runtime.sagemaker/2017-05-13/examples-1.json +0 -5
  817. data/apis/runtime.sagemaker/2017-05-13/paginators-1.json +0 -4
  818. data/apis/s3/2006-03-01/api-2.json +0 -6519
  819. data/apis/s3/2006-03-01/examples-1.json +0 -1876
  820. data/apis/s3/2006-03-01/paginators-1.json +0 -66
  821. data/apis/s3/2006-03-01/resources-1.json +0 -1249
  822. data/apis/s3/2006-03-01/smoke.json +0 -11
  823. data/apis/s3/2006-03-01/waiters-2.json +0 -73
  824. data/apis/s3control/2018-08-20/api-2.json +0 -126
  825. data/apis/s3control/2018-08-20/examples-1.json +0 -5
  826. data/apis/s3control/2018-08-20/paginators-1.json +0 -4
  827. data/apis/sagemaker/2017-07-24/api-2.json +0 -5070
  828. data/apis/sagemaker/2017-07-24/examples-1.json +0 -5
  829. data/apis/sagemaker/2017-07-24/paginators-1.json +0 -84
  830. data/apis/sagemaker/2017-07-24/waiters-2.json +0 -163
  831. data/apis/sdb/2009-04-15/api-2.json +0 -955
  832. data/apis/sdb/2009-04-15/paginators-1.json +0 -15
  833. data/apis/secretsmanager/2017-10-17/api-2.json +0 -974
  834. data/apis/secretsmanager/2017-10-17/examples-1.json +0 -571
  835. data/apis/secretsmanager/2017-10-17/paginators-1.json +0 -14
  836. data/apis/secretsmanager/2017-10-17/smoke.json +0 -18
  837. data/apis/securityhub/2018-10-26/api-2.json +0 -1660
  838. data/apis/securityhub/2018-10-26/examples-1.json +0 -5
  839. data/apis/securityhub/2018-10-26/paginators-1.json +0 -19
  840. data/apis/serverlessrepo/2017-09-08/api-2.json +0 -1750
  841. data/apis/serverlessrepo/2017-09-08/paginators-1.json +0 -19
  842. data/apis/servicecatalog/2015-12-10/api-2.json +0 -3675
  843. data/apis/servicecatalog/2015-12-10/examples-1.json +0 -5
  844. data/apis/servicecatalog/2015-12-10/paginators-1.json +0 -79
  845. data/apis/servicecatalog/2015-12-10/smoke.json +0 -11
  846. data/apis/servicediscovery/2017-03-14/api-2.json +0 -1156
  847. data/apis/servicediscovery/2017-03-14/examples-1.json +0 -5
  848. data/apis/servicediscovery/2017-03-14/paginators-1.json +0 -29
  849. data/apis/shield/2016-06-02/api-2.json +0 -890
  850. data/apis/shield/2016-06-02/examples-1.json +0 -5
  851. data/apis/shield/2016-06-02/paginators-1.json +0 -4
  852. data/apis/shield/2016-06-02/smoke.json +0 -11
  853. data/apis/signer/2017-08-25/api-2.json +0 -670
  854. data/apis/signer/2017-08-25/examples-1.json +0 -5
  855. data/apis/signer/2017-08-25/paginators-1.json +0 -19
  856. data/apis/signer/2017-08-25/waiters-2.json +0 -29
  857. data/apis/sms/2016-10-24/api-2.json +0 -1366
  858. data/apis/sms/2016-10-24/examples-1.json +0 -5
  859. data/apis/sms/2016-10-24/paginators-1.json +0 -28
  860. data/apis/sms/2016-10-24/smoke.json +0 -18
  861. data/apis/sms-voice/2018-09-05/api-2.json +0 -630
  862. data/apis/snowball/2016-06-30/api-2.json +0 -929
  863. data/apis/snowball/2016-06-30/examples-1.json +0 -442
  864. data/apis/snowball/2016-06-30/paginators-1.json +0 -16
  865. data/apis/snowball/2016-06-30/smoke.json +0 -11
  866. data/apis/sns/2010-03-31/api-2.json +0 -1259
  867. data/apis/sns/2010-03-31/examples-1.json +0 -5
  868. data/apis/sns/2010-03-31/paginators-1.json +0 -29
  869. data/apis/sns/2010-03-31/resources-1.json +0 -327
  870. data/apis/sns/2010-03-31/smoke.json +0 -19
  871. data/apis/sqs/2012-11-05/api-2.json +0 -1078
  872. data/apis/sqs/2012-11-05/examples-1.json +0 -5
  873. data/apis/sqs/2012-11-05/paginators-1.json +0 -7
  874. data/apis/sqs/2012-11-05/resources-1.json +0 -232
  875. data/apis/sqs/2012-11-05/smoke.json +0 -18
  876. data/apis/ssm/2014-11-06/api-2.json +0 -8149
  877. data/apis/ssm/2014-11-06/examples-1.json +0 -5
  878. data/apis/ssm/2014-11-06/paginators-1.json +0 -55
  879. data/apis/ssm/2014-11-06/smoke.json +0 -18
  880. data/apis/states/2016-11-23/api-2.json +0 -1363
  881. data/apis/states/2016-11-23/examples-1.json +0 -5
  882. data/apis/states/2016-11-23/paginators-1.json +0 -28
  883. data/apis/states/2016-11-23/smoke.json +0 -11
  884. data/apis/storagegateway/2013-06-30/api-2.json +0 -3047
  885. data/apis/storagegateway/2013-06-30/examples-1.json +0 -1381
  886. data/apis/storagegateway/2013-06-30/paginators-1.json +0 -52
  887. data/apis/streams.dynamodb/2012-08-10/api-2.json +0 -406
  888. data/apis/streams.dynamodb/2012-08-10/examples-1.json +0 -212
  889. data/apis/streams.dynamodb/2012-08-10/paginators-1.json +0 -4
  890. data/apis/sts/2011-06-15/api-2.json +0 -523
  891. data/apis/sts/2011-06-15/examples-1.json +0 -206
  892. data/apis/sts/2011-06-15/paginators-1.json +0 -4
  893. data/apis/support/2013-04-15/api-2.json +0 -772
  894. data/apis/support/2013-04-15/examples-1.json +0 -5
  895. data/apis/support/2013-04-15/paginators-1.json +0 -25
  896. data/apis/swf/2012-01-25/api-2.json +0 -2613
  897. data/apis/swf/2012-01-25/examples-1.json +0 -5
  898. data/apis/swf/2012-01-25/paginators-1.json +0 -46
  899. data/apis/transcribe/2017-10-26/api-2.json +0 -499
  900. data/apis/transcribe/2017-10-26/examples-1.json +0 -5
  901. data/apis/transcribe/2017-10-26/paginators-1.json +0 -14
  902. data/apis/transfer/2018-11-05/api-2.json +0 -818
  903. data/apis/transfer/2018-11-05/examples-1.json +0 -5
  904. data/apis/transfer/2018-11-05/paginators-1.json +0 -4
  905. data/apis/translate/2017-07-01/api-2.json +0 -408
  906. data/apis/translate/2017-07-01/examples-1.json +0 -5
  907. data/apis/translate/2017-07-01/paginators-1.json +0 -4
  908. data/apis/waf/2015-08-24/api-2.json +0 -3674
  909. data/apis/waf/2015-08-24/examples-1.json +0 -1017
  910. data/apis/waf/2015-08-24/paginators-1.json +0 -4
  911. data/apis/waf/2015-08-24/smoke.json +0 -21
  912. data/apis/waf-regional/2016-11-28/api-2.json +0 -3809
  913. data/apis/waf-regional/2016-11-28/examples-1.json +0 -1017
  914. data/apis/waf-regional/2016-11-28/paginators-1.json +0 -4
  915. data/apis/waf-regional/2016-11-28/smoke.json +0 -21
  916. data/apis/workdocs/2016-05-01/api-2.json +0 -2899
  917. data/apis/workdocs/2016-05-01/examples-1.json +0 -5
  918. data/apis/workdocs/2016-05-01/paginators-1.json +0 -25
  919. data/apis/worklink/2018-09-25/api-2.json +0 -873
  920. data/apis/worklink/2018-09-25/examples-1.json +0 -5
  921. data/apis/worklink/2018-09-25/paginators-1.json +0 -19
  922. data/apis/workmail/2017-10-01/api-2.json +0 -1482
  923. data/apis/workmail/2017-10-01/examples-1.json +0 -5
  924. data/apis/workmail/2017-10-01/paginators-1.json +0 -39
  925. data/apis/workspaces/2015-04-08/api-2.json +0 -1648
  926. data/apis/workspaces/2015-04-08/examples-1.json +0 -5
  927. data/apis/workspaces/2015-04-08/paginators-1.json +0 -20
  928. data/apis/workspaces/2015-04-08/smoke.json +0 -18
  929. data/apis/xray/2016-04-12/api-2.json +0 -1277
  930. data/apis/xray/2016-04-12/examples-1.json +0 -5
  931. data/apis/xray/2016-04-12/paginators-1.json +0 -24
  932. data/bin/aws.rb +0 -180
  933. data/endpoints.json +0 -3689
  934. data/lib/aws-sdk-core/acm.rb +0 -7
  935. data/lib/aws-sdk-core/acmpca.rb +0 -7
  936. data/lib/aws-sdk-core/alexaforbusiness.rb +0 -6
  937. data/lib/aws-sdk-core/amplify.rb +0 -6
  938. data/lib/aws-sdk-core/api/builder.rb +0 -129
  939. data/lib/aws-sdk-core/api/customizations.rb +0 -299
  940. data/lib/aws-sdk-core/api/docs/builder.rb +0 -223
  941. data/lib/aws-sdk-core/api/docs/client_type_documenter.rb +0 -118
  942. data/lib/aws-sdk-core/api/docs/crosslink.rb +0 -43
  943. data/lib/aws-sdk-core/api/docs/docstring_provider.rb +0 -75
  944. data/lib/aws-sdk-core/api/docs/operation_documenter.rb +0 -151
  945. data/lib/aws-sdk-core/api/docs/param_formatter.rb +0 -163
  946. data/lib/aws-sdk-core/api/docs/request_syntax_example.rb +0 -22
  947. data/lib/aws-sdk-core/api/docs/response_structure_example.rb +0 -91
  948. data/lib/aws-sdk-core/api/docs/shared_example.rb +0 -100
  949. data/lib/aws-sdk-core/api/docs/utils.rb +0 -133
  950. data/lib/aws-sdk-core/api/shape_map.rb +0 -146
  951. data/lib/aws-sdk-core/apigateway.rb +0 -6
  952. data/lib/aws-sdk-core/apigatewaymanagementapi.rb +0 -5
  953. data/lib/aws-sdk-core/apigatewayv2.rb +0 -5
  954. data/lib/aws-sdk-core/applicationautoscaling.rb +0 -6
  955. data/lib/aws-sdk-core/applicationdiscoveryservice.rb +0 -6
  956. data/lib/aws-sdk-core/appmesh.rb +0 -6
  957. data/lib/aws-sdk-core/appstream.rb +0 -7
  958. data/lib/aws-sdk-core/appsync.rb +0 -6
  959. data/lib/aws-sdk-core/athena.rb +0 -6
  960. data/lib/aws-sdk-core/autoscaling.rb +0 -8
  961. data/lib/aws-sdk-core/autoscalingplans.rb +0 -6
  962. data/lib/aws-sdk-core/backup.rb +0 -6
  963. data/lib/aws-sdk-core/batch.rb +0 -6
  964. data/lib/aws-sdk-core/budgets.rb +0 -6
  965. data/lib/aws-sdk-core/checksums.rb +0 -51
  966. data/lib/aws-sdk-core/chime.rb +0 -6
  967. data/lib/aws-sdk-core/client.rb +0 -62
  968. data/lib/aws-sdk-core/client_waiters.rb +0 -120
  969. data/lib/aws-sdk-core/cloud9.rb +0 -6
  970. data/lib/aws-sdk-core/clouddirectory.rb +0 -6
  971. data/lib/aws-sdk-core/cloudformation.rb +0 -8
  972. data/lib/aws-sdk-core/cloudfront/cookie_signer.rb +0 -44
  973. data/lib/aws-sdk-core/cloudfront/signer.rb +0 -141
  974. data/lib/aws-sdk-core/cloudfront/url_signer.rb +0 -48
  975. data/lib/aws-sdk-core/cloudfront.rb +0 -17
  976. data/lib/aws-sdk-core/cloudhsm.rb +0 -6
  977. data/lib/aws-sdk-core/cloudhsmv2.rb +0 -6
  978. data/lib/aws-sdk-core/cloudsearch.rb +0 -5
  979. data/lib/aws-sdk-core/cloudsearchdomain.rb +0 -5
  980. data/lib/aws-sdk-core/cloudtrail.rb +0 -6
  981. data/lib/aws-sdk-core/cloudwatch.rb +0 -8
  982. data/lib/aws-sdk-core/cloudwatchevents.rb +0 -6
  983. data/lib/aws-sdk-core/cloudwatchlogs.rb +0 -6
  984. data/lib/aws-sdk-core/codebuild.rb +0 -6
  985. data/lib/aws-sdk-core/codecommit.rb +0 -6
  986. data/lib/aws-sdk-core/codedeploy.rb +0 -7
  987. data/lib/aws-sdk-core/codepipeline.rb +0 -6
  988. data/lib/aws-sdk-core/codestar.rb +0 -6
  989. data/lib/aws-sdk-core/cognitoidentity.rb +0 -6
  990. data/lib/aws-sdk-core/cognitoidentityprovider.rb +0 -6
  991. data/lib/aws-sdk-core/cognitosync.rb +0 -4
  992. data/lib/aws-sdk-core/comprehend.rb +0 -6
  993. data/lib/aws-sdk-core/comprehendmedical.rb +0 -6
  994. data/lib/aws-sdk-core/configservice.rb +0 -6
  995. data/lib/aws-sdk-core/connect.rb +0 -6
  996. data/lib/aws-sdk-core/costandusagereportservice.rb +0 -6
  997. data/lib/aws-sdk-core/costexplorer.rb +0 -6
  998. data/lib/aws-sdk-core/databasemigrationservice.rb +0 -7
  999. data/lib/aws-sdk-core/datapipeline.rb +0 -5
  1000. data/lib/aws-sdk-core/datasync.rb +0 -6
  1001. data/lib/aws-sdk-core/dax.rb +0 -6
  1002. data/lib/aws-sdk-core/devicefarm.rb +0 -6
  1003. data/lib/aws-sdk-core/directconnect.rb +0 -6
  1004. data/lib/aws-sdk-core/directoryservice.rb +0 -6
  1005. data/lib/aws-sdk-core/dlm.rb +0 -6
  1006. data/lib/aws-sdk-core/docdb.rb +0 -7
  1007. data/lib/aws-sdk-core/dynamodb/attribute_value.rb +0 -110
  1008. data/lib/aws-sdk-core/dynamodb.rb +0 -40
  1009. data/lib/aws-sdk-core/dynamodbstreams.rb +0 -6
  1010. data/lib/aws-sdk-core/ec2.rb +0 -8
  1011. data/lib/aws-sdk-core/ecr.rb +0 -6
  1012. data/lib/aws-sdk-core/ecs.rb +0 -7
  1013. data/lib/aws-sdk-core/efs.rb +0 -6
  1014. data/lib/aws-sdk-core/eks.rb +0 -7
  1015. data/lib/aws-sdk-core/elasticache.rb +0 -7
  1016. data/lib/aws-sdk-core/elasticbeanstalk.rb +0 -6
  1017. data/lib/aws-sdk-core/elasticloadbalancing.rb +0 -7
  1018. data/lib/aws-sdk-core/elasticloadbalancingv2.rb +0 -7
  1019. data/lib/aws-sdk-core/elasticsearchservice.rb +0 -6
  1020. data/lib/aws-sdk-core/elastictranscoder.rb +0 -7
  1021. data/lib/aws-sdk-core/empty_structure.rb +0 -3
  1022. data/lib/aws-sdk-core/emr.rb +0 -7
  1023. data/lib/aws-sdk-core/endpoint_provider.rb +0 -104
  1024. data/lib/aws-sdk-core/firehose.rb +0 -6
  1025. data/lib/aws-sdk-core/fms.rb +0 -6
  1026. data/lib/aws-sdk-core/fsx.rb +0 -6
  1027. data/lib/aws-sdk-core/gamelift.rb +0 -6
  1028. data/lib/aws-sdk-core/glacier.rb +0 -8
  1029. data/lib/aws-sdk-core/globalaccelerator.rb +0 -6
  1030. data/lib/aws-sdk-core/glue.rb +0 -6
  1031. data/lib/aws-sdk-core/greengrass.rb +0 -4
  1032. data/lib/aws-sdk-core/guardduty.rb +0 -5
  1033. data/lib/aws-sdk-core/health.rb +0 -6
  1034. data/lib/aws-sdk-core/iam.rb +0 -8
  1035. data/lib/aws-sdk-core/importexport.rb +0 -5
  1036. data/lib/aws-sdk-core/inspector.rb +0 -6
  1037. data/lib/aws-sdk-core/iot.rb +0 -6
  1038. data/lib/aws-sdk-core/iot1clickdevicesservice.rb +0 -4
  1039. data/lib/aws-sdk-core/iot1clickprojects.rb +0 -6
  1040. data/lib/aws-sdk-core/iotanalytics.rb +0 -6
  1041. data/lib/aws-sdk-core/iotdataplane.rb +0 -4
  1042. data/lib/aws-sdk-core/iotjobsdataplane.rb +0 -6
  1043. data/lib/aws-sdk-core/kafka.rb +0 -5
  1044. data/lib/aws-sdk-core/kinesis.rb +0 -7
  1045. data/lib/aws-sdk-core/kinesisanalytics.rb +0 -6
  1046. data/lib/aws-sdk-core/kinesisanalyticsv2.rb +0 -6
  1047. data/lib/aws-sdk-core/kinesisvideo.rb +0 -6
  1048. data/lib/aws-sdk-core/kinesisvideoarchivedmedia.rb +0 -6
  1049. data/lib/aws-sdk-core/kinesisvideomedia.rb +0 -6
  1050. data/lib/aws-sdk-core/kms.rb +0 -6
  1051. data/lib/aws-sdk-core/lambda.rb +0 -6
  1052. data/lib/aws-sdk-core/lambdapreview.rb +0 -5
  1053. data/lib/aws-sdk-core/lex.rb +0 -6
  1054. data/lib/aws-sdk-core/lexmodelbuildingservice.rb +0 -6
  1055. data/lib/aws-sdk-core/licensemanager.rb +0 -6
  1056. data/lib/aws-sdk-core/lightsail.rb +0 -6
  1057. data/lib/aws-sdk-core/machinelearning.rb +0 -7
  1058. data/lib/aws-sdk-core/macie.rb +0 -6
  1059. data/lib/aws-sdk-core/marketplacecommerceanalytics.rb +0 -6
  1060. data/lib/aws-sdk-core/marketplaceentitlementservice.rb +0 -6
  1061. data/lib/aws-sdk-core/marketplacemetering.rb +0 -6
  1062. data/lib/aws-sdk-core/mediaconnect.rb +0 -5
  1063. data/lib/aws-sdk-core/mediaconvert.rb +0 -5
  1064. data/lib/aws-sdk-core/medialive.rb +0 -5
  1065. data/lib/aws-sdk-core/mediapackage.rb +0 -5
  1066. data/lib/aws-sdk-core/mediastore.rb +0 -6
  1067. data/lib/aws-sdk-core/mediastoredata.rb +0 -6
  1068. data/lib/aws-sdk-core/mediatailor.rb +0 -5
  1069. data/lib/aws-sdk-core/migrationhub.rb +0 -6
  1070. data/lib/aws-sdk-core/mobile.rb +0 -6
  1071. data/lib/aws-sdk-core/mq.rb +0 -5
  1072. data/lib/aws-sdk-core/mturk.rb +0 -6
  1073. data/lib/aws-sdk-core/neptune.rb +0 -7
  1074. data/lib/aws-sdk-core/opsworks.rb +0 -8
  1075. data/lib/aws-sdk-core/opsworkscm.rb +0 -7
  1076. data/lib/aws-sdk-core/organizations.rb +0 -6
  1077. data/lib/aws-sdk-core/partitions/partition.rb +0 -95
  1078. data/lib/aws-sdk-core/partitions/partition_list.rb +0 -60
  1079. data/lib/aws-sdk-core/partitions/region.rb +0 -66
  1080. data/lib/aws-sdk-core/partitions/service.rb +0 -75
  1081. data/lib/aws-sdk-core/partitions.rb +0 -174
  1082. data/lib/aws-sdk-core/pi.rb +0 -6
  1083. data/lib/aws-sdk-core/pinpoint.rb +0 -5
  1084. data/lib/aws-sdk-core/pinpointemail.rb +0 -6
  1085. data/lib/aws-sdk-core/pinpointsmsvoice.rb +0 -4
  1086. data/lib/aws-sdk-core/plugins/api_gateway_header.rb +0 -19
  1087. data/lib/aws-sdk-core/plugins/csd_conditional_signing.rb +0 -30
  1088. data/lib/aws-sdk-core/plugins/csd_switch_to_post.rb +0 -36
  1089. data/lib/aws-sdk-core/plugins/dynamodb_crc32_validation.rb +0 -52
  1090. data/lib/aws-sdk-core/plugins/dynamodb_extended_retries.rb +0 -22
  1091. data/lib/aws-sdk-core/plugins/dynamodb_simple_attributes.rb +0 -208
  1092. data/lib/aws-sdk-core/plugins/ec2_copy_encrypted_snapshot.rb +0 -56
  1093. data/lib/aws-sdk-core/plugins/ec2_region_validation.rb +0 -17
  1094. data/lib/aws-sdk-core/plugins/glacier_account_id.rb +0 -19
  1095. data/lib/aws-sdk-core/plugins/glacier_api_version.rb +0 -19
  1096. data/lib/aws-sdk-core/plugins/glacier_checksums.rb +0 -87
  1097. data/lib/aws-sdk-core/plugins/machine_learning_predict_endpoint.rb +0 -20
  1098. data/lib/aws-sdk-core/plugins/rds_cross_region_copying.rb +0 -69
  1099. data/lib/aws-sdk-core/plugins/request_signer.rb +0 -150
  1100. data/lib/aws-sdk-core/plugins/route_53_id_fix.rb +0 -55
  1101. data/lib/aws-sdk-core/plugins/s3_accelerate.rb +0 -90
  1102. data/lib/aws-sdk-core/plugins/s3_bucket_dns.rb +0 -86
  1103. data/lib/aws-sdk-core/plugins/s3_bucket_name_restrictions.rb +0 -21
  1104. data/lib/aws-sdk-core/plugins/s3_control_dns.rb +0 -25
  1105. data/lib/aws-sdk-core/plugins/s3_control_dualstack.rb +0 -48
  1106. data/lib/aws-sdk-core/plugins/s3_control_signer.rb +0 -53
  1107. data/lib/aws-sdk-core/plugins/s3_dualstack.rb +0 -67
  1108. data/lib/aws-sdk-core/plugins/s3_expect_100_continue.rb +0 -27
  1109. data/lib/aws-sdk-core/plugins/s3_get_bucket_location_fix.rb +0 -21
  1110. data/lib/aws-sdk-core/plugins/s3_host_id.rb +0 -26
  1111. data/lib/aws-sdk-core/plugins/s3_http_200_errors.rb +0 -45
  1112. data/lib/aws-sdk-core/plugins/s3_location_constraint.rb +0 -31
  1113. data/lib/aws-sdk-core/plugins/s3_md5s.rb +0 -50
  1114. data/lib/aws-sdk-core/plugins/s3_redirects.rb +0 -37
  1115. data/lib/aws-sdk-core/plugins/s3_request_signer.rb +0 -166
  1116. data/lib/aws-sdk-core/plugins/s3_sse_cpk.rb +0 -64
  1117. data/lib/aws-sdk-core/plugins/s3_url_encoded_keys.rb +0 -93
  1118. data/lib/aws-sdk-core/plugins/sqs_md5s.rb +0 -162
  1119. data/lib/aws-sdk-core/plugins/sqs_queue_urls.rb +0 -34
  1120. data/lib/aws-sdk-core/plugins/swf_read_timeouts.rb +0 -23
  1121. data/lib/aws-sdk-core/polly/presigner.rb +0 -70
  1122. data/lib/aws-sdk-core/polly.rb +0 -14
  1123. data/lib/aws-sdk-core/pricing.rb +0 -6
  1124. data/lib/aws-sdk-core/quicksight.rb +0 -6
  1125. data/lib/aws-sdk-core/ram.rb +0 -6
  1126. data/lib/aws-sdk-core/rds/auth_token_generator.rb +0 -63
  1127. data/lib/aws-sdk-core/rds.rb +0 -16
  1128. data/lib/aws-sdk-core/rdsdataservice.rb +0 -6
  1129. data/lib/aws-sdk-core/redshift.rb +0 -7
  1130. data/lib/aws-sdk-core/rekognition.rb +0 -6
  1131. data/lib/aws-sdk-core/resourcegroups.rb +0 -6
  1132. data/lib/aws-sdk-core/resourcegroupstaggingapi.rb +0 -6
  1133. data/lib/aws-sdk-core/robomaker.rb +0 -6
  1134. data/lib/aws-sdk-core/route53.rb +0 -7
  1135. data/lib/aws-sdk-core/route53domains.rb +0 -6
  1136. data/lib/aws-sdk-core/route53resolver.rb +0 -6
  1137. data/lib/aws-sdk-core/s3/bucket_region_cache.rb +0 -75
  1138. data/lib/aws-sdk-core/s3/presigner.rb +0 -116
  1139. data/lib/aws-sdk-core/s3.rb +0 -26
  1140. data/lib/aws-sdk-core/s3control.rb +0 -6
  1141. data/lib/aws-sdk-core/sagemaker.rb +0 -7
  1142. data/lib/aws-sdk-core/sagemakerruntime.rb +0 -6
  1143. data/lib/aws-sdk-core/secretsmanager.rb +0 -6
  1144. data/lib/aws-sdk-core/securityhub.rb +0 -6
  1145. data/lib/aws-sdk-core/serverlessapplicationrepository.rb +0 -5
  1146. data/lib/aws-sdk-core/service.rb +0 -4
  1147. data/lib/aws-sdk-core/servicecatalog.rb +0 -6
  1148. data/lib/aws-sdk-core/servicediscovery.rb +0 -6
  1149. data/lib/aws-sdk-core/ses.rb +0 -7
  1150. data/lib/aws-sdk-core/shield.rb +0 -6
  1151. data/lib/aws-sdk-core/signer.rb +0 -7
  1152. data/lib/aws-sdk-core/signers/base.rb +0 -31
  1153. data/lib/aws-sdk-core/signers/s3.rb +0 -185
  1154. data/lib/aws-sdk-core/signers/v2.rb +0 -51
  1155. data/lib/aws-sdk-core/signers/v3.rb +0 -34
  1156. data/lib/aws-sdk-core/signers/v4.rb +0 -234
  1157. data/lib/aws-sdk-core/simpledb.rb +0 -5
  1158. data/lib/aws-sdk-core/sms.rb +0 -6
  1159. data/lib/aws-sdk-core/snowball.rb +0 -6
  1160. data/lib/aws-sdk-core/sns.rb +0 -7
  1161. data/lib/aws-sdk-core/sqs.rb +0 -7
  1162. data/lib/aws-sdk-core/ssm.rb +0 -6
  1163. data/lib/aws-sdk-core/states.rb +0 -6
  1164. data/lib/aws-sdk-core/storagegateway.rb +0 -6
  1165. data/lib/aws-sdk-core/sts.rb +0 -6
  1166. data/lib/aws-sdk-core/support.rb +0 -6
  1167. data/lib/aws-sdk-core/swf.rb +0 -6
  1168. data/lib/aws-sdk-core/transcribeservice.rb +0 -6
  1169. data/lib/aws-sdk-core/transfer.rb +0 -6
  1170. data/lib/aws-sdk-core/translate.rb +0 -6
  1171. data/lib/aws-sdk-core/tree_hash.rb +0 -69
  1172. data/lib/aws-sdk-core/version.rb +0 -3
  1173. data/lib/aws-sdk-core/waf.rb +0 -6
  1174. data/lib/aws-sdk-core/wafregional.rb +0 -6
  1175. data/lib/aws-sdk-core/waiters/null_provider.rb +0 -12
  1176. data/lib/aws-sdk-core/waiters/provider.rb +0 -35
  1177. data/lib/aws-sdk-core/workdocs.rb +0 -6
  1178. data/lib/aws-sdk-core/worklink.rb +0 -6
  1179. data/lib/aws-sdk-core/workmail.rb +0 -6
  1180. data/lib/aws-sdk-core/workspaces.rb +0 -6
  1181. data/lib/aws-sdk-core/xray.rb +0 -6
  1182. data/lib/seahorse/client/plugins/restful_bindings.rb +0 -125
  1183. data/service-models.json +0 -689
@@ -1,2842 +0,0 @@
1
- {
2
- "version":"2.0",
3
- "metadata":{
4
- "apiVersion":"2015-04-13",
5
- "endpointPrefix":"codecommit",
6
- "jsonVersion":"1.1",
7
- "protocol":"json",
8
- "serviceAbbreviation":"CodeCommit",
9
- "serviceFullName":"AWS CodeCommit",
10
- "serviceId":"CodeCommit",
11
- "signatureVersion":"v4",
12
- "targetPrefix":"CodeCommit_20150413",
13
- "uid":"codecommit-2015-04-13"
14
- },
15
- "operations":{
16
- "BatchGetRepositories":{
17
- "name":"BatchGetRepositories",
18
- "http":{
19
- "method":"POST",
20
- "requestUri":"/"
21
- },
22
- "input":{"shape":"BatchGetRepositoriesInput"},
23
- "output":{"shape":"BatchGetRepositoriesOutput"},
24
- "errors":[
25
- {"shape":"RepositoryNamesRequiredException"},
26
- {"shape":"MaximumRepositoryNamesExceededException"},
27
- {"shape":"InvalidRepositoryNameException"},
28
- {"shape":"EncryptionIntegrityChecksFailedException"},
29
- {"shape":"EncryptionKeyAccessDeniedException"},
30
- {"shape":"EncryptionKeyDisabledException"},
31
- {"shape":"EncryptionKeyNotFoundException"},
32
- {"shape":"EncryptionKeyUnavailableException"}
33
- ]
34
- },
35
- "CreateBranch":{
36
- "name":"CreateBranch",
37
- "http":{
38
- "method":"POST",
39
- "requestUri":"/"
40
- },
41
- "input":{"shape":"CreateBranchInput"},
42
- "errors":[
43
- {"shape":"RepositoryNameRequiredException"},
44
- {"shape":"InvalidRepositoryNameException"},
45
- {"shape":"RepositoryDoesNotExistException"},
46
- {"shape":"BranchNameRequiredException"},
47
- {"shape":"BranchNameExistsException"},
48
- {"shape":"InvalidBranchNameException"},
49
- {"shape":"CommitIdRequiredException"},
50
- {"shape":"CommitDoesNotExistException"},
51
- {"shape":"InvalidCommitIdException"},
52
- {"shape":"EncryptionIntegrityChecksFailedException"},
53
- {"shape":"EncryptionKeyAccessDeniedException"},
54
- {"shape":"EncryptionKeyDisabledException"},
55
- {"shape":"EncryptionKeyNotFoundException"},
56
- {"shape":"EncryptionKeyUnavailableException"}
57
- ]
58
- },
59
- "CreatePullRequest":{
60
- "name":"CreatePullRequest",
61
- "http":{
62
- "method":"POST",
63
- "requestUri":"/"
64
- },
65
- "input":{"shape":"CreatePullRequestInput"},
66
- "output":{"shape":"CreatePullRequestOutput"},
67
- "errors":[
68
- {"shape":"RepositoryNameRequiredException"},
69
- {"shape":"InvalidRepositoryNameException"},
70
- {"shape":"RepositoryDoesNotExistException"},
71
- {"shape":"EncryptionIntegrityChecksFailedException"},
72
- {"shape":"EncryptionKeyAccessDeniedException"},
73
- {"shape":"EncryptionKeyDisabledException"},
74
- {"shape":"EncryptionKeyNotFoundException"},
75
- {"shape":"EncryptionKeyUnavailableException"},
76
- {"shape":"ClientRequestTokenRequiredException"},
77
- {"shape":"InvalidClientRequestTokenException"},
78
- {"shape":"IdempotencyParameterMismatchException"},
79
- {"shape":"ReferenceNameRequiredException"},
80
- {"shape":"InvalidReferenceNameException"},
81
- {"shape":"ReferenceDoesNotExistException"},
82
- {"shape":"ReferenceTypeNotSupportedException"},
83
- {"shape":"TitleRequiredException"},
84
- {"shape":"InvalidTitleException"},
85
- {"shape":"InvalidDescriptionException"},
86
- {"shape":"TargetsRequiredException"},
87
- {"shape":"InvalidTargetsException"},
88
- {"shape":"TargetRequiredException"},
89
- {"shape":"InvalidTargetException"},
90
- {"shape":"MultipleRepositoriesInPullRequestException"},
91
- {"shape":"MaximumOpenPullRequestsExceededException"},
92
- {"shape":"SourceAndDestinationAreSameException"}
93
- ]
94
- },
95
- "CreateRepository":{
96
- "name":"CreateRepository",
97
- "http":{
98
- "method":"POST",
99
- "requestUri":"/"
100
- },
101
- "input":{"shape":"CreateRepositoryInput"},
102
- "output":{"shape":"CreateRepositoryOutput"},
103
- "errors":[
104
- {"shape":"RepositoryNameExistsException"},
105
- {"shape":"RepositoryNameRequiredException"},
106
- {"shape":"InvalidRepositoryNameException"},
107
- {"shape":"InvalidRepositoryDescriptionException"},
108
- {"shape":"RepositoryLimitExceededException"},
109
- {"shape":"EncryptionIntegrityChecksFailedException"},
110
- {"shape":"EncryptionKeyAccessDeniedException"},
111
- {"shape":"EncryptionKeyDisabledException"},
112
- {"shape":"EncryptionKeyNotFoundException"},
113
- {"shape":"EncryptionKeyUnavailableException"}
114
- ]
115
- },
116
- "DeleteBranch":{
117
- "name":"DeleteBranch",
118
- "http":{
119
- "method":"POST",
120
- "requestUri":"/"
121
- },
122
- "input":{"shape":"DeleteBranchInput"},
123
- "output":{"shape":"DeleteBranchOutput"},
124
- "errors":[
125
- {"shape":"RepositoryNameRequiredException"},
126
- {"shape":"RepositoryDoesNotExistException"},
127
- {"shape":"InvalidRepositoryNameException"},
128
- {"shape":"BranchNameRequiredException"},
129
- {"shape":"InvalidBranchNameException"},
130
- {"shape":"DefaultBranchCannotBeDeletedException"},
131
- {"shape":"EncryptionIntegrityChecksFailedException"},
132
- {"shape":"EncryptionKeyAccessDeniedException"},
133
- {"shape":"EncryptionKeyDisabledException"},
134
- {"shape":"EncryptionKeyNotFoundException"},
135
- {"shape":"EncryptionKeyUnavailableException"}
136
- ]
137
- },
138
- "DeleteCommentContent":{
139
- "name":"DeleteCommentContent",
140
- "http":{
141
- "method":"POST",
142
- "requestUri":"/"
143
- },
144
- "input":{"shape":"DeleteCommentContentInput"},
145
- "output":{"shape":"DeleteCommentContentOutput"},
146
- "errors":[
147
- {"shape":"CommentDoesNotExistException"},
148
- {"shape":"CommentIdRequiredException"},
149
- {"shape":"InvalidCommentIdException"},
150
- {"shape":"CommentDeletedException"}
151
- ]
152
- },
153
- "DeleteFile":{
154
- "name":"DeleteFile",
155
- "http":{
156
- "method":"POST",
157
- "requestUri":"/"
158
- },
159
- "input":{"shape":"DeleteFileInput"},
160
- "output":{"shape":"DeleteFileOutput"},
161
- "errors":[
162
- {"shape":"RepositoryNameRequiredException"},
163
- {"shape":"InvalidRepositoryNameException"},
164
- {"shape":"RepositoryDoesNotExistException"},
165
- {"shape":"ParentCommitIdRequiredException"},
166
- {"shape":"InvalidParentCommitIdException"},
167
- {"shape":"ParentCommitDoesNotExistException"},
168
- {"shape":"ParentCommitIdOutdatedException"},
169
- {"shape":"PathRequiredException"},
170
- {"shape":"InvalidPathException"},
171
- {"shape":"FileDoesNotExistException"},
172
- {"shape":"BranchNameRequiredException"},
173
- {"shape":"InvalidBranchNameException"},
174
- {"shape":"BranchDoesNotExistException"},
175
- {"shape":"BranchNameIsTagNameException"},
176
- {"shape":"NameLengthExceededException"},
177
- {"shape":"InvalidEmailException"},
178
- {"shape":"CommitMessageLengthExceededException"},
179
- {"shape":"EncryptionIntegrityChecksFailedException"},
180
- {"shape":"EncryptionKeyAccessDeniedException"},
181
- {"shape":"EncryptionKeyDisabledException"},
182
- {"shape":"EncryptionKeyNotFoundException"},
183
- {"shape":"EncryptionKeyUnavailableException"}
184
- ]
185
- },
186
- "DeleteRepository":{
187
- "name":"DeleteRepository",
188
- "http":{
189
- "method":"POST",
190
- "requestUri":"/"
191
- },
192
- "input":{"shape":"DeleteRepositoryInput"},
193
- "output":{"shape":"DeleteRepositoryOutput"},
194
- "errors":[
195
- {"shape":"RepositoryNameRequiredException"},
196
- {"shape":"InvalidRepositoryNameException"},
197
- {"shape":"EncryptionIntegrityChecksFailedException"},
198
- {"shape":"EncryptionKeyAccessDeniedException"},
199
- {"shape":"EncryptionKeyDisabledException"},
200
- {"shape":"EncryptionKeyNotFoundException"},
201
- {"shape":"EncryptionKeyUnavailableException"}
202
- ]
203
- },
204
- "DescribePullRequestEvents":{
205
- "name":"DescribePullRequestEvents",
206
- "http":{
207
- "method":"POST",
208
- "requestUri":"/"
209
- },
210
- "input":{"shape":"DescribePullRequestEventsInput"},
211
- "output":{"shape":"DescribePullRequestEventsOutput"},
212
- "errors":[
213
- {"shape":"PullRequestDoesNotExistException"},
214
- {"shape":"InvalidPullRequestIdException"},
215
- {"shape":"PullRequestIdRequiredException"},
216
- {"shape":"InvalidPullRequestEventTypeException"},
217
- {"shape":"InvalidActorArnException"},
218
- {"shape":"ActorDoesNotExistException"},
219
- {"shape":"InvalidMaxResultsException"},
220
- {"shape":"InvalidContinuationTokenException"},
221
- {"shape":"EncryptionIntegrityChecksFailedException"},
222
- {"shape":"EncryptionKeyAccessDeniedException"},
223
- {"shape":"EncryptionKeyDisabledException"},
224
- {"shape":"EncryptionKeyNotFoundException"},
225
- {"shape":"EncryptionKeyUnavailableException"}
226
- ]
227
- },
228
- "GetBlob":{
229
- "name":"GetBlob",
230
- "http":{
231
- "method":"POST",
232
- "requestUri":"/"
233
- },
234
- "input":{"shape":"GetBlobInput"},
235
- "output":{"shape":"GetBlobOutput"},
236
- "errors":[
237
- {"shape":"RepositoryNameRequiredException"},
238
- {"shape":"InvalidRepositoryNameException"},
239
- {"shape":"RepositoryDoesNotExistException"},
240
- {"shape":"BlobIdRequiredException"},
241
- {"shape":"InvalidBlobIdException"},
242
- {"shape":"BlobIdDoesNotExistException"},
243
- {"shape":"EncryptionIntegrityChecksFailedException"},
244
- {"shape":"EncryptionKeyAccessDeniedException"},
245
- {"shape":"EncryptionKeyDisabledException"},
246
- {"shape":"EncryptionKeyNotFoundException"},
247
- {"shape":"EncryptionKeyUnavailableException"},
248
- {"shape":"FileTooLargeException"}
249
- ]
250
- },
251
- "GetBranch":{
252
- "name":"GetBranch",
253
- "http":{
254
- "method":"POST",
255
- "requestUri":"/"
256
- },
257
- "input":{"shape":"GetBranchInput"},
258
- "output":{"shape":"GetBranchOutput"},
259
- "errors":[
260
- {"shape":"RepositoryNameRequiredException"},
261
- {"shape":"RepositoryDoesNotExistException"},
262
- {"shape":"InvalidRepositoryNameException"},
263
- {"shape":"BranchNameRequiredException"},
264
- {"shape":"InvalidBranchNameException"},
265
- {"shape":"BranchDoesNotExistException"},
266
- {"shape":"EncryptionIntegrityChecksFailedException"},
267
- {"shape":"EncryptionKeyAccessDeniedException"},
268
- {"shape":"EncryptionKeyDisabledException"},
269
- {"shape":"EncryptionKeyNotFoundException"},
270
- {"shape":"EncryptionKeyUnavailableException"}
271
- ]
272
- },
273
- "GetComment":{
274
- "name":"GetComment",
275
- "http":{
276
- "method":"POST",
277
- "requestUri":"/"
278
- },
279
- "input":{"shape":"GetCommentInput"},
280
- "output":{"shape":"GetCommentOutput"},
281
- "errors":[
282
- {"shape":"CommentDoesNotExistException"},
283
- {"shape":"CommentIdRequiredException"},
284
- {"shape":"InvalidCommentIdException"},
285
- {"shape":"CommentDeletedException"}
286
- ]
287
- },
288
- "GetCommentsForComparedCommit":{
289
- "name":"GetCommentsForComparedCommit",
290
- "http":{
291
- "method":"POST",
292
- "requestUri":"/"
293
- },
294
- "input":{"shape":"GetCommentsForComparedCommitInput"},
295
- "output":{"shape":"GetCommentsForComparedCommitOutput"},
296
- "errors":[
297
- {"shape":"RepositoryNameRequiredException"},
298
- {"shape":"RepositoryDoesNotExistException"},
299
- {"shape":"InvalidRepositoryNameException"},
300
- {"shape":"CommitIdRequiredException"},
301
- {"shape":"InvalidCommitIdException"},
302
- {"shape":"CommitDoesNotExistException"},
303
- {"shape":"InvalidMaxResultsException"},
304
- {"shape":"InvalidContinuationTokenException"},
305
- {"shape":"EncryptionIntegrityChecksFailedException"},
306
- {"shape":"EncryptionKeyAccessDeniedException"},
307
- {"shape":"EncryptionKeyDisabledException"},
308
- {"shape":"EncryptionKeyNotFoundException"},
309
- {"shape":"EncryptionKeyUnavailableException"}
310
- ]
311
- },
312
- "GetCommentsForPullRequest":{
313
- "name":"GetCommentsForPullRequest",
314
- "http":{
315
- "method":"POST",
316
- "requestUri":"/"
317
- },
318
- "input":{"shape":"GetCommentsForPullRequestInput"},
319
- "output":{"shape":"GetCommentsForPullRequestOutput"},
320
- "errors":[
321
- {"shape":"PullRequestIdRequiredException"},
322
- {"shape":"PullRequestDoesNotExistException"},
323
- {"shape":"InvalidPullRequestIdException"},
324
- {"shape":"RepositoryNameRequiredException"},
325
- {"shape":"RepositoryDoesNotExistException"},
326
- {"shape":"InvalidRepositoryNameException"},
327
- {"shape":"CommitIdRequiredException"},
328
- {"shape":"InvalidCommitIdException"},
329
- {"shape":"CommitDoesNotExistException"},
330
- {"shape":"InvalidMaxResultsException"},
331
- {"shape":"InvalidContinuationTokenException"},
332
- {"shape":"RepositoryNotAssociatedWithPullRequestException"},
333
- {"shape":"EncryptionIntegrityChecksFailedException"},
334
- {"shape":"EncryptionKeyAccessDeniedException"},
335
- {"shape":"EncryptionKeyDisabledException"},
336
- {"shape":"EncryptionKeyNotFoundException"},
337
- {"shape":"EncryptionKeyUnavailableException"}
338
- ]
339
- },
340
- "GetCommit":{
341
- "name":"GetCommit",
342
- "http":{
343
- "method":"POST",
344
- "requestUri":"/"
345
- },
346
- "input":{"shape":"GetCommitInput"},
347
- "output":{"shape":"GetCommitOutput"},
348
- "errors":[
349
- {"shape":"RepositoryNameRequiredException"},
350
- {"shape":"InvalidRepositoryNameException"},
351
- {"shape":"RepositoryDoesNotExistException"},
352
- {"shape":"CommitIdRequiredException"},
353
- {"shape":"InvalidCommitIdException"},
354
- {"shape":"CommitIdDoesNotExistException"},
355
- {"shape":"EncryptionIntegrityChecksFailedException"},
356
- {"shape":"EncryptionKeyAccessDeniedException"},
357
- {"shape":"EncryptionKeyDisabledException"},
358
- {"shape":"EncryptionKeyNotFoundException"},
359
- {"shape":"EncryptionKeyUnavailableException"}
360
- ]
361
- },
362
- "GetDifferences":{
363
- "name":"GetDifferences",
364
- "http":{
365
- "method":"POST",
366
- "requestUri":"/"
367
- },
368
- "input":{"shape":"GetDifferencesInput"},
369
- "output":{"shape":"GetDifferencesOutput"},
370
- "errors":[
371
- {"shape":"RepositoryNameRequiredException"},
372
- {"shape":"RepositoryDoesNotExistException"},
373
- {"shape":"InvalidRepositoryNameException"},
374
- {"shape":"InvalidContinuationTokenException"},
375
- {"shape":"InvalidMaxResultsException"},
376
- {"shape":"InvalidCommitIdException"},
377
- {"shape":"CommitRequiredException"},
378
- {"shape":"InvalidCommitException"},
379
- {"shape":"CommitDoesNotExistException"},
380
- {"shape":"InvalidPathException"},
381
- {"shape":"PathDoesNotExistException"},
382
- {"shape":"EncryptionIntegrityChecksFailedException"},
383
- {"shape":"EncryptionKeyAccessDeniedException"},
384
- {"shape":"EncryptionKeyDisabledException"},
385
- {"shape":"EncryptionKeyNotFoundException"},
386
- {"shape":"EncryptionKeyUnavailableException"}
387
- ]
388
- },
389
- "GetFile":{
390
- "name":"GetFile",
391
- "http":{
392
- "method":"POST",
393
- "requestUri":"/"
394
- },
395
- "input":{"shape":"GetFileInput"},
396
- "output":{"shape":"GetFileOutput"},
397
- "errors":[
398
- {"shape":"RepositoryNameRequiredException"},
399
- {"shape":"InvalidRepositoryNameException"},
400
- {"shape":"RepositoryDoesNotExistException"},
401
- {"shape":"InvalidCommitException"},
402
- {"shape":"CommitDoesNotExistException"},
403
- {"shape":"PathRequiredException"},
404
- {"shape":"InvalidPathException"},
405
- {"shape":"FileDoesNotExistException"},
406
- {"shape":"EncryptionIntegrityChecksFailedException"},
407
- {"shape":"EncryptionKeyAccessDeniedException"},
408
- {"shape":"EncryptionKeyDisabledException"},
409
- {"shape":"EncryptionKeyNotFoundException"},
410
- {"shape":"EncryptionKeyUnavailableException"},
411
- {"shape":"FileTooLargeException"}
412
- ]
413
- },
414
- "GetFolder":{
415
- "name":"GetFolder",
416
- "http":{
417
- "method":"POST",
418
- "requestUri":"/"
419
- },
420
- "input":{"shape":"GetFolderInput"},
421
- "output":{"shape":"GetFolderOutput"},
422
- "errors":[
423
- {"shape":"RepositoryNameRequiredException"},
424
- {"shape":"InvalidRepositoryNameException"},
425
- {"shape":"RepositoryDoesNotExistException"},
426
- {"shape":"InvalidCommitException"},
427
- {"shape":"CommitDoesNotExistException"},
428
- {"shape":"PathRequiredException"},
429
- {"shape":"InvalidPathException"},
430
- {"shape":"FolderDoesNotExistException"},
431
- {"shape":"EncryptionIntegrityChecksFailedException"},
432
- {"shape":"EncryptionKeyAccessDeniedException"},
433
- {"shape":"EncryptionKeyDisabledException"},
434
- {"shape":"EncryptionKeyNotFoundException"},
435
- {"shape":"EncryptionKeyUnavailableException"}
436
- ]
437
- },
438
- "GetMergeConflicts":{
439
- "name":"GetMergeConflicts",
440
- "http":{
441
- "method":"POST",
442
- "requestUri":"/"
443
- },
444
- "input":{"shape":"GetMergeConflictsInput"},
445
- "output":{"shape":"GetMergeConflictsOutput"},
446
- "errors":[
447
- {"shape":"RepositoryNameRequiredException"},
448
- {"shape":"InvalidRepositoryNameException"},
449
- {"shape":"RepositoryDoesNotExistException"},
450
- {"shape":"MergeOptionRequiredException"},
451
- {"shape":"InvalidMergeOptionException"},
452
- {"shape":"InvalidDestinationCommitSpecifierException"},
453
- {"shape":"InvalidSourceCommitSpecifierException"},
454
- {"shape":"CommitRequiredException"},
455
- {"shape":"CommitDoesNotExistException"},
456
- {"shape":"InvalidCommitException"},
457
- {"shape":"TipsDivergenceExceededException"},
458
- {"shape":"EncryptionIntegrityChecksFailedException"},
459
- {"shape":"EncryptionKeyAccessDeniedException"},
460
- {"shape":"EncryptionKeyDisabledException"},
461
- {"shape":"EncryptionKeyNotFoundException"},
462
- {"shape":"EncryptionKeyUnavailableException"}
463
- ]
464
- },
465
- "GetPullRequest":{
466
- "name":"GetPullRequest",
467
- "http":{
468
- "method":"POST",
469
- "requestUri":"/"
470
- },
471
- "input":{"shape":"GetPullRequestInput"},
472
- "output":{"shape":"GetPullRequestOutput"},
473
- "errors":[
474
- {"shape":"PullRequestDoesNotExistException"},
475
- {"shape":"InvalidPullRequestIdException"},
476
- {"shape":"PullRequestIdRequiredException"},
477
- {"shape":"EncryptionIntegrityChecksFailedException"},
478
- {"shape":"EncryptionKeyAccessDeniedException"},
479
- {"shape":"EncryptionKeyDisabledException"},
480
- {"shape":"EncryptionKeyNotFoundException"},
481
- {"shape":"EncryptionKeyUnavailableException"}
482
- ]
483
- },
484
- "GetRepository":{
485
- "name":"GetRepository",
486
- "http":{
487
- "method":"POST",
488
- "requestUri":"/"
489
- },
490
- "input":{"shape":"GetRepositoryInput"},
491
- "output":{"shape":"GetRepositoryOutput"},
492
- "errors":[
493
- {"shape":"RepositoryNameRequiredException"},
494
- {"shape":"RepositoryDoesNotExistException"},
495
- {"shape":"InvalidRepositoryNameException"},
496
- {"shape":"EncryptionIntegrityChecksFailedException"},
497
- {"shape":"EncryptionKeyAccessDeniedException"},
498
- {"shape":"EncryptionKeyDisabledException"},
499
- {"shape":"EncryptionKeyNotFoundException"},
500
- {"shape":"EncryptionKeyUnavailableException"}
501
- ]
502
- },
503
- "GetRepositoryTriggers":{
504
- "name":"GetRepositoryTriggers",
505
- "http":{
506
- "method":"POST",
507
- "requestUri":"/"
508
- },
509
- "input":{"shape":"GetRepositoryTriggersInput"},
510
- "output":{"shape":"GetRepositoryTriggersOutput"},
511
- "errors":[
512
- {"shape":"RepositoryNameRequiredException"},
513
- {"shape":"InvalidRepositoryNameException"},
514
- {"shape":"RepositoryDoesNotExistException"},
515
- {"shape":"EncryptionIntegrityChecksFailedException"},
516
- {"shape":"EncryptionKeyAccessDeniedException"},
517
- {"shape":"EncryptionKeyDisabledException"},
518
- {"shape":"EncryptionKeyNotFoundException"},
519
- {"shape":"EncryptionKeyUnavailableException"}
520
- ]
521
- },
522
- "ListBranches":{
523
- "name":"ListBranches",
524
- "http":{
525
- "method":"POST",
526
- "requestUri":"/"
527
- },
528
- "input":{"shape":"ListBranchesInput"},
529
- "output":{"shape":"ListBranchesOutput"},
530
- "errors":[
531
- {"shape":"RepositoryNameRequiredException"},
532
- {"shape":"RepositoryDoesNotExistException"},
533
- {"shape":"InvalidRepositoryNameException"},
534
- {"shape":"EncryptionIntegrityChecksFailedException"},
535
- {"shape":"EncryptionKeyAccessDeniedException"},
536
- {"shape":"EncryptionKeyDisabledException"},
537
- {"shape":"EncryptionKeyNotFoundException"},
538
- {"shape":"EncryptionKeyUnavailableException"},
539
- {"shape":"InvalidContinuationTokenException"}
540
- ]
541
- },
542
- "ListPullRequests":{
543
- "name":"ListPullRequests",
544
- "http":{
545
- "method":"POST",
546
- "requestUri":"/"
547
- },
548
- "input":{"shape":"ListPullRequestsInput"},
549
- "output":{"shape":"ListPullRequestsOutput"},
550
- "errors":[
551
- {"shape":"InvalidPullRequestStatusException"},
552
- {"shape":"InvalidAuthorArnException"},
553
- {"shape":"AuthorDoesNotExistException"},
554
- {"shape":"RepositoryNameRequiredException"},
555
- {"shape":"InvalidRepositoryNameException"},
556
- {"shape":"RepositoryDoesNotExistException"},
557
- {"shape":"InvalidMaxResultsException"},
558
- {"shape":"InvalidContinuationTokenException"},
559
- {"shape":"EncryptionIntegrityChecksFailedException"},
560
- {"shape":"EncryptionKeyAccessDeniedException"},
561
- {"shape":"EncryptionKeyDisabledException"},
562
- {"shape":"EncryptionKeyNotFoundException"},
563
- {"shape":"EncryptionKeyUnavailableException"}
564
- ]
565
- },
566
- "ListRepositories":{
567
- "name":"ListRepositories",
568
- "http":{
569
- "method":"POST",
570
- "requestUri":"/"
571
- },
572
- "input":{"shape":"ListRepositoriesInput"},
573
- "output":{"shape":"ListRepositoriesOutput"},
574
- "errors":[
575
- {"shape":"InvalidSortByException"},
576
- {"shape":"InvalidOrderException"},
577
- {"shape":"InvalidContinuationTokenException"}
578
- ]
579
- },
580
- "MergePullRequestByFastForward":{
581
- "name":"MergePullRequestByFastForward",
582
- "http":{
583
- "method":"POST",
584
- "requestUri":"/"
585
- },
586
- "input":{"shape":"MergePullRequestByFastForwardInput"},
587
- "output":{"shape":"MergePullRequestByFastForwardOutput"},
588
- "errors":[
589
- {"shape":"ManualMergeRequiredException"},
590
- {"shape":"PullRequestAlreadyClosedException"},
591
- {"shape":"PullRequestDoesNotExistException"},
592
- {"shape":"InvalidPullRequestIdException"},
593
- {"shape":"PullRequestIdRequiredException"},
594
- {"shape":"TipOfSourceReferenceIsDifferentException"},
595
- {"shape":"ReferenceDoesNotExistException"},
596
- {"shape":"InvalidCommitIdException"},
597
- {"shape":"RepositoryNameRequiredException"},
598
- {"shape":"InvalidRepositoryNameException"},
599
- {"shape":"RepositoryDoesNotExistException"},
600
- {"shape":"EncryptionIntegrityChecksFailedException"},
601
- {"shape":"EncryptionKeyAccessDeniedException"},
602
- {"shape":"EncryptionKeyDisabledException"},
603
- {"shape":"EncryptionKeyNotFoundException"},
604
- {"shape":"EncryptionKeyUnavailableException"}
605
- ]
606
- },
607
- "PostCommentForComparedCommit":{
608
- "name":"PostCommentForComparedCommit",
609
- "http":{
610
- "method":"POST",
611
- "requestUri":"/"
612
- },
613
- "input":{"shape":"PostCommentForComparedCommitInput"},
614
- "output":{"shape":"PostCommentForComparedCommitOutput"},
615
- "errors":[
616
- {"shape":"RepositoryNameRequiredException"},
617
- {"shape":"RepositoryDoesNotExistException"},
618
- {"shape":"InvalidRepositoryNameException"},
619
- {"shape":"ClientRequestTokenRequiredException"},
620
- {"shape":"InvalidClientRequestTokenException"},
621
- {"shape":"IdempotencyParameterMismatchException"},
622
- {"shape":"CommentContentRequiredException"},
623
- {"shape":"CommentContentSizeLimitExceededException"},
624
- {"shape":"InvalidFileLocationException"},
625
- {"shape":"InvalidRelativeFileVersionEnumException"},
626
- {"shape":"PathRequiredException"},
627
- {"shape":"InvalidFilePositionException"},
628
- {"shape":"CommitIdRequiredException"},
629
- {"shape":"InvalidCommitIdException"},
630
- {"shape":"EncryptionIntegrityChecksFailedException"},
631
- {"shape":"EncryptionKeyAccessDeniedException"},
632
- {"shape":"EncryptionKeyDisabledException"},
633
- {"shape":"EncryptionKeyNotFoundException"},
634
- {"shape":"EncryptionKeyUnavailableException"},
635
- {"shape":"BeforeCommitIdAndAfterCommitIdAreSameException"},
636
- {"shape":"CommitDoesNotExistException"},
637
- {"shape":"InvalidPathException"},
638
- {"shape":"PathDoesNotExistException"}
639
- ],
640
- "idempotent":true
641
- },
642
- "PostCommentForPullRequest":{
643
- "name":"PostCommentForPullRequest",
644
- "http":{
645
- "method":"POST",
646
- "requestUri":"/"
647
- },
648
- "input":{"shape":"PostCommentForPullRequestInput"},
649
- "output":{"shape":"PostCommentForPullRequestOutput"},
650
- "errors":[
651
- {"shape":"PullRequestDoesNotExistException"},
652
- {"shape":"InvalidPullRequestIdException"},
653
- {"shape":"PullRequestIdRequiredException"},
654
- {"shape":"RepositoryNotAssociatedWithPullRequestException"},
655
- {"shape":"RepositoryNameRequiredException"},
656
- {"shape":"RepositoryDoesNotExistException"},
657
- {"shape":"InvalidRepositoryNameException"},
658
- {"shape":"ClientRequestTokenRequiredException"},
659
- {"shape":"InvalidClientRequestTokenException"},
660
- {"shape":"IdempotencyParameterMismatchException"},
661
- {"shape":"CommentContentRequiredException"},
662
- {"shape":"CommentContentSizeLimitExceededException"},
663
- {"shape":"InvalidFileLocationException"},
664
- {"shape":"InvalidRelativeFileVersionEnumException"},
665
- {"shape":"PathRequiredException"},
666
- {"shape":"InvalidFilePositionException"},
667
- {"shape":"CommitIdRequiredException"},
668
- {"shape":"InvalidCommitIdException"},
669
- {"shape":"EncryptionIntegrityChecksFailedException"},
670
- {"shape":"EncryptionKeyAccessDeniedException"},
671
- {"shape":"EncryptionKeyDisabledException"},
672
- {"shape":"EncryptionKeyNotFoundException"},
673
- {"shape":"EncryptionKeyUnavailableException"},
674
- {"shape":"CommitDoesNotExistException"},
675
- {"shape":"InvalidPathException"},
676
- {"shape":"PathDoesNotExistException"},
677
- {"shape":"PathRequiredException"},
678
- {"shape":"BeforeCommitIdAndAfterCommitIdAreSameException"}
679
- ],
680
- "idempotent":true
681
- },
682
- "PostCommentReply":{
683
- "name":"PostCommentReply",
684
- "http":{
685
- "method":"POST",
686
- "requestUri":"/"
687
- },
688
- "input":{"shape":"PostCommentReplyInput"},
689
- "output":{"shape":"PostCommentReplyOutput"},
690
- "errors":[
691
- {"shape":"ClientRequestTokenRequiredException"},
692
- {"shape":"InvalidClientRequestTokenException"},
693
- {"shape":"IdempotencyParameterMismatchException"},
694
- {"shape":"CommentContentRequiredException"},
695
- {"shape":"CommentContentSizeLimitExceededException"},
696
- {"shape":"CommentDoesNotExistException"},
697
- {"shape":"CommentIdRequiredException"},
698
- {"shape":"InvalidCommentIdException"}
699
- ],
700
- "idempotent":true
701
- },
702
- "PutFile":{
703
- "name":"PutFile",
704
- "http":{
705
- "method":"POST",
706
- "requestUri":"/"
707
- },
708
- "input":{"shape":"PutFileInput"},
709
- "output":{"shape":"PutFileOutput"},
710
- "errors":[
711
- {"shape":"RepositoryNameRequiredException"},
712
- {"shape":"InvalidRepositoryNameException"},
713
- {"shape":"RepositoryDoesNotExistException"},
714
- {"shape":"ParentCommitIdRequiredException"},
715
- {"shape":"InvalidParentCommitIdException"},
716
- {"shape":"ParentCommitDoesNotExistException"},
717
- {"shape":"ParentCommitIdOutdatedException"},
718
- {"shape":"FileContentRequiredException"},
719
- {"shape":"FileContentSizeLimitExceededException"},
720
- {"shape":"FolderContentSizeLimitExceededException"},
721
- {"shape":"PathRequiredException"},
722
- {"shape":"InvalidPathException"},
723
- {"shape":"BranchNameRequiredException"},
724
- {"shape":"InvalidBranchNameException"},
725
- {"shape":"BranchDoesNotExistException"},
726
- {"shape":"BranchNameIsTagNameException"},
727
- {"shape":"InvalidFileModeException"},
728
- {"shape":"NameLengthExceededException"},
729
- {"shape":"InvalidEmailException"},
730
- {"shape":"CommitMessageLengthExceededException"},
731
- {"shape":"InvalidDeletionParameterException"},
732
- {"shape":"EncryptionIntegrityChecksFailedException"},
733
- {"shape":"EncryptionKeyAccessDeniedException"},
734
- {"shape":"EncryptionKeyDisabledException"},
735
- {"shape":"EncryptionKeyNotFoundException"},
736
- {"shape":"EncryptionKeyUnavailableException"},
737
- {"shape":"SameFileContentException"},
738
- {"shape":"FileNameConflictsWithDirectoryNameException"},
739
- {"shape":"DirectoryNameConflictsWithFileNameException"},
740
- {"shape":"FilePathConflictsWithSubmodulePathException"}
741
- ]
742
- },
743
- "PutRepositoryTriggers":{
744
- "name":"PutRepositoryTriggers",
745
- "http":{
746
- "method":"POST",
747
- "requestUri":"/"
748
- },
749
- "input":{"shape":"PutRepositoryTriggersInput"},
750
- "output":{"shape":"PutRepositoryTriggersOutput"},
751
- "errors":[
752
- {"shape":"RepositoryDoesNotExistException"},
753
- {"shape":"RepositoryNameRequiredException"},
754
- {"shape":"InvalidRepositoryNameException"},
755
- {"shape":"RepositoryTriggersListRequiredException"},
756
- {"shape":"MaximumRepositoryTriggersExceededException"},
757
- {"shape":"InvalidRepositoryTriggerNameException"},
758
- {"shape":"InvalidRepositoryTriggerDestinationArnException"},
759
- {"shape":"InvalidRepositoryTriggerRegionException"},
760
- {"shape":"InvalidRepositoryTriggerCustomDataException"},
761
- {"shape":"MaximumBranchesExceededException"},
762
- {"shape":"InvalidRepositoryTriggerBranchNameException"},
763
- {"shape":"InvalidRepositoryTriggerEventsException"},
764
- {"shape":"RepositoryTriggerNameRequiredException"},
765
- {"shape":"RepositoryTriggerDestinationArnRequiredException"},
766
- {"shape":"RepositoryTriggerBranchNameListRequiredException"},
767
- {"shape":"RepositoryTriggerEventsListRequiredException"},
768
- {"shape":"EncryptionIntegrityChecksFailedException"},
769
- {"shape":"EncryptionKeyAccessDeniedException"},
770
- {"shape":"EncryptionKeyDisabledException"},
771
- {"shape":"EncryptionKeyNotFoundException"},
772
- {"shape":"EncryptionKeyUnavailableException"}
773
- ]
774
- },
775
- "TestRepositoryTriggers":{
776
- "name":"TestRepositoryTriggers",
777
- "http":{
778
- "method":"POST",
779
- "requestUri":"/"
780
- },
781
- "input":{"shape":"TestRepositoryTriggersInput"},
782
- "output":{"shape":"TestRepositoryTriggersOutput"},
783
- "errors":[
784
- {"shape":"RepositoryDoesNotExistException"},
785
- {"shape":"RepositoryNameRequiredException"},
786
- {"shape":"InvalidRepositoryNameException"},
787
- {"shape":"RepositoryTriggersListRequiredException"},
788
- {"shape":"MaximumRepositoryTriggersExceededException"},
789
- {"shape":"InvalidRepositoryTriggerNameException"},
790
- {"shape":"InvalidRepositoryTriggerDestinationArnException"},
791
- {"shape":"InvalidRepositoryTriggerRegionException"},
792
- {"shape":"InvalidRepositoryTriggerCustomDataException"},
793
- {"shape":"MaximumBranchesExceededException"},
794
- {"shape":"InvalidRepositoryTriggerBranchNameException"},
795
- {"shape":"InvalidRepositoryTriggerEventsException"},
796
- {"shape":"RepositoryTriggerNameRequiredException"},
797
- {"shape":"RepositoryTriggerDestinationArnRequiredException"},
798
- {"shape":"RepositoryTriggerBranchNameListRequiredException"},
799
- {"shape":"RepositoryTriggerEventsListRequiredException"},
800
- {"shape":"EncryptionIntegrityChecksFailedException"},
801
- {"shape":"EncryptionKeyAccessDeniedException"},
802
- {"shape":"EncryptionKeyDisabledException"},
803
- {"shape":"EncryptionKeyNotFoundException"},
804
- {"shape":"EncryptionKeyUnavailableException"}
805
- ]
806
- },
807
- "UpdateComment":{
808
- "name":"UpdateComment",
809
- "http":{
810
- "method":"POST",
811
- "requestUri":"/"
812
- },
813
- "input":{"shape":"UpdateCommentInput"},
814
- "output":{"shape":"UpdateCommentOutput"},
815
- "errors":[
816
- {"shape":"CommentContentRequiredException"},
817
- {"shape":"CommentContentSizeLimitExceededException"},
818
- {"shape":"CommentDoesNotExistException"},
819
- {"shape":"CommentIdRequiredException"},
820
- {"shape":"InvalidCommentIdException"},
821
- {"shape":"CommentNotCreatedByCallerException"},
822
- {"shape":"CommentDeletedException"}
823
- ]
824
- },
825
- "UpdateDefaultBranch":{
826
- "name":"UpdateDefaultBranch",
827
- "http":{
828
- "method":"POST",
829
- "requestUri":"/"
830
- },
831
- "input":{"shape":"UpdateDefaultBranchInput"},
832
- "errors":[
833
- {"shape":"RepositoryNameRequiredException"},
834
- {"shape":"RepositoryDoesNotExistException"},
835
- {"shape":"InvalidRepositoryNameException"},
836
- {"shape":"BranchNameRequiredException"},
837
- {"shape":"InvalidBranchNameException"},
838
- {"shape":"BranchDoesNotExistException"},
839
- {"shape":"EncryptionIntegrityChecksFailedException"},
840
- {"shape":"EncryptionKeyAccessDeniedException"},
841
- {"shape":"EncryptionKeyDisabledException"},
842
- {"shape":"EncryptionKeyNotFoundException"},
843
- {"shape":"EncryptionKeyUnavailableException"}
844
- ]
845
- },
846
- "UpdatePullRequestDescription":{
847
- "name":"UpdatePullRequestDescription",
848
- "http":{
849
- "method":"POST",
850
- "requestUri":"/"
851
- },
852
- "input":{"shape":"UpdatePullRequestDescriptionInput"},
853
- "output":{"shape":"UpdatePullRequestDescriptionOutput"},
854
- "errors":[
855
- {"shape":"PullRequestDoesNotExistException"},
856
- {"shape":"InvalidPullRequestIdException"},
857
- {"shape":"PullRequestIdRequiredException"},
858
- {"shape":"InvalidDescriptionException"},
859
- {"shape":"PullRequestAlreadyClosedException"}
860
- ]
861
- },
862
- "UpdatePullRequestStatus":{
863
- "name":"UpdatePullRequestStatus",
864
- "http":{
865
- "method":"POST",
866
- "requestUri":"/"
867
- },
868
- "input":{"shape":"UpdatePullRequestStatusInput"},
869
- "output":{"shape":"UpdatePullRequestStatusOutput"},
870
- "errors":[
871
- {"shape":"PullRequestDoesNotExistException"},
872
- {"shape":"InvalidPullRequestIdException"},
873
- {"shape":"PullRequestIdRequiredException"},
874
- {"shape":"InvalidPullRequestStatusUpdateException"},
875
- {"shape":"InvalidPullRequestStatusException"},
876
- {"shape":"PullRequestStatusRequiredException"},
877
- {"shape":"EncryptionIntegrityChecksFailedException"},
878
- {"shape":"EncryptionKeyAccessDeniedException"},
879
- {"shape":"EncryptionKeyDisabledException"},
880
- {"shape":"EncryptionKeyNotFoundException"},
881
- {"shape":"EncryptionKeyUnavailableException"}
882
- ]
883
- },
884
- "UpdatePullRequestTitle":{
885
- "name":"UpdatePullRequestTitle",
886
- "http":{
887
- "method":"POST",
888
- "requestUri":"/"
889
- },
890
- "input":{"shape":"UpdatePullRequestTitleInput"},
891
- "output":{"shape":"UpdatePullRequestTitleOutput"},
892
- "errors":[
893
- {"shape":"PullRequestDoesNotExistException"},
894
- {"shape":"InvalidPullRequestIdException"},
895
- {"shape":"PullRequestIdRequiredException"},
896
- {"shape":"TitleRequiredException"},
897
- {"shape":"InvalidTitleException"},
898
- {"shape":"PullRequestAlreadyClosedException"}
899
- ]
900
- },
901
- "UpdateRepositoryDescription":{
902
- "name":"UpdateRepositoryDescription",
903
- "http":{
904
- "method":"POST",
905
- "requestUri":"/"
906
- },
907
- "input":{"shape":"UpdateRepositoryDescriptionInput"},
908
- "errors":[
909
- {"shape":"RepositoryNameRequiredException"},
910
- {"shape":"RepositoryDoesNotExistException"},
911
- {"shape":"InvalidRepositoryNameException"},
912
- {"shape":"InvalidRepositoryDescriptionException"},
913
- {"shape":"EncryptionIntegrityChecksFailedException"},
914
- {"shape":"EncryptionKeyAccessDeniedException"},
915
- {"shape":"EncryptionKeyDisabledException"},
916
- {"shape":"EncryptionKeyNotFoundException"},
917
- {"shape":"EncryptionKeyUnavailableException"}
918
- ]
919
- },
920
- "UpdateRepositoryName":{
921
- "name":"UpdateRepositoryName",
922
- "http":{
923
- "method":"POST",
924
- "requestUri":"/"
925
- },
926
- "input":{"shape":"UpdateRepositoryNameInput"},
927
- "errors":[
928
- {"shape":"RepositoryDoesNotExistException"},
929
- {"shape":"RepositoryNameExistsException"},
930
- {"shape":"RepositoryNameRequiredException"},
931
- {"shape":"InvalidRepositoryNameException"}
932
- ]
933
- }
934
- },
935
- "shapes":{
936
- "AccountId":{"type":"string"},
937
- "ActorDoesNotExistException":{
938
- "type":"structure",
939
- "members":{
940
- },
941
- "exception":true
942
- },
943
- "AdditionalData":{"type":"string"},
944
- "Arn":{"type":"string"},
945
- "AuthorDoesNotExistException":{
946
- "type":"structure",
947
- "members":{
948
- },
949
- "exception":true
950
- },
951
- "BatchGetRepositoriesInput":{
952
- "type":"structure",
953
- "required":["repositoryNames"],
954
- "members":{
955
- "repositoryNames":{"shape":"RepositoryNameList"}
956
- }
957
- },
958
- "BatchGetRepositoriesOutput":{
959
- "type":"structure",
960
- "members":{
961
- "repositories":{"shape":"RepositoryMetadataList"},
962
- "repositoriesNotFound":{"shape":"RepositoryNotFoundList"}
963
- }
964
- },
965
- "BeforeCommitIdAndAfterCommitIdAreSameException":{
966
- "type":"structure",
967
- "members":{
968
- },
969
- "exception":true
970
- },
971
- "BlobIdDoesNotExistException":{
972
- "type":"structure",
973
- "members":{
974
- },
975
- "exception":true
976
- },
977
- "BlobIdRequiredException":{
978
- "type":"structure",
979
- "members":{
980
- },
981
- "exception":true
982
- },
983
- "BlobMetadata":{
984
- "type":"structure",
985
- "members":{
986
- "blobId":{"shape":"ObjectId"},
987
- "path":{"shape":"Path"},
988
- "mode":{"shape":"Mode"}
989
- }
990
- },
991
- "BranchDoesNotExistException":{
992
- "type":"structure",
993
- "members":{
994
- },
995
- "exception":true
996
- },
997
- "BranchInfo":{
998
- "type":"structure",
999
- "members":{
1000
- "branchName":{"shape":"BranchName"},
1001
- "commitId":{"shape":"CommitId"}
1002
- }
1003
- },
1004
- "BranchName":{
1005
- "type":"string",
1006
- "max":256,
1007
- "min":1
1008
- },
1009
- "BranchNameExistsException":{
1010
- "type":"structure",
1011
- "members":{
1012
- },
1013
- "exception":true
1014
- },
1015
- "BranchNameIsTagNameException":{
1016
- "type":"structure",
1017
- "members":{
1018
- },
1019
- "exception":true
1020
- },
1021
- "BranchNameList":{
1022
- "type":"list",
1023
- "member":{"shape":"BranchName"}
1024
- },
1025
- "BranchNameRequiredException":{
1026
- "type":"structure",
1027
- "members":{
1028
- },
1029
- "exception":true
1030
- },
1031
- "ChangeTypeEnum":{
1032
- "type":"string",
1033
- "enum":[
1034
- "A",
1035
- "M",
1036
- "D"
1037
- ]
1038
- },
1039
- "ClientRequestToken":{"type":"string"},
1040
- "ClientRequestTokenRequiredException":{
1041
- "type":"structure",
1042
- "members":{
1043
- },
1044
- "exception":true
1045
- },
1046
- "CloneUrlHttp":{"type":"string"},
1047
- "CloneUrlSsh":{"type":"string"},
1048
- "Comment":{
1049
- "type":"structure",
1050
- "members":{
1051
- "commentId":{"shape":"CommentId"},
1052
- "content":{"shape":"Content"},
1053
- "inReplyTo":{"shape":"CommentId"},
1054
- "creationDate":{"shape":"CreationDate"},
1055
- "lastModifiedDate":{"shape":"LastModifiedDate"},
1056
- "authorArn":{"shape":"Arn"},
1057
- "deleted":{"shape":"IsCommentDeleted"},
1058
- "clientRequestToken":{"shape":"ClientRequestToken"}
1059
- }
1060
- },
1061
- "CommentContentRequiredException":{
1062
- "type":"structure",
1063
- "members":{
1064
- },
1065
- "exception":true
1066
- },
1067
- "CommentContentSizeLimitExceededException":{
1068
- "type":"structure",
1069
- "members":{
1070
- },
1071
- "exception":true
1072
- },
1073
- "CommentDeletedException":{
1074
- "type":"structure",
1075
- "members":{
1076
- },
1077
- "exception":true
1078
- },
1079
- "CommentDoesNotExistException":{
1080
- "type":"structure",
1081
- "members":{
1082
- },
1083
- "exception":true
1084
- },
1085
- "CommentId":{"type":"string"},
1086
- "CommentIdRequiredException":{
1087
- "type":"structure",
1088
- "members":{
1089
- },
1090
- "exception":true
1091
- },
1092
- "CommentNotCreatedByCallerException":{
1093
- "type":"structure",
1094
- "members":{
1095
- },
1096
- "exception":true
1097
- },
1098
- "Comments":{
1099
- "type":"list",
1100
- "member":{"shape":"Comment"}
1101
- },
1102
- "CommentsForComparedCommit":{
1103
- "type":"structure",
1104
- "members":{
1105
- "repositoryName":{"shape":"RepositoryName"},
1106
- "beforeCommitId":{"shape":"CommitId"},
1107
- "afterCommitId":{"shape":"CommitId"},
1108
- "beforeBlobId":{"shape":"ObjectId"},
1109
- "afterBlobId":{"shape":"ObjectId"},
1110
- "location":{"shape":"Location"},
1111
- "comments":{"shape":"Comments"}
1112
- }
1113
- },
1114
- "CommentsForComparedCommitData":{
1115
- "type":"list",
1116
- "member":{"shape":"CommentsForComparedCommit"}
1117
- },
1118
- "CommentsForPullRequest":{
1119
- "type":"structure",
1120
- "members":{
1121
- "pullRequestId":{"shape":"PullRequestId"},
1122
- "repositoryName":{"shape":"RepositoryName"},
1123
- "beforeCommitId":{"shape":"CommitId"},
1124
- "afterCommitId":{"shape":"CommitId"},
1125
- "beforeBlobId":{"shape":"ObjectId"},
1126
- "afterBlobId":{"shape":"ObjectId"},
1127
- "location":{"shape":"Location"},
1128
- "comments":{"shape":"Comments"}
1129
- }
1130
- },
1131
- "CommentsForPullRequestData":{
1132
- "type":"list",
1133
- "member":{"shape":"CommentsForPullRequest"}
1134
- },
1135
- "Commit":{
1136
- "type":"structure",
1137
- "members":{
1138
- "commitId":{"shape":"ObjectId"},
1139
- "treeId":{"shape":"ObjectId"},
1140
- "parents":{"shape":"ParentList"},
1141
- "message":{"shape":"Message"},
1142
- "author":{"shape":"UserInfo"},
1143
- "committer":{"shape":"UserInfo"},
1144
- "additionalData":{"shape":"AdditionalData"}
1145
- }
1146
- },
1147
- "CommitDoesNotExistException":{
1148
- "type":"structure",
1149
- "members":{
1150
- },
1151
- "exception":true
1152
- },
1153
- "CommitId":{"type":"string"},
1154
- "CommitIdDoesNotExistException":{
1155
- "type":"structure",
1156
- "members":{
1157
- },
1158
- "exception":true
1159
- },
1160
- "CommitIdRequiredException":{
1161
- "type":"structure",
1162
- "members":{
1163
- },
1164
- "exception":true
1165
- },
1166
- "CommitMessageLengthExceededException":{
1167
- "type":"structure",
1168
- "members":{
1169
- },
1170
- "exception":true
1171
- },
1172
- "CommitName":{"type":"string"},
1173
- "CommitRequiredException":{
1174
- "type":"structure",
1175
- "members":{
1176
- },
1177
- "exception":true
1178
- },
1179
- "Content":{"type":"string"},
1180
- "CreateBranchInput":{
1181
- "type":"structure",
1182
- "required":[
1183
- "repositoryName",
1184
- "branchName",
1185
- "commitId"
1186
- ],
1187
- "members":{
1188
- "repositoryName":{"shape":"RepositoryName"},
1189
- "branchName":{"shape":"BranchName"},
1190
- "commitId":{"shape":"CommitId"}
1191
- }
1192
- },
1193
- "CreatePullRequestInput":{
1194
- "type":"structure",
1195
- "required":[
1196
- "title",
1197
- "targets"
1198
- ],
1199
- "members":{
1200
- "title":{"shape":"Title"},
1201
- "description":{"shape":"Description"},
1202
- "targets":{"shape":"TargetList"},
1203
- "clientRequestToken":{
1204
- "shape":"ClientRequestToken",
1205
- "idempotencyToken":true
1206
- }
1207
- }
1208
- },
1209
- "CreatePullRequestOutput":{
1210
- "type":"structure",
1211
- "required":["pullRequest"],
1212
- "members":{
1213
- "pullRequest":{"shape":"PullRequest"}
1214
- }
1215
- },
1216
- "CreateRepositoryInput":{
1217
- "type":"structure",
1218
- "required":["repositoryName"],
1219
- "members":{
1220
- "repositoryName":{"shape":"RepositoryName"},
1221
- "repositoryDescription":{"shape":"RepositoryDescription"}
1222
- }
1223
- },
1224
- "CreateRepositoryOutput":{
1225
- "type":"structure",
1226
- "members":{
1227
- "repositoryMetadata":{"shape":"RepositoryMetadata"}
1228
- }
1229
- },
1230
- "CreationDate":{"type":"timestamp"},
1231
- "Date":{"type":"string"},
1232
- "DefaultBranchCannotBeDeletedException":{
1233
- "type":"structure",
1234
- "members":{
1235
- },
1236
- "exception":true
1237
- },
1238
- "DeleteBranchInput":{
1239
- "type":"structure",
1240
- "required":[
1241
- "repositoryName",
1242
- "branchName"
1243
- ],
1244
- "members":{
1245
- "repositoryName":{"shape":"RepositoryName"},
1246
- "branchName":{"shape":"BranchName"}
1247
- }
1248
- },
1249
- "DeleteBranchOutput":{
1250
- "type":"structure",
1251
- "members":{
1252
- "deletedBranch":{"shape":"BranchInfo"}
1253
- }
1254
- },
1255
- "DeleteCommentContentInput":{
1256
- "type":"structure",
1257
- "required":["commentId"],
1258
- "members":{
1259
- "commentId":{"shape":"CommentId"}
1260
- }
1261
- },
1262
- "DeleteCommentContentOutput":{
1263
- "type":"structure",
1264
- "members":{
1265
- "comment":{"shape":"Comment"}
1266
- }
1267
- },
1268
- "DeleteFileInput":{
1269
- "type":"structure",
1270
- "required":[
1271
- "repositoryName",
1272
- "branchName",
1273
- "filePath",
1274
- "parentCommitId"
1275
- ],
1276
- "members":{
1277
- "repositoryName":{"shape":"RepositoryName"},
1278
- "branchName":{"shape":"BranchName"},
1279
- "filePath":{"shape":"Path"},
1280
- "parentCommitId":{"shape":"CommitId"},
1281
- "keepEmptyFolders":{"shape":"KeepEmptyFolders"},
1282
- "commitMessage":{"shape":"Message"},
1283
- "name":{"shape":"Name"},
1284
- "email":{"shape":"Email"}
1285
- }
1286
- },
1287
- "DeleteFileOutput":{
1288
- "type":"structure",
1289
- "required":[
1290
- "commitId",
1291
- "blobId",
1292
- "treeId",
1293
- "filePath"
1294
- ],
1295
- "members":{
1296
- "commitId":{"shape":"ObjectId"},
1297
- "blobId":{"shape":"ObjectId"},
1298
- "treeId":{"shape":"ObjectId"},
1299
- "filePath":{"shape":"Path"}
1300
- }
1301
- },
1302
- "DeleteRepositoryInput":{
1303
- "type":"structure",
1304
- "required":["repositoryName"],
1305
- "members":{
1306
- "repositoryName":{"shape":"RepositoryName"}
1307
- }
1308
- },
1309
- "DeleteRepositoryOutput":{
1310
- "type":"structure",
1311
- "members":{
1312
- "repositoryId":{"shape":"RepositoryId"}
1313
- }
1314
- },
1315
- "DescribePullRequestEventsInput":{
1316
- "type":"structure",
1317
- "required":["pullRequestId"],
1318
- "members":{
1319
- "pullRequestId":{"shape":"PullRequestId"},
1320
- "pullRequestEventType":{"shape":"PullRequestEventType"},
1321
- "actorArn":{"shape":"Arn"},
1322
- "nextToken":{"shape":"NextToken"},
1323
- "maxResults":{"shape":"MaxResults"}
1324
- }
1325
- },
1326
- "DescribePullRequestEventsOutput":{
1327
- "type":"structure",
1328
- "required":["pullRequestEvents"],
1329
- "members":{
1330
- "pullRequestEvents":{"shape":"PullRequestEventList"},
1331
- "nextToken":{"shape":"NextToken"}
1332
- }
1333
- },
1334
- "Description":{
1335
- "type":"string",
1336
- "max":10240
1337
- },
1338
- "Difference":{
1339
- "type":"structure",
1340
- "members":{
1341
- "beforeBlob":{"shape":"BlobMetadata"},
1342
- "afterBlob":{"shape":"BlobMetadata"},
1343
- "changeType":{"shape":"ChangeTypeEnum"}
1344
- }
1345
- },
1346
- "DifferenceList":{
1347
- "type":"list",
1348
- "member":{"shape":"Difference"}
1349
- },
1350
- "DirectoryNameConflictsWithFileNameException":{
1351
- "type":"structure",
1352
- "members":{
1353
- },
1354
- "exception":true
1355
- },
1356
- "Email":{"type":"string"},
1357
- "EncryptionIntegrityChecksFailedException":{
1358
- "type":"structure",
1359
- "members":{
1360
- },
1361
- "exception":true,
1362
- "fault":true
1363
- },
1364
- "EncryptionKeyAccessDeniedException":{
1365
- "type":"structure",
1366
- "members":{
1367
- },
1368
- "exception":true
1369
- },
1370
- "EncryptionKeyDisabledException":{
1371
- "type":"structure",
1372
- "members":{
1373
- },
1374
- "exception":true
1375
- },
1376
- "EncryptionKeyNotFoundException":{
1377
- "type":"structure",
1378
- "members":{
1379
- },
1380
- "exception":true
1381
- },
1382
- "EncryptionKeyUnavailableException":{
1383
- "type":"structure",
1384
- "members":{
1385
- },
1386
- "exception":true
1387
- },
1388
- "EventDate":{"type":"timestamp"},
1389
- "File":{
1390
- "type":"structure",
1391
- "members":{
1392
- "blobId":{"shape":"ObjectId"},
1393
- "absolutePath":{"shape":"Path"},
1394
- "relativePath":{"shape":"Path"},
1395
- "fileMode":{"shape":"FileModeTypeEnum"}
1396
- }
1397
- },
1398
- "FileContent":{
1399
- "type":"blob",
1400
- "max":6291456
1401
- },
1402
- "FileContentRequiredException":{
1403
- "type":"structure",
1404
- "members":{
1405
- },
1406
- "exception":true
1407
- },
1408
- "FileContentSizeLimitExceededException":{
1409
- "type":"structure",
1410
- "members":{
1411
- },
1412
- "exception":true
1413
- },
1414
- "FileDoesNotExistException":{
1415
- "type":"structure",
1416
- "members":{
1417
- },
1418
- "exception":true
1419
- },
1420
- "FileList":{
1421
- "type":"list",
1422
- "member":{"shape":"File"}
1423
- },
1424
- "FileModeTypeEnum":{
1425
- "type":"string",
1426
- "enum":[
1427
- "EXECUTABLE",
1428
- "NORMAL",
1429
- "SYMLINK"
1430
- ]
1431
- },
1432
- "FileNameConflictsWithDirectoryNameException":{
1433
- "type":"structure",
1434
- "members":{
1435
- },
1436
- "exception":true
1437
- },
1438
- "FilePathConflictsWithSubmodulePathException":{
1439
- "type":"structure",
1440
- "members":{
1441
- },
1442
- "exception":true
1443
- },
1444
- "FileTooLargeException":{
1445
- "type":"structure",
1446
- "members":{
1447
- },
1448
- "exception":true
1449
- },
1450
- "Folder":{
1451
- "type":"structure",
1452
- "members":{
1453
- "treeId":{"shape":"ObjectId"},
1454
- "absolutePath":{"shape":"Path"},
1455
- "relativePath":{"shape":"Path"}
1456
- }
1457
- },
1458
- "FolderContentSizeLimitExceededException":{
1459
- "type":"structure",
1460
- "members":{
1461
- },
1462
- "exception":true
1463
- },
1464
- "FolderDoesNotExistException":{
1465
- "type":"structure",
1466
- "members":{
1467
- },
1468
- "exception":true
1469
- },
1470
- "FolderList":{
1471
- "type":"list",
1472
- "member":{"shape":"Folder"}
1473
- },
1474
- "GetBlobInput":{
1475
- "type":"structure",
1476
- "required":[
1477
- "repositoryName",
1478
- "blobId"
1479
- ],
1480
- "members":{
1481
- "repositoryName":{"shape":"RepositoryName"},
1482
- "blobId":{"shape":"ObjectId"}
1483
- }
1484
- },
1485
- "GetBlobOutput":{
1486
- "type":"structure",
1487
- "required":["content"],
1488
- "members":{
1489
- "content":{"shape":"blob"}
1490
- }
1491
- },
1492
- "GetBranchInput":{
1493
- "type":"structure",
1494
- "members":{
1495
- "repositoryName":{"shape":"RepositoryName"},
1496
- "branchName":{"shape":"BranchName"}
1497
- }
1498
- },
1499
- "GetBranchOutput":{
1500
- "type":"structure",
1501
- "members":{
1502
- "branch":{"shape":"BranchInfo"}
1503
- }
1504
- },
1505
- "GetCommentInput":{
1506
- "type":"structure",
1507
- "required":["commentId"],
1508
- "members":{
1509
- "commentId":{"shape":"CommentId"}
1510
- }
1511
- },
1512
- "GetCommentOutput":{
1513
- "type":"structure",
1514
- "members":{
1515
- "comment":{"shape":"Comment"}
1516
- }
1517
- },
1518
- "GetCommentsForComparedCommitInput":{
1519
- "type":"structure",
1520
- "required":[
1521
- "repositoryName",
1522
- "afterCommitId"
1523
- ],
1524
- "members":{
1525
- "repositoryName":{"shape":"RepositoryName"},
1526
- "beforeCommitId":{"shape":"CommitId"},
1527
- "afterCommitId":{"shape":"CommitId"},
1528
- "nextToken":{"shape":"NextToken"},
1529
- "maxResults":{"shape":"MaxResults"}
1530
- }
1531
- },
1532
- "GetCommentsForComparedCommitOutput":{
1533
- "type":"structure",
1534
- "members":{
1535
- "commentsForComparedCommitData":{"shape":"CommentsForComparedCommitData"},
1536
- "nextToken":{"shape":"NextToken"}
1537
- }
1538
- },
1539
- "GetCommentsForPullRequestInput":{
1540
- "type":"structure",
1541
- "required":["pullRequestId"],
1542
- "members":{
1543
- "pullRequestId":{"shape":"PullRequestId"},
1544
- "repositoryName":{"shape":"RepositoryName"},
1545
- "beforeCommitId":{"shape":"CommitId"},
1546
- "afterCommitId":{"shape":"CommitId"},
1547
- "nextToken":{"shape":"NextToken"},
1548
- "maxResults":{"shape":"MaxResults"}
1549
- }
1550
- },
1551
- "GetCommentsForPullRequestOutput":{
1552
- "type":"structure",
1553
- "members":{
1554
- "commentsForPullRequestData":{"shape":"CommentsForPullRequestData"},
1555
- "nextToken":{"shape":"NextToken"}
1556
- }
1557
- },
1558
- "GetCommitInput":{
1559
- "type":"structure",
1560
- "required":[
1561
- "repositoryName",
1562
- "commitId"
1563
- ],
1564
- "members":{
1565
- "repositoryName":{"shape":"RepositoryName"},
1566
- "commitId":{"shape":"ObjectId"}
1567
- }
1568
- },
1569
- "GetCommitOutput":{
1570
- "type":"structure",
1571
- "required":["commit"],
1572
- "members":{
1573
- "commit":{"shape":"Commit"}
1574
- }
1575
- },
1576
- "GetDifferencesInput":{
1577
- "type":"structure",
1578
- "required":[
1579
- "repositoryName",
1580
- "afterCommitSpecifier"
1581
- ],
1582
- "members":{
1583
- "repositoryName":{"shape":"RepositoryName"},
1584
- "beforeCommitSpecifier":{"shape":"CommitName"},
1585
- "afterCommitSpecifier":{"shape":"CommitName"},
1586
- "beforePath":{"shape":"Path"},
1587
- "afterPath":{"shape":"Path"},
1588
- "MaxResults":{"shape":"Limit"},
1589
- "NextToken":{"shape":"NextToken"}
1590
- }
1591
- },
1592
- "GetDifferencesOutput":{
1593
- "type":"structure",
1594
- "members":{
1595
- "differences":{"shape":"DifferenceList"},
1596
- "NextToken":{"shape":"NextToken"}
1597
- }
1598
- },
1599
- "GetFileInput":{
1600
- "type":"structure",
1601
- "required":[
1602
- "repositoryName",
1603
- "filePath"
1604
- ],
1605
- "members":{
1606
- "repositoryName":{"shape":"RepositoryName"},
1607
- "commitSpecifier":{"shape":"CommitName"},
1608
- "filePath":{"shape":"Path"}
1609
- }
1610
- },
1611
- "GetFileOutput":{
1612
- "type":"structure",
1613
- "required":[
1614
- "commitId",
1615
- "blobId",
1616
- "filePath",
1617
- "fileMode",
1618
- "fileSize",
1619
- "fileContent"
1620
- ],
1621
- "members":{
1622
- "commitId":{"shape":"ObjectId"},
1623
- "blobId":{"shape":"ObjectId"},
1624
- "filePath":{"shape":"Path"},
1625
- "fileMode":{"shape":"FileModeTypeEnum"},
1626
- "fileSize":{"shape":"ObjectSize"},
1627
- "fileContent":{"shape":"FileContent"}
1628
- }
1629
- },
1630
- "GetFolderInput":{
1631
- "type":"structure",
1632
- "required":[
1633
- "repositoryName",
1634
- "folderPath"
1635
- ],
1636
- "members":{
1637
- "repositoryName":{"shape":"RepositoryName"},
1638
- "commitSpecifier":{"shape":"CommitName"},
1639
- "folderPath":{"shape":"Path"}
1640
- }
1641
- },
1642
- "GetFolderOutput":{
1643
- "type":"structure",
1644
- "required":[
1645
- "commitId",
1646
- "folderPath"
1647
- ],
1648
- "members":{
1649
- "commitId":{"shape":"ObjectId"},
1650
- "folderPath":{"shape":"Path"},
1651
- "treeId":{"shape":"ObjectId"},
1652
- "subFolders":{"shape":"FolderList"},
1653
- "files":{"shape":"FileList"},
1654
- "symbolicLinks":{"shape":"SymbolicLinkList"},
1655
- "subModules":{"shape":"SubModuleList"}
1656
- }
1657
- },
1658
- "GetMergeConflictsInput":{
1659
- "type":"structure",
1660
- "required":[
1661
- "repositoryName",
1662
- "destinationCommitSpecifier",
1663
- "sourceCommitSpecifier",
1664
- "mergeOption"
1665
- ],
1666
- "members":{
1667
- "repositoryName":{"shape":"RepositoryName"},
1668
- "destinationCommitSpecifier":{"shape":"CommitName"},
1669
- "sourceCommitSpecifier":{"shape":"CommitName"},
1670
- "mergeOption":{"shape":"MergeOptionTypeEnum"}
1671
- }
1672
- },
1673
- "GetMergeConflictsOutput":{
1674
- "type":"structure",
1675
- "required":[
1676
- "mergeable",
1677
- "destinationCommitId",
1678
- "sourceCommitId"
1679
- ],
1680
- "members":{
1681
- "mergeable":{"shape":"IsMergeable"},
1682
- "destinationCommitId":{"shape":"CommitId"},
1683
- "sourceCommitId":{"shape":"CommitId"}
1684
- }
1685
- },
1686
- "GetPullRequestInput":{
1687
- "type":"structure",
1688
- "required":["pullRequestId"],
1689
- "members":{
1690
- "pullRequestId":{"shape":"PullRequestId"}
1691
- }
1692
- },
1693
- "GetPullRequestOutput":{
1694
- "type":"structure",
1695
- "required":["pullRequest"],
1696
- "members":{
1697
- "pullRequest":{"shape":"PullRequest"}
1698
- }
1699
- },
1700
- "GetRepositoryInput":{
1701
- "type":"structure",
1702
- "required":["repositoryName"],
1703
- "members":{
1704
- "repositoryName":{"shape":"RepositoryName"}
1705
- }
1706
- },
1707
- "GetRepositoryOutput":{
1708
- "type":"structure",
1709
- "members":{
1710
- "repositoryMetadata":{"shape":"RepositoryMetadata"}
1711
- }
1712
- },
1713
- "GetRepositoryTriggersInput":{
1714
- "type":"structure",
1715
- "required":["repositoryName"],
1716
- "members":{
1717
- "repositoryName":{"shape":"RepositoryName"}
1718
- }
1719
- },
1720
- "GetRepositoryTriggersOutput":{
1721
- "type":"structure",
1722
- "members":{
1723
- "configurationId":{"shape":"RepositoryTriggersConfigurationId"},
1724
- "triggers":{"shape":"RepositoryTriggersList"}
1725
- }
1726
- },
1727
- "IdempotencyParameterMismatchException":{
1728
- "type":"structure",
1729
- "members":{
1730
- },
1731
- "exception":true
1732
- },
1733
- "InvalidActorArnException":{
1734
- "type":"structure",
1735
- "members":{
1736
- },
1737
- "exception":true
1738
- },
1739
- "InvalidAuthorArnException":{
1740
- "type":"structure",
1741
- "members":{
1742
- },
1743
- "exception":true
1744
- },
1745
- "InvalidBlobIdException":{
1746
- "type":"structure",
1747
- "members":{
1748
- },
1749
- "exception":true
1750
- },
1751
- "InvalidBranchNameException":{
1752
- "type":"structure",
1753
- "members":{
1754
- },
1755
- "exception":true
1756
- },
1757
- "InvalidClientRequestTokenException":{
1758
- "type":"structure",
1759
- "members":{
1760
- },
1761
- "exception":true
1762
- },
1763
- "InvalidCommentIdException":{
1764
- "type":"structure",
1765
- "members":{
1766
- },
1767
- "exception":true
1768
- },
1769
- "InvalidCommitException":{
1770
- "type":"structure",
1771
- "members":{
1772
- },
1773
- "exception":true
1774
- },
1775
- "InvalidCommitIdException":{
1776
- "type":"structure",
1777
- "members":{
1778
- },
1779
- "exception":true
1780
- },
1781
- "InvalidContinuationTokenException":{
1782
- "type":"structure",
1783
- "members":{
1784
- },
1785
- "exception":true
1786
- },
1787
- "InvalidDeletionParameterException":{
1788
- "type":"structure",
1789
- "members":{
1790
- },
1791
- "exception":true
1792
- },
1793
- "InvalidDescriptionException":{
1794
- "type":"structure",
1795
- "members":{
1796
- },
1797
- "exception":true
1798
- },
1799
- "InvalidDestinationCommitSpecifierException":{
1800
- "type":"structure",
1801
- "members":{
1802
- },
1803
- "exception":true
1804
- },
1805
- "InvalidEmailException":{
1806
- "type":"structure",
1807
- "members":{
1808
- },
1809
- "exception":true
1810
- },
1811
- "InvalidFileLocationException":{
1812
- "type":"structure",
1813
- "members":{
1814
- },
1815
- "exception":true
1816
- },
1817
- "InvalidFileModeException":{
1818
- "type":"structure",
1819
- "members":{
1820
- },
1821
- "exception":true
1822
- },
1823
- "InvalidFilePositionException":{
1824
- "type":"structure",
1825
- "members":{
1826
- },
1827
- "exception":true
1828
- },
1829
- "InvalidMaxResultsException":{
1830
- "type":"structure",
1831
- "members":{
1832
- },
1833
- "exception":true
1834
- },
1835
- "InvalidMergeOptionException":{
1836
- "type":"structure",
1837
- "members":{
1838
- },
1839
- "exception":true
1840
- },
1841
- "InvalidOrderException":{
1842
- "type":"structure",
1843
- "members":{
1844
- },
1845
- "exception":true
1846
- },
1847
- "InvalidParentCommitIdException":{
1848
- "type":"structure",
1849
- "members":{
1850
- },
1851
- "exception":true
1852
- },
1853
- "InvalidPathException":{
1854
- "type":"structure",
1855
- "members":{
1856
- },
1857
- "exception":true
1858
- },
1859
- "InvalidPullRequestEventTypeException":{
1860
- "type":"structure",
1861
- "members":{
1862
- },
1863
- "exception":true
1864
- },
1865
- "InvalidPullRequestIdException":{
1866
- "type":"structure",
1867
- "members":{
1868
- },
1869
- "exception":true
1870
- },
1871
- "InvalidPullRequestStatusException":{
1872
- "type":"structure",
1873
- "members":{
1874
- },
1875
- "exception":true
1876
- },
1877
- "InvalidPullRequestStatusUpdateException":{
1878
- "type":"structure",
1879
- "members":{
1880
- },
1881
- "exception":true
1882
- },
1883
- "InvalidReferenceNameException":{
1884
- "type":"structure",
1885
- "members":{
1886
- },
1887
- "exception":true
1888
- },
1889
- "InvalidRelativeFileVersionEnumException":{
1890
- "type":"structure",
1891
- "members":{
1892
- },
1893
- "exception":true
1894
- },
1895
- "InvalidRepositoryDescriptionException":{
1896
- "type":"structure",
1897
- "members":{
1898
- },
1899
- "exception":true
1900
- },
1901
- "InvalidRepositoryNameException":{
1902
- "type":"structure",
1903
- "members":{
1904
- },
1905
- "exception":true
1906
- },
1907
- "InvalidRepositoryTriggerBranchNameException":{
1908
- "type":"structure",
1909
- "members":{
1910
- },
1911
- "exception":true
1912
- },
1913
- "InvalidRepositoryTriggerCustomDataException":{
1914
- "type":"structure",
1915
- "members":{
1916
- },
1917
- "exception":true
1918
- },
1919
- "InvalidRepositoryTriggerDestinationArnException":{
1920
- "type":"structure",
1921
- "members":{
1922
- },
1923
- "exception":true
1924
- },
1925
- "InvalidRepositoryTriggerEventsException":{
1926
- "type":"structure",
1927
- "members":{
1928
- },
1929
- "exception":true
1930
- },
1931
- "InvalidRepositoryTriggerNameException":{
1932
- "type":"structure",
1933
- "members":{
1934
- },
1935
- "exception":true
1936
- },
1937
- "InvalidRepositoryTriggerRegionException":{
1938
- "type":"structure",
1939
- "members":{
1940
- },
1941
- "exception":true
1942
- },
1943
- "InvalidSortByException":{
1944
- "type":"structure",
1945
- "members":{
1946
- },
1947
- "exception":true
1948
- },
1949
- "InvalidSourceCommitSpecifierException":{
1950
- "type":"structure",
1951
- "members":{
1952
- },
1953
- "exception":true
1954
- },
1955
- "InvalidTargetException":{
1956
- "type":"structure",
1957
- "members":{
1958
- },
1959
- "exception":true
1960
- },
1961
- "InvalidTargetsException":{
1962
- "type":"structure",
1963
- "members":{
1964
- },
1965
- "exception":true
1966
- },
1967
- "InvalidTitleException":{
1968
- "type":"structure",
1969
- "members":{
1970
- },
1971
- "exception":true
1972
- },
1973
- "IsCommentDeleted":{"type":"boolean"},
1974
- "IsMergeable":{"type":"boolean"},
1975
- "IsMerged":{"type":"boolean"},
1976
- "KeepEmptyFolders":{"type":"boolean"},
1977
- "LastModifiedDate":{"type":"timestamp"},
1978
- "Limit":{
1979
- "type":"integer",
1980
- "box":true
1981
- },
1982
- "ListBranchesInput":{
1983
- "type":"structure",
1984
- "required":["repositoryName"],
1985
- "members":{
1986
- "repositoryName":{"shape":"RepositoryName"},
1987
- "nextToken":{"shape":"NextToken"}
1988
- }
1989
- },
1990
- "ListBranchesOutput":{
1991
- "type":"structure",
1992
- "members":{
1993
- "branches":{"shape":"BranchNameList"},
1994
- "nextToken":{"shape":"NextToken"}
1995
- }
1996
- },
1997
- "ListPullRequestsInput":{
1998
- "type":"structure",
1999
- "required":["repositoryName"],
2000
- "members":{
2001
- "repositoryName":{"shape":"RepositoryName"},
2002
- "authorArn":{"shape":"Arn"},
2003
- "pullRequestStatus":{"shape":"PullRequestStatusEnum"},
2004
- "nextToken":{"shape":"NextToken"},
2005
- "maxResults":{"shape":"MaxResults"}
2006
- }
2007
- },
2008
- "ListPullRequestsOutput":{
2009
- "type":"structure",
2010
- "required":["pullRequestIds"],
2011
- "members":{
2012
- "pullRequestIds":{"shape":"PullRequestIdList"},
2013
- "nextToken":{"shape":"NextToken"}
2014
- }
2015
- },
2016
- "ListRepositoriesInput":{
2017
- "type":"structure",
2018
- "members":{
2019
- "nextToken":{"shape":"NextToken"},
2020
- "sortBy":{"shape":"SortByEnum"},
2021
- "order":{"shape":"OrderEnum"}
2022
- }
2023
- },
2024
- "ListRepositoriesOutput":{
2025
- "type":"structure",
2026
- "members":{
2027
- "repositories":{"shape":"RepositoryNameIdPairList"},
2028
- "nextToken":{"shape":"NextToken"}
2029
- }
2030
- },
2031
- "Location":{
2032
- "type":"structure",
2033
- "members":{
2034
- "filePath":{"shape":"Path"},
2035
- "filePosition":{"shape":"Position"},
2036
- "relativeFileVersion":{"shape":"RelativeFileVersionEnum"}
2037
- }
2038
- },
2039
- "ManualMergeRequiredException":{
2040
- "type":"structure",
2041
- "members":{
2042
- },
2043
- "exception":true
2044
- },
2045
- "MaxResults":{"type":"integer"},
2046
- "MaximumBranchesExceededException":{
2047
- "type":"structure",
2048
- "members":{
2049
- },
2050
- "exception":true
2051
- },
2052
- "MaximumOpenPullRequestsExceededException":{
2053
- "type":"structure",
2054
- "members":{
2055
- },
2056
- "exception":true
2057
- },
2058
- "MaximumRepositoryNamesExceededException":{
2059
- "type":"structure",
2060
- "members":{
2061
- },
2062
- "exception":true
2063
- },
2064
- "MaximumRepositoryTriggersExceededException":{
2065
- "type":"structure",
2066
- "members":{
2067
- },
2068
- "exception":true
2069
- },
2070
- "MergeMetadata":{
2071
- "type":"structure",
2072
- "members":{
2073
- "isMerged":{"shape":"IsMerged"},
2074
- "mergedBy":{"shape":"Arn"}
2075
- }
2076
- },
2077
- "MergeOptionRequiredException":{
2078
- "type":"structure",
2079
- "members":{
2080
- },
2081
- "exception":true
2082
- },
2083
- "MergeOptionTypeEnum":{
2084
- "type":"string",
2085
- "enum":["FAST_FORWARD_MERGE"]
2086
- },
2087
- "MergePullRequestByFastForwardInput":{
2088
- "type":"structure",
2089
- "required":[
2090
- "pullRequestId",
2091
- "repositoryName"
2092
- ],
2093
- "members":{
2094
- "pullRequestId":{"shape":"PullRequestId"},
2095
- "repositoryName":{"shape":"RepositoryName"},
2096
- "sourceCommitId":{"shape":"CommitId"}
2097
- }
2098
- },
2099
- "MergePullRequestByFastForwardOutput":{
2100
- "type":"structure",
2101
- "members":{
2102
- "pullRequest":{"shape":"PullRequest"}
2103
- }
2104
- },
2105
- "Message":{"type":"string"},
2106
- "Mode":{"type":"string"},
2107
- "MultipleRepositoriesInPullRequestException":{
2108
- "type":"structure",
2109
- "members":{
2110
- },
2111
- "exception":true
2112
- },
2113
- "Name":{"type":"string"},
2114
- "NameLengthExceededException":{
2115
- "type":"structure",
2116
- "members":{
2117
- },
2118
- "exception":true
2119
- },
2120
- "NextToken":{"type":"string"},
2121
- "ObjectId":{"type":"string"},
2122
- "ObjectSize":{"type":"long"},
2123
- "OrderEnum":{
2124
- "type":"string",
2125
- "enum":[
2126
- "ascending",
2127
- "descending"
2128
- ]
2129
- },
2130
- "ParentCommitDoesNotExistException":{
2131
- "type":"structure",
2132
- "members":{
2133
- },
2134
- "exception":true
2135
- },
2136
- "ParentCommitIdOutdatedException":{
2137
- "type":"structure",
2138
- "members":{
2139
- },
2140
- "exception":true
2141
- },
2142
- "ParentCommitIdRequiredException":{
2143
- "type":"structure",
2144
- "members":{
2145
- },
2146
- "exception":true
2147
- },
2148
- "ParentList":{
2149
- "type":"list",
2150
- "member":{"shape":"ObjectId"}
2151
- },
2152
- "Path":{"type":"string"},
2153
- "PathDoesNotExistException":{
2154
- "type":"structure",
2155
- "members":{
2156
- },
2157
- "exception":true
2158
- },
2159
- "PathRequiredException":{
2160
- "type":"structure",
2161
- "members":{
2162
- },
2163
- "exception":true
2164
- },
2165
- "Position":{"type":"long"},
2166
- "PostCommentForComparedCommitInput":{
2167
- "type":"structure",
2168
- "required":[
2169
- "repositoryName",
2170
- "afterCommitId",
2171
- "content"
2172
- ],
2173
- "members":{
2174
- "repositoryName":{"shape":"RepositoryName"},
2175
- "beforeCommitId":{"shape":"CommitId"},
2176
- "afterCommitId":{"shape":"CommitId"},
2177
- "location":{"shape":"Location"},
2178
- "content":{"shape":"Content"},
2179
- "clientRequestToken":{
2180
- "shape":"ClientRequestToken",
2181
- "idempotencyToken":true
2182
- }
2183
- }
2184
- },
2185
- "PostCommentForComparedCommitOutput":{
2186
- "type":"structure",
2187
- "members":{
2188
- "repositoryName":{"shape":"RepositoryName"},
2189
- "beforeCommitId":{"shape":"CommitId"},
2190
- "afterCommitId":{"shape":"CommitId"},
2191
- "beforeBlobId":{"shape":"ObjectId"},
2192
- "afterBlobId":{"shape":"ObjectId"},
2193
- "location":{"shape":"Location"},
2194
- "comment":{"shape":"Comment"}
2195
- }
2196
- },
2197
- "PostCommentForPullRequestInput":{
2198
- "type":"structure",
2199
- "required":[
2200
- "pullRequestId",
2201
- "repositoryName",
2202
- "beforeCommitId",
2203
- "afterCommitId",
2204
- "content"
2205
- ],
2206
- "members":{
2207
- "pullRequestId":{"shape":"PullRequestId"},
2208
- "repositoryName":{"shape":"RepositoryName"},
2209
- "beforeCommitId":{"shape":"CommitId"},
2210
- "afterCommitId":{"shape":"CommitId"},
2211
- "location":{"shape":"Location"},
2212
- "content":{"shape":"Content"},
2213
- "clientRequestToken":{
2214
- "shape":"ClientRequestToken",
2215
- "idempotencyToken":true
2216
- }
2217
- }
2218
- },
2219
- "PostCommentForPullRequestOutput":{
2220
- "type":"structure",
2221
- "members":{
2222
- "repositoryName":{"shape":"RepositoryName"},
2223
- "pullRequestId":{"shape":"PullRequestId"},
2224
- "beforeCommitId":{"shape":"CommitId"},
2225
- "afterCommitId":{"shape":"CommitId"},
2226
- "beforeBlobId":{"shape":"ObjectId"},
2227
- "afterBlobId":{"shape":"ObjectId"},
2228
- "location":{"shape":"Location"},
2229
- "comment":{"shape":"Comment"}
2230
- }
2231
- },
2232
- "PostCommentReplyInput":{
2233
- "type":"structure",
2234
- "required":[
2235
- "inReplyTo",
2236
- "content"
2237
- ],
2238
- "members":{
2239
- "inReplyTo":{"shape":"CommentId"},
2240
- "clientRequestToken":{
2241
- "shape":"ClientRequestToken",
2242
- "idempotencyToken":true
2243
- },
2244
- "content":{"shape":"Content"}
2245
- }
2246
- },
2247
- "PostCommentReplyOutput":{
2248
- "type":"structure",
2249
- "members":{
2250
- "comment":{"shape":"Comment"}
2251
- }
2252
- },
2253
- "PullRequest":{
2254
- "type":"structure",
2255
- "members":{
2256
- "pullRequestId":{"shape":"PullRequestId"},
2257
- "title":{"shape":"Title"},
2258
- "description":{"shape":"Description"},
2259
- "lastActivityDate":{"shape":"LastModifiedDate"},
2260
- "creationDate":{"shape":"CreationDate"},
2261
- "pullRequestStatus":{"shape":"PullRequestStatusEnum"},
2262
- "authorArn":{"shape":"Arn"},
2263
- "pullRequestTargets":{"shape":"PullRequestTargetList"},
2264
- "clientRequestToken":{"shape":"ClientRequestToken"}
2265
- }
2266
- },
2267
- "PullRequestAlreadyClosedException":{
2268
- "type":"structure",
2269
- "members":{
2270
- },
2271
- "exception":true
2272
- },
2273
- "PullRequestCreatedEventMetadata":{
2274
- "type":"structure",
2275
- "members":{
2276
- "repositoryName":{"shape":"RepositoryName"},
2277
- "sourceCommitId":{"shape":"CommitId"},
2278
- "destinationCommitId":{"shape":"CommitId"},
2279
- "mergeBase":{"shape":"CommitId"}
2280
- }
2281
- },
2282
- "PullRequestDoesNotExistException":{
2283
- "type":"structure",
2284
- "members":{
2285
- },
2286
- "exception":true
2287
- },
2288
- "PullRequestEvent":{
2289
- "type":"structure",
2290
- "members":{
2291
- "pullRequestId":{"shape":"PullRequestId"},
2292
- "eventDate":{"shape":"EventDate"},
2293
- "pullRequestEventType":{"shape":"PullRequestEventType"},
2294
- "actorArn":{"shape":"Arn"},
2295
- "pullRequestCreatedEventMetadata":{"shape":"PullRequestCreatedEventMetadata"},
2296
- "pullRequestStatusChangedEventMetadata":{"shape":"PullRequestStatusChangedEventMetadata"},
2297
- "pullRequestSourceReferenceUpdatedEventMetadata":{"shape":"PullRequestSourceReferenceUpdatedEventMetadata"},
2298
- "pullRequestMergedStateChangedEventMetadata":{"shape":"PullRequestMergedStateChangedEventMetadata"}
2299
- }
2300
- },
2301
- "PullRequestEventList":{
2302
- "type":"list",
2303
- "member":{"shape":"PullRequestEvent"}
2304
- },
2305
- "PullRequestEventType":{
2306
- "type":"string",
2307
- "enum":[
2308
- "PULL_REQUEST_CREATED",
2309
- "PULL_REQUEST_STATUS_CHANGED",
2310
- "PULL_REQUEST_SOURCE_REFERENCE_UPDATED",
2311
- "PULL_REQUEST_MERGE_STATE_CHANGED"
2312
- ]
2313
- },
2314
- "PullRequestId":{"type":"string"},
2315
- "PullRequestIdList":{
2316
- "type":"list",
2317
- "member":{"shape":"PullRequestId"}
2318
- },
2319
- "PullRequestIdRequiredException":{
2320
- "type":"structure",
2321
- "members":{
2322
- },
2323
- "exception":true
2324
- },
2325
- "PullRequestMergedStateChangedEventMetadata":{
2326
- "type":"structure",
2327
- "members":{
2328
- "repositoryName":{"shape":"RepositoryName"},
2329
- "destinationReference":{"shape":"ReferenceName"},
2330
- "mergeMetadata":{"shape":"MergeMetadata"}
2331
- }
2332
- },
2333
- "PullRequestSourceReferenceUpdatedEventMetadata":{
2334
- "type":"structure",
2335
- "members":{
2336
- "repositoryName":{"shape":"RepositoryName"},
2337
- "beforeCommitId":{"shape":"CommitId"},
2338
- "afterCommitId":{"shape":"CommitId"},
2339
- "mergeBase":{"shape":"CommitId"}
2340
- }
2341
- },
2342
- "PullRequestStatusChangedEventMetadata":{
2343
- "type":"structure",
2344
- "members":{
2345
- "pullRequestStatus":{"shape":"PullRequestStatusEnum"}
2346
- }
2347
- },
2348
- "PullRequestStatusEnum":{
2349
- "type":"string",
2350
- "enum":[
2351
- "OPEN",
2352
- "CLOSED"
2353
- ]
2354
- },
2355
- "PullRequestStatusRequiredException":{
2356
- "type":"structure",
2357
- "members":{
2358
- },
2359
- "exception":true
2360
- },
2361
- "PullRequestTarget":{
2362
- "type":"structure",
2363
- "members":{
2364
- "repositoryName":{"shape":"RepositoryName"},
2365
- "sourceReference":{"shape":"ReferenceName"},
2366
- "destinationReference":{"shape":"ReferenceName"},
2367
- "destinationCommit":{"shape":"CommitId"},
2368
- "sourceCommit":{"shape":"CommitId"},
2369
- "mergeBase":{"shape":"CommitId"},
2370
- "mergeMetadata":{"shape":"MergeMetadata"}
2371
- }
2372
- },
2373
- "PullRequestTargetList":{
2374
- "type":"list",
2375
- "member":{"shape":"PullRequestTarget"}
2376
- },
2377
- "PutFileInput":{
2378
- "type":"structure",
2379
- "required":[
2380
- "repositoryName",
2381
- "branchName",
2382
- "fileContent",
2383
- "filePath"
2384
- ],
2385
- "members":{
2386
- "repositoryName":{"shape":"RepositoryName"},
2387
- "branchName":{"shape":"BranchName"},
2388
- "fileContent":{"shape":"FileContent"},
2389
- "filePath":{"shape":"Path"},
2390
- "fileMode":{"shape":"FileModeTypeEnum"},
2391
- "parentCommitId":{"shape":"CommitId"},
2392
- "commitMessage":{"shape":"Message"},
2393
- "name":{"shape":"Name"},
2394
- "email":{"shape":"Email"}
2395
- }
2396
- },
2397
- "PutFileOutput":{
2398
- "type":"structure",
2399
- "required":[
2400
- "commitId",
2401
- "blobId",
2402
- "treeId"
2403
- ],
2404
- "members":{
2405
- "commitId":{"shape":"ObjectId"},
2406
- "blobId":{"shape":"ObjectId"},
2407
- "treeId":{"shape":"ObjectId"}
2408
- }
2409
- },
2410
- "PutRepositoryTriggersInput":{
2411
- "type":"structure",
2412
- "required":[
2413
- "repositoryName",
2414
- "triggers"
2415
- ],
2416
- "members":{
2417
- "repositoryName":{"shape":"RepositoryName"},
2418
- "triggers":{"shape":"RepositoryTriggersList"}
2419
- }
2420
- },
2421
- "PutRepositoryTriggersOutput":{
2422
- "type":"structure",
2423
- "members":{
2424
- "configurationId":{"shape":"RepositoryTriggersConfigurationId"}
2425
- }
2426
- },
2427
- "ReferenceDoesNotExistException":{
2428
- "type":"structure",
2429
- "members":{
2430
- },
2431
- "exception":true
2432
- },
2433
- "ReferenceName":{"type":"string"},
2434
- "ReferenceNameRequiredException":{
2435
- "type":"structure",
2436
- "members":{
2437
- },
2438
- "exception":true
2439
- },
2440
- "ReferenceTypeNotSupportedException":{
2441
- "type":"structure",
2442
- "members":{
2443
- },
2444
- "exception":true
2445
- },
2446
- "RelativeFileVersionEnum":{
2447
- "type":"string",
2448
- "enum":[
2449
- "BEFORE",
2450
- "AFTER"
2451
- ]
2452
- },
2453
- "RepositoryDescription":{
2454
- "type":"string",
2455
- "max":1000
2456
- },
2457
- "RepositoryDoesNotExistException":{
2458
- "type":"structure",
2459
- "members":{
2460
- },
2461
- "exception":true
2462
- },
2463
- "RepositoryId":{"type":"string"},
2464
- "RepositoryLimitExceededException":{
2465
- "type":"structure",
2466
- "members":{
2467
- },
2468
- "exception":true
2469
- },
2470
- "RepositoryMetadata":{
2471
- "type":"structure",
2472
- "members":{
2473
- "accountId":{"shape":"AccountId"},
2474
- "repositoryId":{"shape":"RepositoryId"},
2475
- "repositoryName":{"shape":"RepositoryName"},
2476
- "repositoryDescription":{"shape":"RepositoryDescription"},
2477
- "defaultBranch":{"shape":"BranchName"},
2478
- "lastModifiedDate":{"shape":"LastModifiedDate"},
2479
- "creationDate":{"shape":"CreationDate"},
2480
- "cloneUrlHttp":{"shape":"CloneUrlHttp"},
2481
- "cloneUrlSsh":{"shape":"CloneUrlSsh"},
2482
- "Arn":{"shape":"Arn"}
2483
- }
2484
- },
2485
- "RepositoryMetadataList":{
2486
- "type":"list",
2487
- "member":{"shape":"RepositoryMetadata"}
2488
- },
2489
- "RepositoryName":{
2490
- "type":"string",
2491
- "max":100,
2492
- "min":1,
2493
- "pattern":"[\\w\\.-]+"
2494
- },
2495
- "RepositoryNameExistsException":{
2496
- "type":"structure",
2497
- "members":{
2498
- },
2499
- "exception":true
2500
- },
2501
- "RepositoryNameIdPair":{
2502
- "type":"structure",
2503
- "members":{
2504
- "repositoryName":{"shape":"RepositoryName"},
2505
- "repositoryId":{"shape":"RepositoryId"}
2506
- }
2507
- },
2508
- "RepositoryNameIdPairList":{
2509
- "type":"list",
2510
- "member":{"shape":"RepositoryNameIdPair"}
2511
- },
2512
- "RepositoryNameList":{
2513
- "type":"list",
2514
- "member":{"shape":"RepositoryName"}
2515
- },
2516
- "RepositoryNameRequiredException":{
2517
- "type":"structure",
2518
- "members":{
2519
- },
2520
- "exception":true
2521
- },
2522
- "RepositoryNamesRequiredException":{
2523
- "type":"structure",
2524
- "members":{
2525
- },
2526
- "exception":true
2527
- },
2528
- "RepositoryNotAssociatedWithPullRequestException":{
2529
- "type":"structure",
2530
- "members":{
2531
- },
2532
- "exception":true
2533
- },
2534
- "RepositoryNotFoundList":{
2535
- "type":"list",
2536
- "member":{"shape":"RepositoryName"}
2537
- },
2538
- "RepositoryTrigger":{
2539
- "type":"structure",
2540
- "required":[
2541
- "name",
2542
- "destinationArn",
2543
- "events"
2544
- ],
2545
- "members":{
2546
- "name":{"shape":"RepositoryTriggerName"},
2547
- "destinationArn":{"shape":"Arn"},
2548
- "customData":{"shape":"RepositoryTriggerCustomData"},
2549
- "branches":{"shape":"BranchNameList"},
2550
- "events":{"shape":"RepositoryTriggerEventList"}
2551
- }
2552
- },
2553
- "RepositoryTriggerBranchNameListRequiredException":{
2554
- "type":"structure",
2555
- "members":{
2556
- },
2557
- "exception":true
2558
- },
2559
- "RepositoryTriggerCustomData":{"type":"string"},
2560
- "RepositoryTriggerDestinationArnRequiredException":{
2561
- "type":"structure",
2562
- "members":{
2563
- },
2564
- "exception":true
2565
- },
2566
- "RepositoryTriggerEventEnum":{
2567
- "type":"string",
2568
- "enum":[
2569
- "all",
2570
- "updateReference",
2571
- "createReference",
2572
- "deleteReference"
2573
- ]
2574
- },
2575
- "RepositoryTriggerEventList":{
2576
- "type":"list",
2577
- "member":{"shape":"RepositoryTriggerEventEnum"}
2578
- },
2579
- "RepositoryTriggerEventsListRequiredException":{
2580
- "type":"structure",
2581
- "members":{
2582
- },
2583
- "exception":true
2584
- },
2585
- "RepositoryTriggerExecutionFailure":{
2586
- "type":"structure",
2587
- "members":{
2588
- "trigger":{"shape":"RepositoryTriggerName"},
2589
- "failureMessage":{"shape":"RepositoryTriggerExecutionFailureMessage"}
2590
- }
2591
- },
2592
- "RepositoryTriggerExecutionFailureList":{
2593
- "type":"list",
2594
- "member":{"shape":"RepositoryTriggerExecutionFailure"}
2595
- },
2596
- "RepositoryTriggerExecutionFailureMessage":{"type":"string"},
2597
- "RepositoryTriggerName":{"type":"string"},
2598
- "RepositoryTriggerNameList":{
2599
- "type":"list",
2600
- "member":{"shape":"RepositoryTriggerName"}
2601
- },
2602
- "RepositoryTriggerNameRequiredException":{
2603
- "type":"structure",
2604
- "members":{
2605
- },
2606
- "exception":true
2607
- },
2608
- "RepositoryTriggersConfigurationId":{"type":"string"},
2609
- "RepositoryTriggersList":{
2610
- "type":"list",
2611
- "member":{"shape":"RepositoryTrigger"}
2612
- },
2613
- "RepositoryTriggersListRequiredException":{
2614
- "type":"structure",
2615
- "members":{
2616
- },
2617
- "exception":true
2618
- },
2619
- "SameFileContentException":{
2620
- "type":"structure",
2621
- "members":{
2622
- },
2623
- "exception":true
2624
- },
2625
- "SortByEnum":{
2626
- "type":"string",
2627
- "enum":[
2628
- "repositoryName",
2629
- "lastModifiedDate"
2630
- ]
2631
- },
2632
- "SourceAndDestinationAreSameException":{
2633
- "type":"structure",
2634
- "members":{
2635
- },
2636
- "exception":true
2637
- },
2638
- "SubModule":{
2639
- "type":"structure",
2640
- "members":{
2641
- "commitId":{"shape":"ObjectId"},
2642
- "absolutePath":{"shape":"Path"},
2643
- "relativePath":{"shape":"Path"}
2644
- }
2645
- },
2646
- "SubModuleList":{
2647
- "type":"list",
2648
- "member":{"shape":"SubModule"}
2649
- },
2650
- "SymbolicLink":{
2651
- "type":"structure",
2652
- "members":{
2653
- "blobId":{"shape":"ObjectId"},
2654
- "absolutePath":{"shape":"Path"},
2655
- "relativePath":{"shape":"Path"},
2656
- "fileMode":{"shape":"FileModeTypeEnum"}
2657
- }
2658
- },
2659
- "SymbolicLinkList":{
2660
- "type":"list",
2661
- "member":{"shape":"SymbolicLink"}
2662
- },
2663
- "Target":{
2664
- "type":"structure",
2665
- "required":[
2666
- "repositoryName",
2667
- "sourceReference"
2668
- ],
2669
- "members":{
2670
- "repositoryName":{"shape":"RepositoryName"},
2671
- "sourceReference":{"shape":"ReferenceName"},
2672
- "destinationReference":{"shape":"ReferenceName"}
2673
- }
2674
- },
2675
- "TargetList":{
2676
- "type":"list",
2677
- "member":{"shape":"Target"}
2678
- },
2679
- "TargetRequiredException":{
2680
- "type":"structure",
2681
- "members":{
2682
- },
2683
- "exception":true
2684
- },
2685
- "TargetsRequiredException":{
2686
- "type":"structure",
2687
- "members":{
2688
- },
2689
- "exception":true
2690
- },
2691
- "TestRepositoryTriggersInput":{
2692
- "type":"structure",
2693
- "required":[
2694
- "repositoryName",
2695
- "triggers"
2696
- ],
2697
- "members":{
2698
- "repositoryName":{"shape":"RepositoryName"},
2699
- "triggers":{"shape":"RepositoryTriggersList"}
2700
- }
2701
- },
2702
- "TestRepositoryTriggersOutput":{
2703
- "type":"structure",
2704
- "members":{
2705
- "successfulExecutions":{"shape":"RepositoryTriggerNameList"},
2706
- "failedExecutions":{"shape":"RepositoryTriggerExecutionFailureList"}
2707
- }
2708
- },
2709
- "TipOfSourceReferenceIsDifferentException":{
2710
- "type":"structure",
2711
- "members":{
2712
- },
2713
- "exception":true
2714
- },
2715
- "TipsDivergenceExceededException":{
2716
- "type":"structure",
2717
- "members":{
2718
- },
2719
- "exception":true
2720
- },
2721
- "Title":{
2722
- "type":"string",
2723
- "max":150
2724
- },
2725
- "TitleRequiredException":{
2726
- "type":"structure",
2727
- "members":{
2728
- },
2729
- "exception":true
2730
- },
2731
- "UpdateCommentInput":{
2732
- "type":"structure",
2733
- "required":[
2734
- "commentId",
2735
- "content"
2736
- ],
2737
- "members":{
2738
- "commentId":{"shape":"CommentId"},
2739
- "content":{"shape":"Content"}
2740
- }
2741
- },
2742
- "UpdateCommentOutput":{
2743
- "type":"structure",
2744
- "members":{
2745
- "comment":{"shape":"Comment"}
2746
- }
2747
- },
2748
- "UpdateDefaultBranchInput":{
2749
- "type":"structure",
2750
- "required":[
2751
- "repositoryName",
2752
- "defaultBranchName"
2753
- ],
2754
- "members":{
2755
- "repositoryName":{"shape":"RepositoryName"},
2756
- "defaultBranchName":{"shape":"BranchName"}
2757
- }
2758
- },
2759
- "UpdatePullRequestDescriptionInput":{
2760
- "type":"structure",
2761
- "required":[
2762
- "pullRequestId",
2763
- "description"
2764
- ],
2765
- "members":{
2766
- "pullRequestId":{"shape":"PullRequestId"},
2767
- "description":{"shape":"Description"}
2768
- }
2769
- },
2770
- "UpdatePullRequestDescriptionOutput":{
2771
- "type":"structure",
2772
- "required":["pullRequest"],
2773
- "members":{
2774
- "pullRequest":{"shape":"PullRequest"}
2775
- }
2776
- },
2777
- "UpdatePullRequestStatusInput":{
2778
- "type":"structure",
2779
- "required":[
2780
- "pullRequestId",
2781
- "pullRequestStatus"
2782
- ],
2783
- "members":{
2784
- "pullRequestId":{"shape":"PullRequestId"},
2785
- "pullRequestStatus":{"shape":"PullRequestStatusEnum"}
2786
- }
2787
- },
2788
- "UpdatePullRequestStatusOutput":{
2789
- "type":"structure",
2790
- "required":["pullRequest"],
2791
- "members":{
2792
- "pullRequest":{"shape":"PullRequest"}
2793
- }
2794
- },
2795
- "UpdatePullRequestTitleInput":{
2796
- "type":"structure",
2797
- "required":[
2798
- "pullRequestId",
2799
- "title"
2800
- ],
2801
- "members":{
2802
- "pullRequestId":{"shape":"PullRequestId"},
2803
- "title":{"shape":"Title"}
2804
- }
2805
- },
2806
- "UpdatePullRequestTitleOutput":{
2807
- "type":"structure",
2808
- "required":["pullRequest"],
2809
- "members":{
2810
- "pullRequest":{"shape":"PullRequest"}
2811
- }
2812
- },
2813
- "UpdateRepositoryDescriptionInput":{
2814
- "type":"structure",
2815
- "required":["repositoryName"],
2816
- "members":{
2817
- "repositoryName":{"shape":"RepositoryName"},
2818
- "repositoryDescription":{"shape":"RepositoryDescription"}
2819
- }
2820
- },
2821
- "UpdateRepositoryNameInput":{
2822
- "type":"structure",
2823
- "required":[
2824
- "oldName",
2825
- "newName"
2826
- ],
2827
- "members":{
2828
- "oldName":{"shape":"RepositoryName"},
2829
- "newName":{"shape":"RepositoryName"}
2830
- }
2831
- },
2832
- "UserInfo":{
2833
- "type":"structure",
2834
- "members":{
2835
- "name":{"shape":"Name"},
2836
- "email":{"shape":"Email"},
2837
- "date":{"shape":"Date"}
2838
- }
2839
- },
2840
- "blob":{"type":"blob"}
2841
- }
2842
- }