aws-sdk-core 2.11.361 → 3.67.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (1166) hide show
  1. checksums.yaml +4 -4
  2. data/VERSION +1 -0
  3. data/lib/aws-sdk-core.rb +84 -552
  4. data/lib/aws-sdk-core/assume_role_web_identity_credentials.rb +101 -0
  5. data/lib/aws-sdk-core/async_client_stubs.rb +80 -0
  6. data/lib/aws-sdk-core/binary.rb +6 -0
  7. data/lib/aws-sdk-core/binary/decode_handler.rb +56 -0
  8. data/lib/aws-sdk-core/binary/encode_handler.rb +32 -0
  9. data/lib/aws-sdk-core/binary/event_builder.rb +122 -0
  10. data/lib/aws-sdk-core/binary/event_parser.rb +134 -0
  11. data/lib/aws-sdk-core/binary/event_stream_decoder.rb +62 -0
  12. data/lib/aws-sdk-core/binary/event_stream_encoder.rb +53 -0
  13. data/lib/aws-sdk-core/client_side_monitoring/publisher.rb +49 -0
  14. data/lib/aws-sdk-core/client_side_monitoring/request_metrics.rb +197 -0
  15. data/lib/aws-sdk-core/client_stubs.rb +11 -8
  16. data/lib/aws-sdk-core/credential_provider.rb +2 -0
  17. data/lib/aws-sdk-core/credential_provider_chain.rb +41 -14
  18. data/lib/aws-sdk-core/errors.rb +123 -22
  19. data/lib/aws-sdk-core/event_emitter.rb +62 -0
  20. data/lib/aws-sdk-core/ini_parser.rb +1 -0
  21. data/lib/aws-sdk-core/instance_profile_credentials.rb +4 -3
  22. data/lib/aws-sdk-core/json.rb +9 -10
  23. data/lib/aws-sdk-core/json/builder.rb +4 -2
  24. data/lib/aws-sdk-core/json/error_handler.rb +19 -2
  25. data/lib/aws-sdk-core/json/handler.rb +22 -3
  26. data/lib/aws-sdk-core/json/parser.rb +1 -1
  27. data/lib/aws-sdk-core/log/param_filter.rb +4 -3
  28. data/lib/aws-sdk-core/pageable_response.rb +1 -0
  29. data/lib/aws-sdk-core/pager.rb +30 -25
  30. data/lib/aws-sdk-core/param_converter.rb +3 -3
  31. data/lib/aws-sdk-core/param_validator.rb +56 -21
  32. data/lib/aws-sdk-core/plugins/api_key.rb +52 -0
  33. data/lib/aws-sdk-core/plugins/apig_authorizer_token.rb +30 -0
  34. data/lib/aws-sdk-core/plugins/apig_credentials_configuration.rb +34 -0
  35. data/lib/aws-sdk-core/plugins/apig_user_agent.rb +37 -0
  36. data/lib/aws-sdk-core/plugins/client_metrics_plugin.rb +280 -0
  37. data/lib/aws-sdk-core/plugins/client_metrics_send_plugin.rb +84 -0
  38. data/lib/aws-sdk-core/plugins/credentials_configuration.rb +62 -0
  39. data/lib/aws-sdk-core/plugins/endpoint_discovery.rb +43 -50
  40. data/lib/aws-sdk-core/plugins/endpoint_pattern.rb +9 -8
  41. data/lib/aws-sdk-core/plugins/event_stream_configuration.rb +30 -0
  42. data/lib/aws-sdk-core/plugins/global_configuration.rb +19 -10
  43. data/lib/aws-sdk-core/plugins/idempotency_token.rb +1 -2
  44. data/lib/aws-sdk-core/plugins/invocation_id.rb +33 -0
  45. data/lib/aws-sdk-core/plugins/logging.rb +18 -18
  46. data/lib/aws-sdk-core/plugins/param_converter.rb +9 -5
  47. data/lib/aws-sdk-core/plugins/param_validator.rb +8 -5
  48. data/lib/aws-sdk-core/plugins/protocols/api_gateway.rb +10 -0
  49. data/lib/aws-sdk-core/plugins/protocols/ec2.rb +2 -1
  50. data/lib/aws-sdk-core/plugins/protocols/json_rpc.rb +13 -12
  51. data/lib/aws-sdk-core/plugins/protocols/query.rb +2 -2
  52. data/lib/aws-sdk-core/plugins/regional_endpoint.rb +23 -15
  53. data/lib/aws-sdk-core/plugins/response_paging.rb +5 -18
  54. data/lib/aws-sdk-core/plugins/retry_errors.rb +81 -25
  55. data/lib/aws-sdk-core/plugins/signature_v2.rb +51 -0
  56. data/lib/aws-sdk-core/plugins/signature_v4.rb +141 -0
  57. data/lib/aws-sdk-core/plugins/stub_responses.rb +35 -18
  58. data/lib/aws-sdk-core/plugins/transfer_encoding.rb +53 -0
  59. data/lib/aws-sdk-core/plugins/user_agent.rb +23 -6
  60. data/lib/aws-sdk-core/process_credentials.rb +80 -0
  61. data/lib/aws-sdk-core/query.rb +5 -0
  62. data/lib/aws-sdk-core/query/ec2_param_builder.rb +9 -3
  63. data/lib/aws-sdk-core/query/handler.rb +20 -16
  64. data/lib/aws-sdk-core/query/param_builder.rb +10 -4
  65. data/lib/aws-sdk-core/refreshing_credentials.rb +1 -1
  66. data/lib/aws-sdk-core/resources/collection.rb +121 -0
  67. data/lib/aws-sdk-core/rest.rb +10 -0
  68. data/lib/aws-sdk-core/rest/handler.rb +1 -0
  69. data/lib/aws-sdk-core/rest/request/builder.rb +2 -1
  70. data/lib/aws-sdk-core/rest/request/endpoint.rb +3 -3
  71. data/lib/aws-sdk-core/rest/request/headers.rb +11 -1
  72. data/lib/aws-sdk-core/rest/request/querystring_builder.rb +13 -0
  73. data/lib/aws-sdk-core/rest/response/body.rb +14 -1
  74. data/lib/aws-sdk-core/rest/response/headers.rb +2 -0
  75. data/lib/aws-sdk-core/rest/response/parser.rb +18 -14
  76. data/lib/aws-sdk-core/shared_config.rb +164 -11
  77. data/lib/aws-sdk-core/shared_credentials.rb +2 -0
  78. data/lib/aws-sdk-core/structure.rb +22 -13
  79. data/lib/aws-sdk-core/stubbing/data_applicator.rb +1 -1
  80. data/lib/aws-sdk-core/stubbing/empty_stub.rb +10 -3
  81. data/lib/aws-sdk-core/stubbing/protocols/api_gateway.rb +8 -0
  82. data/lib/aws-sdk-core/stubbing/protocols/ec2.rb +1 -1
  83. data/lib/aws-sdk-core/stubbing/protocols/rest.rb +92 -0
  84. data/lib/aws-sdk-core/stubbing/protocols/rest_json.rb +5 -1
  85. data/lib/aws-sdk-core/stubbing/protocols/rest_xml.rb +9 -5
  86. data/lib/aws-sdk-core/stubbing/stub_data.rb +16 -3
  87. data/lib/aws-sdk-core/util.rb +66 -0
  88. data/lib/aws-sdk-core/waiters.rb +3 -0
  89. data/lib/aws-sdk-core/waiters/poller.rb +5 -9
  90. data/lib/aws-sdk-core/waiters/waiter.rb +1 -0
  91. data/lib/aws-sdk-core/xml.rb +9 -0
  92. data/lib/aws-sdk-core/xml/builder.rb +11 -5
  93. data/lib/aws-sdk-core/xml/error_handler.rb +27 -5
  94. data/lib/aws-sdk-core/xml/parser.rb +1 -11
  95. data/lib/aws-sdk-core/xml/parser/frame.rb +6 -6
  96. data/lib/aws-sdk-sts.rb +45 -0
  97. data/lib/aws-sdk-sts/client.rb +1833 -0
  98. data/lib/aws-sdk-sts/client_api.rb +320 -0
  99. data/lib/aws-sdk-sts/customizations.rb +0 -0
  100. data/lib/aws-sdk-sts/errors.rb +142 -0
  101. data/lib/aws-sdk-sts/resource.rb +23 -0
  102. data/lib/aws-sdk-sts/types.rb +1312 -0
  103. data/lib/seahorse.rb +60 -60
  104. data/lib/seahorse/client/async_base.rb +50 -0
  105. data/lib/seahorse/client/async_response.rb +62 -0
  106. data/lib/seahorse/client/base.rb +2 -8
  107. data/lib/seahorse/client/configuration.rb +4 -2
  108. data/lib/seahorse/client/h2/connection.rb +244 -0
  109. data/lib/seahorse/client/h2/handler.rb +151 -0
  110. data/lib/seahorse/client/handler_list_entry.rb +2 -2
  111. data/lib/seahorse/client/http/async_response.rb +42 -0
  112. data/lib/seahorse/client/http/response.rb +10 -5
  113. data/lib/seahorse/client/logging/formatter.rb +2 -0
  114. data/lib/seahorse/client/logging/handler.rb +2 -0
  115. data/lib/seahorse/client/net_http/connection_pool.rb +16 -4
  116. data/lib/seahorse/client/net_http/handler.rb +5 -0
  117. data/lib/seahorse/client/net_http/patches.rb +9 -1
  118. data/lib/seahorse/client/networking_error.rb +28 -0
  119. data/lib/seahorse/client/plugin.rb +66 -6
  120. data/lib/seahorse/client/plugins/content_length.rb +7 -2
  121. data/lib/seahorse/client/plugins/endpoint.rb +14 -10
  122. data/lib/seahorse/client/plugins/h2.rb +64 -0
  123. data/lib/seahorse/client/plugins/logging.rb +17 -19
  124. data/lib/seahorse/client/plugins/net_http.rb +23 -15
  125. data/lib/seahorse/client/plugins/raise_response_errors.rb +4 -4
  126. data/lib/seahorse/client/plugins/response_target.rb +10 -1
  127. data/lib/seahorse/client/request_context.rb +5 -0
  128. data/lib/seahorse/model/api.rb +33 -0
  129. data/lib/seahorse/model/authorizer.rb +21 -0
  130. data/lib/seahorse/model/operation.rb +11 -0
  131. data/lib/seahorse/model/shapes.rb +44 -2
  132. data/lib/seahorse/util.rb +1 -22
  133. metadata +91 -1042
  134. data/apis/AWSMigrationHub/2017-05-31/api-2.json +0 -838
  135. data/apis/AWSMigrationHub/2017-05-31/examples-1.json +0 -5
  136. data/apis/AWSMigrationHub/2017-05-31/paginators-1.json +0 -4
  137. data/apis/acm-pca/2017-08-22/api-2.json +0 -1091
  138. data/apis/acm-pca/2017-08-22/examples-1.json +0 -5
  139. data/apis/acm-pca/2017-08-22/paginators-1.json +0 -22
  140. data/apis/acm-pca/2017-08-22/waiters-2.json +0 -61
  141. data/apis/acm/2015-12-08/api-2.json +0 -843
  142. data/apis/acm/2015-12-08/examples-1.json +0 -5
  143. data/apis/acm/2015-12-08/paginators-1.json +0 -10
  144. data/apis/acm/2015-12-08/smoke.json +0 -18
  145. data/apis/acm/2015-12-08/waiters-2.json +0 -35
  146. data/apis/alexaforbusiness/2017-11-09/api-2.json +0 -4003
  147. data/apis/alexaforbusiness/2017-11-09/examples-1.json +0 -5
  148. data/apis/alexaforbusiness/2017-11-09/paginators-1.json +0 -94
  149. data/apis/amplify/2017-07-25/api-2.json +0 -1972
  150. data/apis/amplify/2017-07-25/examples-1.json +0 -5
  151. data/apis/amplify/2017-07-25/paginators-1.json +0 -4
  152. data/apis/apigateway/2015-07-09/api-2.json +0 -5384
  153. data/apis/apigateway/2015-07-09/examples-1.json +0 -5
  154. data/apis/apigateway/2015-07-09/paginators-1.json +0 -76
  155. data/apis/apigateway/2015-07-09/smoke.json +0 -20
  156. data/apis/apigatewaymanagementapi/2018-11-29/api-2.json +0 -192
  157. data/apis/apigatewaymanagementapi/2018-11-29/paginators-1.json +0 -3
  158. data/apis/apigatewayv2/2018-11-29/api-2.json +0 -5773
  159. data/apis/apigatewayv2/2018-11-29/paginators-1.json +0 -3
  160. data/apis/application-autoscaling/2016-02-06/api-2.json +0 -779
  161. data/apis/application-autoscaling/2016-02-06/examples-1.json +0 -257
  162. data/apis/application-autoscaling/2016-02-06/paginators-1.json +0 -28
  163. data/apis/application-autoscaling/2016-02-06/smoke.json +0 -13
  164. data/apis/application-insights/2018-11-25/api-2.json +0 -721
  165. data/apis/application-insights/2018-11-25/examples-1.json +0 -5
  166. data/apis/application-insights/2018-11-25/paginators-1.json +0 -19
  167. data/apis/appmesh/2018-10-01/api-2.json +0 -1972
  168. data/apis/appmesh/2018-10-01/examples-1.json +0 -4
  169. data/apis/appmesh/2018-10-01/paginators-1.json +0 -28
  170. data/apis/appmesh/2019-01-25/api-2.json +0 -3281
  171. data/apis/appmesh/2019-01-25/examples-1.json +0 -4
  172. data/apis/appmesh/2019-01-25/paginators-1.json +0 -40
  173. data/apis/appstream/2016-12-01/api-2.json +0 -2340
  174. data/apis/appstream/2016-12-01/examples-1.json +0 -5
  175. data/apis/appstream/2016-12-01/paginators-1.json +0 -14
  176. data/apis/appstream/2016-12-01/smoke.json +0 -11
  177. data/apis/appstream/2016-12-01/waiters-2.json +0 -55
  178. data/apis/appsync/2017-07-25/api-2.json +0 -2003
  179. data/apis/appsync/2017-07-25/examples-1.json +0 -5
  180. data/apis/appsync/2017-07-25/paginators-1.json +0 -4
  181. data/apis/athena/2017-05-18/api-2.json +0 -985
  182. data/apis/athena/2017-05-18/examples-1.json +0 -5
  183. data/apis/athena/2017-05-18/paginators-1.json +0 -24
  184. data/apis/athena/2017-05-18/smoke.json +0 -11
  185. data/apis/autoscaling-plans/2018-01-06/api-2.json +0 -659
  186. data/apis/autoscaling-plans/2018-01-06/examples-1.json +0 -5
  187. data/apis/autoscaling-plans/2018-01-06/paginators-1.json +0 -4
  188. data/apis/autoscaling/2011-01-01/api-2.json +0 -2455
  189. data/apis/autoscaling/2011-01-01/examples-1.json +0 -1396
  190. data/apis/autoscaling/2011-01-01/paginators-1.json +0 -52
  191. data/apis/autoscaling/2011-01-01/resources-1.json +0 -1624
  192. data/apis/autoscaling/2011-01-01/smoke.json +0 -20
  193. data/apis/autoscaling/2011-01-01/waiters-2.json +0 -62
  194. data/apis/backup/2018-11-15/api-2.json +0 -2150
  195. data/apis/backup/2018-11-15/examples-1.json +0 -5
  196. data/apis/backup/2018-11-15/paginators-1.json +0 -59
  197. data/apis/batch/2016-08-10/api-2.json +0 -1128
  198. data/apis/batch/2016-08-10/examples-1.json +0 -589
  199. data/apis/batch/2016-08-10/paginators-1.json +0 -28
  200. data/apis/batch/2016-08-10/smoke.json +0 -11
  201. data/apis/budgets/2016-10-20/api-2.json +0 -807
  202. data/apis/budgets/2016-10-20/examples-1.json +0 -5
  203. data/apis/budgets/2016-10-20/paginators-1.json +0 -4
  204. data/apis/ce/2017-10-25/api-2.json +0 -1035
  205. data/apis/ce/2017-10-25/examples-1.json +0 -5
  206. data/apis/ce/2017-10-25/paginators-1.json +0 -4
  207. data/apis/chime/2018-05-01/api-2.json +0 -2902
  208. data/apis/chime/2018-05-01/examples-1.json +0 -5
  209. data/apis/chime/2018-05-01/paginators-1.json +0 -29
  210. data/apis/cloud9/2017-09-23/api-2.json +0 -547
  211. data/apis/cloud9/2017-09-23/examples-1.json +0 -308
  212. data/apis/cloud9/2017-09-23/paginators-1.json +0 -14
  213. data/apis/clouddirectory/2016-05-10/api-2.json +0 -4244
  214. data/apis/clouddirectory/2016-05-10/examples-1.json +0 -5
  215. data/apis/clouddirectory/2016-05-10/paginators-1.json +0 -94
  216. data/apis/clouddirectory/2017-01-11/api-2.json +0 -4321
  217. data/apis/clouddirectory/2017-01-11/examples-1.json +0 -5
  218. data/apis/clouddirectory/2017-01-11/paginators-1.json +0 -99
  219. data/apis/cloudformation/2010-05-15/api-2.json +0 -2686
  220. data/apis/cloudformation/2010-05-15/examples-1.json +0 -5
  221. data/apis/cloudformation/2010-05-15/paginators-1.json +0 -42
  222. data/apis/cloudformation/2010-05-15/resources-1.json +0 -211
  223. data/apis/cloudformation/2010-05-15/waiters-2.json +0 -182
  224. data/apis/cloudfront/2016-01-28/api-2.json +0 -2219
  225. data/apis/cloudfront/2016-01-28/examples-1.json +0 -5
  226. data/apis/cloudfront/2016-01-28/paginators-1.json +0 -32
  227. data/apis/cloudfront/2016-01-28/waiters-2.json +0 -47
  228. data/apis/cloudfront/2016-08-01/api-2.json +0 -2548
  229. data/apis/cloudfront/2016-08-01/examples-1.json +0 -5
  230. data/apis/cloudfront/2016-08-01/paginators-1.json +0 -32
  231. data/apis/cloudfront/2016-08-01/waiters-2.json +0 -47
  232. data/apis/cloudfront/2016-08-20/api-2.json +0 -2586
  233. data/apis/cloudfront/2016-08-20/paginators-1.json +0 -32
  234. data/apis/cloudfront/2016-08-20/waiters-2.json +0 -47
  235. data/apis/cloudfront/2016-09-07/api-2.json +0 -2596
  236. data/apis/cloudfront/2016-09-07/examples-1.json +0 -5
  237. data/apis/cloudfront/2016-09-07/paginators-1.json +0 -32
  238. data/apis/cloudfront/2016-09-07/waiters-2.json +0 -47
  239. data/apis/cloudfront/2016-09-29/api-2.json +0 -2599
  240. data/apis/cloudfront/2016-09-29/examples-1.json +0 -5
  241. data/apis/cloudfront/2016-09-29/paginators-1.json +0 -32
  242. data/apis/cloudfront/2016-09-29/waiters-2.json +0 -47
  243. data/apis/cloudfront/2016-11-25/api-2.json +0 -2665
  244. data/apis/cloudfront/2016-11-25/examples-1.json +0 -5
  245. data/apis/cloudfront/2016-11-25/paginators-1.json +0 -32
  246. data/apis/cloudfront/2016-11-25/waiters-2.json +0 -47
  247. data/apis/cloudfront/2017-03-25/api-2.json +0 -2726
  248. data/apis/cloudfront/2017-03-25/examples-1.json +0 -83
  249. data/apis/cloudfront/2017-03-25/paginators-1.json +0 -32
  250. data/apis/cloudfront/2017-03-25/waiters-2.json +0 -47
  251. data/apis/cloudfront/2017-10-30/api-2.json +0 -3906
  252. data/apis/cloudfront/2017-10-30/examples-1.json +0 -5
  253. data/apis/cloudfront/2017-10-30/paginators-1.json +0 -32
  254. data/apis/cloudfront/2017-10-30/smoke.json +0 -20
  255. data/apis/cloudfront/2017-10-30/waiters-2.json +0 -47
  256. data/apis/cloudfront/2018-06-18/api-2.json +0 -3907
  257. data/apis/cloudfront/2018-06-18/examples-1.json +0 -5
  258. data/apis/cloudfront/2018-06-18/paginators-1.json +0 -32
  259. data/apis/cloudfront/2018-06-18/smoke.json +0 -20
  260. data/apis/cloudfront/2018-06-18/waiters-2.json +0 -47
  261. data/apis/cloudfront/2018-11-05/api-2.json +0 -4004
  262. data/apis/cloudfront/2018-11-05/examples-1.json +0 -5
  263. data/apis/cloudfront/2018-11-05/paginators-1.json +0 -32
  264. data/apis/cloudfront/2018-11-05/smoke.json +0 -20
  265. data/apis/cloudfront/2018-11-05/waiters-2.json +0 -47
  266. data/apis/cloudfront/2019-03-26/api-2.json +0 -4032
  267. data/apis/cloudfront/2019-03-26/examples-1.json +0 -5
  268. data/apis/cloudfront/2019-03-26/paginators-1.json +0 -32
  269. data/apis/cloudfront/2019-03-26/smoke.json +0 -20
  270. data/apis/cloudfront/2019-03-26/waiters-2.json +0 -47
  271. data/apis/cloudhsm/2014-05-30/api-2.json +0 -879
  272. data/apis/cloudhsm/2014-05-30/examples-1.json +0 -5
  273. data/apis/cloudhsm/2014-05-30/paginators-1.json +0 -4
  274. data/apis/cloudhsmv2/2017-04-28/api-2.json +0 -718
  275. data/apis/cloudhsmv2/2017-04-28/examples-1.json +0 -5
  276. data/apis/cloudhsmv2/2017-04-28/paginators-1.json +0 -19
  277. data/apis/cloudhsmv2/2017-04-28/smoke.json +0 -18
  278. data/apis/cloudsearch/2013-01-01/api-2.json +0 -2002
  279. data/apis/cloudsearch/2013-01-01/paginators-1.json +0 -20
  280. data/apis/cloudsearchdomain/2013-01-01/api-2.json +0 -374
  281. data/apis/cloudsearchdomain/2013-01-01/examples-1.json +0 -5
  282. data/apis/cloudtrail/2013-11-01/api-2.json +0 -978
  283. data/apis/cloudtrail/2013-11-01/examples-1.json +0 -5
  284. data/apis/cloudtrail/2013-11-01/paginators-1.json +0 -13
  285. data/apis/cloudtrail/2013-11-01/smoke.json +0 -18
  286. data/apis/codebuild/2016-10-06/api-2.json +0 -1276
  287. data/apis/codebuild/2016-10-06/examples-1.json +0 -281
  288. data/apis/codebuild/2016-10-06/paginators-1.json +0 -4
  289. data/apis/codebuild/2016-10-06/smoke.json +0 -11
  290. data/apis/codecommit/2015-04-13/api-2.json +0 -4248
  291. data/apis/codecommit/2015-04-13/examples-1.json +0 -5
  292. data/apis/codecommit/2015-04-13/paginators-1.json +0 -49
  293. data/apis/codecommit/2015-04-13/smoke.json +0 -18
  294. data/apis/codedeploy/2014-10-06/api-2.json +0 -3224
  295. data/apis/codedeploy/2014-10-06/examples-1.json +0 -5
  296. data/apis/codedeploy/2014-10-06/paginators-1.json +0 -34
  297. data/apis/codedeploy/2014-10-06/smoke.json +0 -18
  298. data/apis/codedeploy/2014-10-06/waiters-2.json +0 -30
  299. data/apis/codepipeline/2015-07-09/api-2.json +0 -2406
  300. data/apis/codepipeline/2015-07-09/examples-1.json +0 -5
  301. data/apis/codepipeline/2015-07-09/paginators-1.json +0 -38
  302. data/apis/codepipeline/2015-07-09/smoke.json +0 -18
  303. data/apis/codestar/2017-04-19/api-2.json +0 -1033
  304. data/apis/codestar/2017-04-19/examples-1.json +0 -5
  305. data/apis/codestar/2017-04-19/paginators-1.json +0 -4
  306. data/apis/codestar/2017-04-19/smoke.json +0 -11
  307. data/apis/cognito-identity/2014-06-30/api-2.json +0 -1053
  308. data/apis/cognito-identity/2014-06-30/examples-1.json +0 -5
  309. data/apis/cognito-identity/2014-06-30/paginators-1.json +0 -4
  310. data/apis/cognito-idp/2016-04-18/api-2.json +0 -5349
  311. data/apis/cognito-idp/2016-04-18/examples-1.json +0 -5
  312. data/apis/cognito-idp/2016-04-18/paginators-1.json +0 -52
  313. data/apis/cognito-idp/2016-04-18/smoke.json +0 -20
  314. data/apis/cognito-sync/2014-06-30/api-2.json +0 -1875
  315. data/apis/comprehend/2017-11-27/api-2.json +0 -2361
  316. data/apis/comprehend/2017-11-27/examples-1.json +0 -5
  317. data/apis/comprehend/2017-11-27/paginators-1.json +0 -44
  318. data/apis/comprehendmedical/2018-10-30/api-2.json +0 -681
  319. data/apis/comprehendmedical/2018-10-30/examples-1.json +0 -5
  320. data/apis/comprehendmedical/2018-10-30/paginators-1.json +0 -4
  321. data/apis/config/2014-11-12/api-2.json +0 -3496
  322. data/apis/config/2014-11-12/examples-1.json +0 -5
  323. data/apis/config/2014-11-12/paginators-1.json +0 -21
  324. data/apis/config/2014-11-12/smoke.json +0 -19
  325. data/apis/connect/2017-08-08/api-2.json +0 -1379
  326. data/apis/connect/2017-08-08/examples-1.json +0 -5
  327. data/apis/connect/2017-08-08/paginators-1.json +0 -14
  328. data/apis/cur/2017-01-06/api-2.json +0 -277
  329. data/apis/cur/2017-01-06/examples-1.json +0 -102
  330. data/apis/cur/2017-01-06/paginators-1.json +0 -9
  331. data/apis/cur/2017-01-06/smoke.json +0 -11
  332. data/apis/datapipeline/2012-10-29/api-2.json +0 -1168
  333. data/apis/datapipeline/2012-10-29/paginators-1.json +0 -26
  334. data/apis/datasync/2018-11-09/api-2.json +0 -1327
  335. data/apis/datasync/2018-11-09/examples-1.json +0 -5
  336. data/apis/datasync/2018-11-09/paginators-1.json +0 -29
  337. data/apis/dax/2017-04-19/api-2.json +0 -1140
  338. data/apis/dax/2017-04-19/examples-1.json +0 -5
  339. data/apis/dax/2017-04-19/paginators-1.json +0 -4
  340. data/apis/devicefarm/2015-06-23/api-2.json +0 -3197
  341. data/apis/devicefarm/2015-06-23/examples-1.json +0 -1242
  342. data/apis/devicefarm/2015-06-23/paginators-1.json +0 -77
  343. data/apis/devicefarm/2015-06-23/smoke.json +0 -18
  344. data/apis/directconnect/2012-10-25/api-2.json +0 -2066
  345. data/apis/directconnect/2012-10-25/examples-1.json +0 -5
  346. data/apis/directconnect/2012-10-25/paginators-1.json +0 -22
  347. data/apis/directconnect/2012-10-25/smoke.json +0 -18
  348. data/apis/discovery/2015-11-01/api-2.json +0 -1334
  349. data/apis/discovery/2015-11-01/examples-1.json +0 -5
  350. data/apis/discovery/2015-11-01/paginators-1.json +0 -14
  351. data/apis/discovery/2015-11-01/smoke.json +0 -11
  352. data/apis/dlm/2018-01-12/api-2.json +0 -444
  353. data/apis/dlm/2018-01-12/examples-1.json +0 -5
  354. data/apis/dlm/2018-01-12/paginators-1.json +0 -4
  355. data/apis/dms/2016-01-01/api-2.json +0 -2291
  356. data/apis/dms/2016-01-01/examples-1.json +0 -1074
  357. data/apis/dms/2016-01-01/paginators-1.json +0 -79
  358. data/apis/dms/2016-01-01/smoke.json +0 -18
  359. data/apis/dms/2016-01-01/waiters-2.json +0 -336
  360. data/apis/docdb/2014-10-31/api-2.json +0 -2482
  361. data/apis/docdb/2014-10-31/examples-1.json +0 -5
  362. data/apis/docdb/2014-10-31/paginators-1.json +0 -43
  363. data/apis/docdb/2014-10-31/smoke.json +0 -18
  364. data/apis/docdb/2014-10-31/waiters-2.json +0 -90
  365. data/apis/ds/2015-04-16/api-2.json +0 -2634
  366. data/apis/ds/2015-04-16/examples-1.json +0 -5
  367. data/apis/ds/2015-04-16/paginators-1.json +0 -9
  368. data/apis/ds/2015-04-16/smoke.json +0 -20
  369. data/apis/dynamodb/2011-12-05/api-2.json +0 -803
  370. data/apis/dynamodb/2011-12-05/examples-1.json +0 -5
  371. data/apis/dynamodb/2011-12-05/paginators-1.json +0 -26
  372. data/apis/dynamodb/2011-12-05/smoke.json +0 -20
  373. data/apis/dynamodb/2011-12-05/waiters-2.json +0 -35
  374. data/apis/dynamodb/2012-08-10/api-2.json +0 -2802
  375. data/apis/dynamodb/2012-08-10/examples-1.json +0 -631
  376. data/apis/dynamodb/2012-08-10/paginators-1.json +0 -26
  377. data/apis/dynamodb/2012-08-10/resources-1.json +0 -136
  378. data/apis/dynamodb/2012-08-10/smoke.json +0 -20
  379. data/apis/dynamodb/2012-08-10/waiters-2.json +0 -35
  380. data/apis/ec2-instance-connect/2018-04-02/api-2.json +0 -119
  381. data/apis/ec2-instance-connect/2018-04-02/examples-1.json +0 -34
  382. data/apis/ec2-instance-connect/2018-04-02/paginators-1.json +0 -4
  383. data/apis/ec2/2015-10-01/api-2.json +0 -13760
  384. data/apis/ec2/2015-10-01/examples-1.json +0 -5
  385. data/apis/ec2/2015-10-01/paginators-1.json +0 -138
  386. data/apis/ec2/2015-10-01/resources-1.json +0 -2582
  387. data/apis/ec2/2015-10-01/waiters-2.json +0 -593
  388. data/apis/ec2/2016-04-01/api-2.json +0 -14191
  389. data/apis/ec2/2016-04-01/examples-1.json +0 -3729
  390. data/apis/ec2/2016-04-01/paginators-1.json +0 -138
  391. data/apis/ec2/2016-04-01/resources-1.json +0 -2582
  392. data/apis/ec2/2016-04-01/waiters-2.json +0 -593
  393. data/apis/ec2/2016-09-15/api-2.json +0 -14415
  394. data/apis/ec2/2016-09-15/examples-1.json +0 -3740
  395. data/apis/ec2/2016-09-15/paginators-1.json +0 -138
  396. data/apis/ec2/2016-09-15/resources-1.json +0 -2582
  397. data/apis/ec2/2016-09-15/waiters-2.json +0 -593
  398. data/apis/ec2/2016-11-15/api-2.json +0 -25416
  399. data/apis/ec2/2016-11-15/examples-1.json +0 -5048
  400. data/apis/ec2/2016-11-15/paginators-1.json +0 -450
  401. data/apis/ec2/2016-11-15/resources-1.json +0 -2582
  402. data/apis/ec2/2016-11-15/smoke.json +0 -20
  403. data/apis/ec2/2016-11-15/waiters-2.json +0 -622
  404. data/apis/ecr/2015-09-21/api-2.json +0 -1383
  405. data/apis/ecr/2015-09-21/examples-1.json +0 -215
  406. data/apis/ecr/2015-09-21/paginators-1.json +0 -22
  407. data/apis/ecr/2015-09-21/smoke.json +0 -18
  408. data/apis/ecs/2014-11-13/api-2.json +0 -2903
  409. data/apis/ecs/2014-11-13/examples-1.json +0 -1137
  410. data/apis/ecs/2014-11-13/paginators-1.json +0 -40
  411. data/apis/ecs/2014-11-13/smoke.json +0 -18
  412. data/apis/ecs/2014-11-13/waiters-2.json +0 -93
  413. data/apis/eks/2017-11-01/api-2.json +0 -750
  414. data/apis/eks/2017-11-01/examples-1.json +0 -114
  415. data/apis/eks/2017-11-01/paginators-1.json +0 -16
  416. data/apis/eks/2017-11-01/waiters-2.json +0 -54
  417. data/apis/elasticache/2015-02-02/api-2.json +0 -3152
  418. data/apis/elasticache/2015-02-02/examples-1.json +0 -3149
  419. data/apis/elasticache/2015-02-02/paginators-1.json +0 -88
  420. data/apis/elasticache/2015-02-02/smoke.json +0 -18
  421. data/apis/elasticache/2015-02-02/waiters-2.json +0 -143
  422. data/apis/elasticbeanstalk/2010-12-01/api-2.json +0 -2492
  423. data/apis/elasticbeanstalk/2010-12-01/examples-1.json +0 -1109
  424. data/apis/elasticbeanstalk/2010-12-01/paginators-1.json +0 -25
  425. data/apis/elasticbeanstalk/2010-12-01/smoke.json +0 -18
  426. data/apis/elasticfilesystem/2015-02-01/api-2.json +0 -896
  427. data/apis/elasticfilesystem/2015-02-01/examples-1.json +0 -291
  428. data/apis/elasticfilesystem/2015-02-01/paginators-1.json +0 -4
  429. data/apis/elasticfilesystem/2015-02-01/smoke.json +0 -18
  430. data/apis/elasticloadbalancing/2012-06-01/api-2.json +0 -1642
  431. data/apis/elasticloadbalancing/2012-06-01/examples-1.json +0 -1036
  432. data/apis/elasticloadbalancing/2012-06-01/paginators-1.json +0 -18
  433. data/apis/elasticloadbalancing/2012-06-01/smoke.json +0 -20
  434. data/apis/elasticloadbalancing/2012-06-01/waiters-2.json +0 -54
  435. data/apis/elasticloadbalancingv2/2015-12-01/api-2.json +0 -2299
  436. data/apis/elasticloadbalancingv2/2015-12-01/examples-1.json +0 -1384
  437. data/apis/elasticloadbalancingv2/2015-12-01/paginators-1.json +0 -19
  438. data/apis/elasticloadbalancingv2/2015-12-01/smoke.json +0 -20
  439. data/apis/elasticloadbalancingv2/2015-12-01/waiters-2.json +0 -100
  440. data/apis/elasticmapreduce/2009-03-31/api-2.json +0 -2187
  441. data/apis/elasticmapreduce/2009-03-31/examples-1.json +0 -5
  442. data/apis/elasticmapreduce/2009-03-31/paginators-1.json +0 -42
  443. data/apis/elasticmapreduce/2009-03-31/smoke.json +0 -18
  444. data/apis/elasticmapreduce/2009-03-31/waiters-2.json +0 -86
  445. data/apis/elastictranscoder/2012-09-25/api-2.json +0 -1484
  446. data/apis/elastictranscoder/2012-09-25/examples-1.json +0 -5
  447. data/apis/elastictranscoder/2012-09-25/paginators-1.json +0 -24
  448. data/apis/elastictranscoder/2012-09-25/smoke.json +0 -18
  449. data/apis/elastictranscoder/2012-09-25/waiters-2.json +0 -30
  450. data/apis/email/2010-12-01/api-2.json +0 -3182
  451. data/apis/email/2010-12-01/examples-1.json +0 -1021
  452. data/apis/email/2010-12-01/paginators-1.json +0 -18
  453. data/apis/email/2010-12-01/smoke.json +0 -18
  454. data/apis/email/2010-12-01/waiters-2.json +0 -18
  455. data/apis/entitlement.marketplace/2017-01-11/api-2.json +0 -128
  456. data/apis/entitlement.marketplace/2017-01-11/examples-1.json +0 -5
  457. data/apis/entitlement.marketplace/2017-01-11/paginators-1.json +0 -4
  458. data/apis/es/2015-01-01/api-2.json +0 -1543
  459. data/apis/es/2015-01-01/examples-1.json +0 -5
  460. data/apis/es/2015-01-01/paginators-1.json +0 -29
  461. data/apis/es/2015-01-01/smoke.json +0 -18
  462. data/apis/eventbridge/2015-10-07/api-2.json +0 -1462
  463. data/apis/eventbridge/2015-10-07/examples-1.json +0 -5
  464. data/apis/eventbridge/2015-10-07/paginators-1.json +0 -4
  465. data/apis/eventbridge/2015-10-07/smoke.json +0 -18
  466. data/apis/events/2015-10-07/api-2.json +0 -1462
  467. data/apis/events/2015-10-07/examples-1.json +0 -5
  468. data/apis/events/2015-10-07/paginators-1.json +0 -4
  469. data/apis/events/2015-10-07/smoke.json +0 -18
  470. data/apis/firehose/2015-08-04/api-2.json +0 -1376
  471. data/apis/firehose/2015-08-04/examples-1.json +0 -5
  472. data/apis/firehose/2015-08-04/paginators-1.json +0 -4
  473. data/apis/firehose/2015-08-04/smoke.json +0 -18
  474. data/apis/fms/2018-01-01/api-2.json +0 -692
  475. data/apis/fms/2018-01-01/examples-1.json +0 -5
  476. data/apis/fms/2018-01-01/paginators-1.json +0 -22
  477. data/apis/forecast/2018-06-26/api-2.json +0 -1373
  478. data/apis/forecast/2018-06-26/examples-1.json +0 -5
  479. data/apis/forecast/2018-06-26/paginators-1.json +0 -40
  480. data/apis/forecastquery/2018-06-26/api-2.json +0 -154
  481. data/apis/forecastquery/2018-06-26/examples-1.json +0 -5
  482. data/apis/forecastquery/2018-06-26/paginators-1.json +0 -4
  483. data/apis/fsx/2018-03-01/api-2.json +0 -1050
  484. data/apis/fsx/2018-03-01/examples-1.json +0 -384
  485. data/apis/fsx/2018-03-01/paginators-1.json +0 -14
  486. data/apis/gamelift/2015-10-01/api-2.json +0 -3470
  487. data/apis/gamelift/2015-10-01/examples-1.json +0 -5
  488. data/apis/gamelift/2015-10-01/paginators-1.json +0 -4
  489. data/apis/gamelift/2015-10-01/smoke.json +0 -18
  490. data/apis/glacier/2012-06-01/api-2.json +0 -1906
  491. data/apis/glacier/2012-06-01/examples-1.json +0 -806
  492. data/apis/glacier/2012-06-01/paginators-1.json +0 -28
  493. data/apis/glacier/2012-06-01/resources-1.json +0 -563
  494. data/apis/glacier/2012-06-01/smoke.json +0 -18
  495. data/apis/glacier/2012-06-01/waiters-2.json +0 -39
  496. data/apis/globalaccelerator/2018-08-08/api-2.json +0 -818
  497. data/apis/globalaccelerator/2018-08-08/examples-1.json +0 -5
  498. data/apis/globalaccelerator/2018-08-08/paginators-1.json +0 -4
  499. data/apis/glue/2017-03-31/api-2.json +0 -6294
  500. data/apis/glue/2017-03-31/examples-1.json +0 -5
  501. data/apis/glue/2017-03-31/paginators-1.json +0 -120
  502. data/apis/glue/2017-03-31/smoke.json +0 -11
  503. data/apis/greengrass/2017-06-07/api-2.json +0 -5106
  504. data/apis/groundstation/2019-05-23/api-2.json +0 -2059
  505. data/apis/groundstation/2019-05-23/examples-1.json +0 -4
  506. data/apis/groundstation/2019-05-23/paginators-1.json +0 -40
  507. data/apis/guardduty/2017-11-28/api-2.json +0 -3206
  508. data/apis/guardduty/2017-11-28/examples-1.json +0 -5
  509. data/apis/guardduty/2017-11-28/paginators-1.json +0 -46
  510. data/apis/health/2016-08-04/api-2.json +0 -554
  511. data/apis/health/2016-08-04/examples-1.json +0 -5
  512. data/apis/health/2016-08-04/paginators-1.json +0 -31
  513. data/apis/health/2016-08-04/smoke.json +0 -11
  514. data/apis/iam/2010-05-08/api-2.json +0 -5778
  515. data/apis/iam/2010-05-08/examples-1.json +0 -1572
  516. data/apis/iam/2010-05-08/paginators-1.json +0 -198
  517. data/apis/iam/2010-05-08/resources-1.json +0 -1740
  518. data/apis/iam/2010-05-08/smoke.json +0 -18
  519. data/apis/iam/2010-05-08/waiters-2.json +0 -73
  520. data/apis/importexport/2010-06-01/api-2.json +0 -667
  521. data/apis/importexport/2010-06-01/paginators-1.json +0 -11
  522. data/apis/inspector/2016-02-16/api-2.json +0 -2387
  523. data/apis/inspector/2016-02-16/examples-1.json +0 -1148
  524. data/apis/inspector/2016-02-16/paginators-1.json +0 -54
  525. data/apis/inspector/2016-02-16/smoke.json +0 -18
  526. data/apis/iot-data/2015-05-28/api-2.json +0 -264
  527. data/apis/iot-jobs-data/2017-09-29/api-2.json +0 -348
  528. data/apis/iot-jobs-data/2017-09-29/examples-1.json +0 -5
  529. data/apis/iot-jobs-data/2017-09-29/paginators-1.json +0 -4
  530. data/apis/iot/2015-05-28/api-2.json +0 -9676
  531. data/apis/iot/2015-05-28/examples-1.json +0 -5
  532. data/apis/iot/2015-05-28/paginators-1.json +0 -4
  533. data/apis/iot/2015-05-28/smoke.json +0 -18
  534. data/apis/iot1click-devices/2018-05-14/api-2.json +0 -902
  535. data/apis/iot1click-projects/2018-05-14/api-2.json +0 -883
  536. data/apis/iot1click-projects/2018-05-14/examples-1.json +0 -5
  537. data/apis/iot1click-projects/2018-05-14/paginators-1.json +0 -16
  538. data/apis/iotanalytics/2017-11-27/api-2.json +0 -2222
  539. data/apis/iotanalytics/2017-11-27/examples-1.json +0 -5
  540. data/apis/iotanalytics/2017-11-27/paginators-1.json +0 -29
  541. data/apis/iotevents-data/2018-10-23/api-2.json +0 -454
  542. data/apis/iotevents-data/2018-10-23/examples-1.json +0 -5
  543. data/apis/iotevents-data/2018-10-23/paginators-1.json +0 -4
  544. data/apis/iotevents/2018-07-27/api-2.json +0 -1133
  545. data/apis/iotevents/2018-07-27/examples-1.json +0 -5
  546. data/apis/iotevents/2018-07-27/paginators-1.json +0 -4
  547. data/apis/iotthingsgraph/2018-09-06/api-2.json +0 -1581
  548. data/apis/iotthingsgraph/2018-09-06/examples-1.json +0 -5
  549. data/apis/iotthingsgraph/2018-09-06/paginators-1.json +0 -64
  550. data/apis/kafka/2018-11-14/api-2.json +0 -1698
  551. data/apis/kafka/2018-11-14/paginators-1.json +0 -34
  552. data/apis/kinesis-video-archived-media/2017-09-30/api-2.json +0 -417
  553. data/apis/kinesis-video-archived-media/2017-09-30/examples-1.json +0 -5
  554. data/apis/kinesis-video-archived-media/2017-09-30/paginators-1.json +0 -10
  555. data/apis/kinesis-video-media/2017-09-30/api-2.json +0 -160
  556. data/apis/kinesis-video-media/2017-09-30/examples-1.json +0 -5
  557. data/apis/kinesis-video-media/2017-09-30/paginators-1.json +0 -4
  558. data/apis/kinesis/2013-12-02/api-2.json +0 -1409
  559. data/apis/kinesis/2013-12-02/examples-1.json +0 -5
  560. data/apis/kinesis/2013-12-02/paginators-1.json +0 -23
  561. data/apis/kinesis/2013-12-02/smoke.json +0 -18
  562. data/apis/kinesis/2013-12-02/waiters-2.json +0 -30
  563. data/apis/kinesisanalytics/2015-08-14/api-2.json +0 -1510
  564. data/apis/kinesisanalytics/2015-08-14/examples-1.json +0 -5
  565. data/apis/kinesisanalytics/2015-08-14/paginators-1.json +0 -4
  566. data/apis/kinesisanalyticsv2/2018-05-23/api-2.json +0 -2121
  567. data/apis/kinesisanalyticsv2/2018-05-23/examples-1.json +0 -5
  568. data/apis/kinesisanalyticsv2/2018-05-23/paginators-1.json +0 -4
  569. data/apis/kinesisvideo/2017-09-30/api-2.json +0 -553
  570. data/apis/kinesisvideo/2017-09-30/examples-1.json +0 -5
  571. data/apis/kinesisvideo/2017-09-30/paginators-1.json +0 -10
  572. data/apis/kms/2014-11-01/api-2.json +0 -1834
  573. data/apis/kms/2014-11-01/examples-1.json +0 -906
  574. data/apis/kms/2014-11-01/paginators-1.json +0 -32
  575. data/apis/kms/2014-11-01/smoke.json +0 -19
  576. data/apis/lakeformation/2017-03-31/api-2.json +0 -708
  577. data/apis/lakeformation/2017-03-31/examples-1.json +0 -5
  578. data/apis/lakeformation/2017-03-31/paginators-1.json +0 -19
  579. data/apis/lambda/2014-11-11/api-2.json +0 -668
  580. data/apis/lambda/2014-11-11/paginators-1.json +0 -16
  581. data/apis/lambda/2015-03-31/api-2.json +0 -2353
  582. data/apis/lambda/2015-03-31/examples-1.json +0 -614
  583. data/apis/lambda/2015-03-31/paginators-1.json +0 -40
  584. data/apis/lambda/2015-03-31/smoke.json +0 -18
  585. data/apis/lambda/2015-03-31/waiters-2.json +0 -22
  586. data/apis/lex-models/2017-04-19/api-2.json +0 -2261
  587. data/apis/lex-models/2017-04-19/examples-1.json +0 -758
  588. data/apis/lex-models/2017-04-19/paginators-1.json +0 -54
  589. data/apis/license-manager/2018-08-01/api-2.json +0 -780
  590. data/apis/license-manager/2018-08-01/examples-1.json +0 -5
  591. data/apis/license-manager/2018-08-01/paginators-1.json +0 -4
  592. data/apis/lightsail/2016-11-28/api-2.json +0 -4781
  593. data/apis/lightsail/2016-11-28/examples-1.json +0 -5
  594. data/apis/lightsail/2016-11-28/paginators-1.json +0 -4
  595. data/apis/lightsail/2016-11-28/smoke.json +0 -11
  596. data/apis/logs/2014-03-28/api-2.json +0 -1701
  597. data/apis/logs/2014-03-28/examples-1.json +0 -5
  598. data/apis/logs/2014-03-28/paginators-1.json +0 -49
  599. data/apis/logs/2014-03-28/smoke.json +0 -19
  600. data/apis/machinelearning/2014-12-12/api-2.json +0 -1978
  601. data/apis/machinelearning/2014-12-12/examples-1.json +0 -5
  602. data/apis/machinelearning/2014-12-12/paginators-1.json +0 -28
  603. data/apis/machinelearning/2014-12-12/waiters-2.json +0 -81
  604. data/apis/macie/2017-12-19/api-2.json +0 -365
  605. data/apis/macie/2017-12-19/examples-1.json +0 -5
  606. data/apis/macie/2017-12-19/paginators-1.json +0 -14
  607. data/apis/managedblockchain/2018-09-24/api-2.json +0 -1363
  608. data/apis/managedblockchain/2018-09-24/examples-1.json +0 -5
  609. data/apis/managedblockchain/2018-09-24/paginators-1.json +0 -34
  610. data/apis/marketplacecommerceanalytics/2015-07-01/api-2.json +0 -174
  611. data/apis/marketplacecommerceanalytics/2015-07-01/examples-1.json +0 -5
  612. data/apis/marketplacecommerceanalytics/2015-07-01/paginators-1.json +0 -4
  613. data/apis/marketplacecommerceanalytics/2015-07-01/smoke.json +0 -17
  614. data/apis/mediaconnect/2018-11-14/api-2.json +0 -1901
  615. data/apis/mediaconnect/2018-11-14/paginators-1.json +0 -16
  616. data/apis/mediaconvert/2017-08-29/api-2.json +0 -8292
  617. data/apis/mediaconvert/2017-08-29/paginators-1.json +0 -34
  618. data/apis/medialive/2017-10-14/api-2.json +0 -9023
  619. data/apis/medialive/2017-10-14/paginators-1.json +0 -40
  620. data/apis/medialive/2017-10-14/waiters-2.json +0 -111
  621. data/apis/mediapackage-vod/2018-11-07/api-2.json +0 -1498
  622. data/apis/mediapackage-vod/2018-11-07/paginators-1.json +0 -22
  623. data/apis/mediapackage/2017-10-12/api-2.json +0 -2039
  624. data/apis/mediapackage/2017-10-12/paginators-1.json +0 -16
  625. data/apis/mediastore-data/2017-09-01/api-2.json +0 -406
  626. data/apis/mediastore-data/2017-09-01/examples-1.json +0 -5
  627. data/apis/mediastore-data/2017-09-01/paginators-1.json +0 -9
  628. data/apis/mediastore/2017-09-01/api-2.json +0 -735
  629. data/apis/mediastore/2017-09-01/examples-1.json +0 -5
  630. data/apis/mediastore/2017-09-01/paginators-1.json +0 -9
  631. data/apis/mediatailor/2018-04-23/api-2.json +0 -524
  632. data/apis/mediatailor/2018-04-23/paginators-1.json +0 -3
  633. data/apis/meteringmarketplace/2016-01-14/api-2.json +0 -344
  634. data/apis/meteringmarketplace/2016-01-14/examples-1.json +0 -5
  635. data/apis/meteringmarketplace/2016-01-14/paginators-1.json +0 -4
  636. data/apis/mobile/2017-07-01/api-2.json +0 -551
  637. data/apis/mobile/2017-07-01/examples-1.json +0 -5
  638. data/apis/mobile/2017-07-01/paginators-1.json +0 -14
  639. data/apis/monitoring/2010-08-01/api-2.json +0 -1525
  640. data/apis/monitoring/2010-08-01/examples-1.json +0 -5
  641. data/apis/monitoring/2010-08-01/paginators-1.json +0 -38
  642. data/apis/monitoring/2010-08-01/resources-1.json +0 -346
  643. data/apis/monitoring/2010-08-01/smoke.json +0 -22
  644. data/apis/monitoring/2010-08-01/waiters-2.json +0 -18
  645. data/apis/mq/2017-11-27/api-2.json +0 -2514
  646. data/apis/mq/2017-11-27/paginators-1.json +0 -3
  647. data/apis/mturk-requester/2017-01-17/api-2.json +0 -1696
  648. data/apis/mturk-requester/2017-01-17/examples-1.json +0 -5
  649. data/apis/mturk-requester/2017-01-17/paginators-1.json +0 -54
  650. data/apis/neptune/2014-10-31/api-2.json +0 -3515
  651. data/apis/neptune/2014-10-31/examples-1.json +0 -5
  652. data/apis/neptune/2014-10-31/paginators-1.json +0 -61
  653. data/apis/neptune/2014-10-31/smoke.json +0 -18
  654. data/apis/neptune/2014-10-31/waiters-2.json +0 -90
  655. data/apis/opsworks/2013-02-18/api-2.json +0 -2885
  656. data/apis/opsworks/2013-02-18/examples-1.json +0 -5
  657. data/apis/opsworks/2013-02-18/paginators-1.json +0 -55
  658. data/apis/opsworks/2013-02-18/resources-1.json +0 -173
  659. data/apis/opsworks/2013-02-18/smoke.json +0 -18
  660. data/apis/opsworks/2013-02-18/waiters-2.json +0 -289
  661. data/apis/opsworkscm/2016-11-01/api-2.json +0 -766
  662. data/apis/opsworkscm/2016-11-01/examples-1.json +0 -5
  663. data/apis/opsworkscm/2016-11-01/paginators-1.json +0 -4
  664. data/apis/opsworkscm/2016-11-01/waiters-2.json +0 -25
  665. data/apis/organizations/2016-11-28/api-2.json +0 -2317
  666. data/apis/organizations/2016-11-28/examples-1.json +0 -1409
  667. data/apis/organizations/2016-11-28/paginators-1.json +0 -74
  668. data/apis/personalize-events/2018-03-22/api-2.json +0 -91
  669. data/apis/personalize-events/2018-03-22/examples-1.json +0 -5
  670. data/apis/personalize-events/2018-03-22/paginators-1.json +0 -4
  671. data/apis/personalize-runtime/2018-05-22/api-2.json +0 -129
  672. data/apis/personalize-runtime/2018-05-22/examples-1.json +0 -5
  673. data/apis/personalize-runtime/2018-05-22/paginators-1.json +0 -4
  674. data/apis/personalize/2018-05-22/api-2.json +0 -1703
  675. data/apis/personalize/2018-05-22/examples-1.json +0 -5
  676. data/apis/personalize/2018-05-22/paginators-1.json +0 -58
  677. data/apis/pi/2018-02-27/api-2.json +0 -253
  678. data/apis/pi/2018-02-27/examples-1.json +0 -5
  679. data/apis/pi/2018-02-27/paginators-1.json +0 -4
  680. data/apis/pinpoint-email/2018-07-26/api-2.json +0 -2080
  681. data/apis/pinpoint-email/2018-07-26/examples-1.json +0 -5
  682. data/apis/pinpoint-email/2018-07-26/paginators-1.json +0 -34
  683. data/apis/pinpoint/2016-12-01/api-2.json +0 -8526
  684. data/apis/pinpoint/2016-12-01/examples-1.json +0 -5
  685. data/apis/polly/2016-06-10/api-2.json +0 -830
  686. data/apis/polly/2016-06-10/examples-1.json +0 -171
  687. data/apis/polly/2016-06-10/paginators-1.json +0 -9
  688. data/apis/polly/2016-06-10/smoke.json +0 -11
  689. data/apis/pricing/2017-10-15/api-2.json +0 -227
  690. data/apis/pricing/2017-10-15/examples-1.json +0 -103
  691. data/apis/pricing/2017-10-15/paginators-1.json +0 -19
  692. data/apis/qldb-session/2019-07-11/api-2.json +0 -259
  693. data/apis/qldb-session/2019-07-11/examples-1.json +0 -5
  694. data/apis/qldb-session/2019-07-11/paginators-1.json +0 -4
  695. data/apis/qldb/2019-01-02/api-2.json +0 -776
  696. data/apis/qldb/2019-01-02/examples-1.json +0 -5
  697. data/apis/qldb/2019-01-02/paginators-1.json +0 -19
  698. data/apis/quicksight/2018-04-01/api-2.json +0 -1223
  699. data/apis/quicksight/2018-04-01/examples-1.json +0 -5
  700. data/apis/quicksight/2018-04-01/paginators-1.json +0 -4
  701. data/apis/ram/2018-01-04/api-2.json +0 -1021
  702. data/apis/ram/2018-01-04/examples-1.json +0 -5
  703. data/apis/ram/2018-01-04/paginators-1.json +0 -39
  704. data/apis/rds-data/2018-08-01/api-2.json +0 -540
  705. data/apis/rds-data/2018-08-01/examples-1.json +0 -5
  706. data/apis/rds-data/2018-08-01/paginators-1.json +0 -4
  707. data/apis/rds/2013-01-10/api-2.json +0 -2903
  708. data/apis/rds/2013-01-10/examples-1.json +0 -5
  709. data/apis/rds/2013-01-10/paginators-1.json +0 -97
  710. data/apis/rds/2013-01-10/smoke.json +0 -18
  711. data/apis/rds/2013-02-12/api-2.json +0 -3059
  712. data/apis/rds/2013-02-12/examples-1.json +0 -5
  713. data/apis/rds/2013-02-12/paginators-1.json +0 -110
  714. data/apis/rds/2013-02-12/smoke.json +0 -18
  715. data/apis/rds/2013-09-09/api-2.json +0 -3160
  716. data/apis/rds/2013-09-09/examples-1.json +0 -5
  717. data/apis/rds/2013-09-09/paginators-1.json +0 -110
  718. data/apis/rds/2013-09-09/smoke.json +0 -18
  719. data/apis/rds/2013-09-09/waiters-2.json +0 -97
  720. data/apis/rds/2014-09-01/api-2.json +0 -3273
  721. data/apis/rds/2014-09-01/examples-1.json +0 -5
  722. data/apis/rds/2014-09-01/paginators-1.json +0 -4
  723. data/apis/rds/2014-09-01/smoke.json +0 -18
  724. data/apis/rds/2014-10-31/api-2.json +0 -6579
  725. data/apis/rds/2014-10-31/examples-1.json +0 -1951
  726. data/apis/rds/2014-10-31/paginators-1.json +0 -128
  727. data/apis/rds/2014-10-31/resources-1.json +0 -3272
  728. data/apis/rds/2014-10-31/smoke.json +0 -18
  729. data/apis/rds/2014-10-31/waiters-2.json +0 -175
  730. data/apis/rds/2015-11-12/api-2.json +0 -5509
  731. data/apis/rds/2015-11-12/examples-1.json +0 -1951
  732. data/apis/rds/2015-11-12/paginators-1.json +0 -110
  733. data/apis/rds/2015-11-12/resources-1.json +0 -3272
  734. data/apis/rds/2015-11-12/waiters-2.json +0 -175
  735. data/apis/redshift/2012-12-01/api-2.json +0 -4995
  736. data/apis/redshift/2012-12-01/examples-1.json +0 -5
  737. data/apis/redshift/2012-12-01/paginators-1.json +0 -100
  738. data/apis/redshift/2012-12-01/smoke.json +0 -18
  739. data/apis/redshift/2012-12-01/waiters-2.json +0 -97
  740. data/apis/rekognition/2016-06-27/api-2.json +0 -2142
  741. data/apis/rekognition/2016-06-27/examples-1.json +0 -651
  742. data/apis/rekognition/2016-06-27/paginators-1.json +0 -51
  743. data/apis/rekognition/2016-06-27/smoke.json +0 -11
  744. data/apis/resource-groups/2017-11-27/api-2.json +0 -743
  745. data/apis/resource-groups/2017-11-27/examples-1.json +0 -5
  746. data/apis/resource-groups/2017-11-27/paginators-1.json +0 -19
  747. data/apis/resourcegroupstaggingapi/2017-01-26/api-2.json +0 -329
  748. data/apis/resourcegroupstaggingapi/2017-01-26/examples-1.json +0 -5
  749. data/apis/resourcegroupstaggingapi/2017-01-26/paginators-1.json +0 -20
  750. data/apis/robomaker/2018-06-29/api-2.json +0 -2138
  751. data/apis/robomaker/2018-06-29/examples-1.json +0 -5
  752. data/apis/robomaker/2018-06-29/paginators-1.json +0 -34
  753. data/apis/route53/2013-04-01/api-2.json +0 -3780
  754. data/apis/route53/2013-04-01/examples-1.json +0 -762
  755. data/apis/route53/2013-04-01/paginators-1.json +0 -33
  756. data/apis/route53/2013-04-01/smoke.json +0 -18
  757. data/apis/route53/2013-04-01/waiters-2.json +0 -18
  758. data/apis/route53domains/2014-05-15/api-2.json +0 -1382
  759. data/apis/route53domains/2014-05-15/examples-1.json +0 -5
  760. data/apis/route53domains/2014-05-15/paginators-1.json +0 -16
  761. data/apis/route53resolver/2018-04-01/api-2.json +0 -1199
  762. data/apis/route53resolver/2018-04-01/examples-1.json +0 -5
  763. data/apis/route53resolver/2018-04-01/paginators-1.json +0 -24
  764. data/apis/route53resolver/2018-04-01/smoke.json +0 -18
  765. data/apis/runtime.lex/2016-11-28/api-2.json +0 -680
  766. data/apis/runtime.lex/2016-11-28/examples-1.json +0 -5
  767. data/apis/runtime.lex/2016-11-28/paginators-1.json +0 -4
  768. data/apis/runtime.sagemaker/2017-05-13/api-2.json +0 -152
  769. data/apis/runtime.sagemaker/2017-05-13/examples-1.json +0 -5
  770. data/apis/runtime.sagemaker/2017-05-13/paginators-1.json +0 -4
  771. data/apis/s3/2006-03-01/api-2.json +0 -6576
  772. data/apis/s3/2006-03-01/examples-1.json +0 -1876
  773. data/apis/s3/2006-03-01/paginators-1.json +0 -66
  774. data/apis/s3/2006-03-01/resources-1.json +0 -1249
  775. data/apis/s3/2006-03-01/smoke.json +0 -11
  776. data/apis/s3/2006-03-01/waiters-2.json +0 -73
  777. data/apis/s3control/2018-08-20/api-2.json +0 -1044
  778. data/apis/s3control/2018-08-20/examples-1.json +0 -5
  779. data/apis/s3control/2018-08-20/paginators-1.json +0 -9
  780. data/apis/sagemaker/2017-07-24/api-2.json +0 -5257
  781. data/apis/sagemaker/2017-07-24/examples-1.json +0 -5
  782. data/apis/sagemaker/2017-07-24/paginators-1.json +0 -84
  783. data/apis/sagemaker/2017-07-24/waiters-2.json +0 -163
  784. data/apis/sdb/2009-04-15/api-2.json +0 -955
  785. data/apis/sdb/2009-04-15/paginators-1.json +0 -15
  786. data/apis/secretsmanager/2017-10-17/api-2.json +0 -982
  787. data/apis/secretsmanager/2017-10-17/examples-1.json +0 -571
  788. data/apis/secretsmanager/2017-10-17/paginators-1.json +0 -14
  789. data/apis/secretsmanager/2017-10-17/smoke.json +0 -18
  790. data/apis/securityhub/2018-10-26/api-2.json +0 -2105
  791. data/apis/securityhub/2018-10-26/examples-1.json +0 -5
  792. data/apis/securityhub/2018-10-26/paginators-1.json +0 -29
  793. data/apis/serverlessrepo/2017-09-08/api-2.json +0 -1774
  794. data/apis/serverlessrepo/2017-09-08/paginators-1.json +0 -19
  795. data/apis/service-quotas/2019-06-24/api-2.json +0 -867
  796. data/apis/service-quotas/2019-06-24/examples-1.json +0 -5
  797. data/apis/service-quotas/2019-06-24/paginators-1.json +0 -40
  798. data/apis/servicecatalog/2015-12-10/api-2.json +0 -3977
  799. data/apis/servicecatalog/2015-12-10/examples-1.json +0 -5
  800. data/apis/servicecatalog/2015-12-10/paginators-1.json +0 -84
  801. data/apis/servicecatalog/2015-12-10/smoke.json +0 -11
  802. data/apis/servicediscovery/2017-03-14/api-2.json +0 -1156
  803. data/apis/servicediscovery/2017-03-14/examples-1.json +0 -5
  804. data/apis/servicediscovery/2017-03-14/paginators-1.json +0 -29
  805. data/apis/shield/2016-06-02/api-2.json +0 -893
  806. data/apis/shield/2016-06-02/examples-1.json +0 -5
  807. data/apis/shield/2016-06-02/paginators-1.json +0 -4
  808. data/apis/shield/2016-06-02/smoke.json +0 -11
  809. data/apis/signer/2017-08-25/api-2.json +0 -670
  810. data/apis/signer/2017-08-25/examples-1.json +0 -5
  811. data/apis/signer/2017-08-25/paginators-1.json +0 -19
  812. data/apis/signer/2017-08-25/waiters-2.json +0 -29
  813. data/apis/sms-voice/2018-09-05/api-2.json +0 -630
  814. data/apis/sms/2016-10-24/api-2.json +0 -1366
  815. data/apis/sms/2016-10-24/examples-1.json +0 -5
  816. data/apis/sms/2016-10-24/paginators-1.json +0 -28
  817. data/apis/sms/2016-10-24/smoke.json +0 -18
  818. data/apis/snowball/2016-06-30/api-2.json +0 -929
  819. data/apis/snowball/2016-06-30/examples-1.json +0 -442
  820. data/apis/snowball/2016-06-30/paginators-1.json +0 -16
  821. data/apis/snowball/2016-06-30/smoke.json +0 -11
  822. data/apis/sns/2010-03-31/api-2.json +0 -1468
  823. data/apis/sns/2010-03-31/examples-1.json +0 -5
  824. data/apis/sns/2010-03-31/paginators-1.json +0 -29
  825. data/apis/sns/2010-03-31/resources-1.json +0 -327
  826. data/apis/sns/2010-03-31/smoke.json +0 -19
  827. data/apis/sqs/2012-11-05/api-2.json +0 -1128
  828. data/apis/sqs/2012-11-05/examples-1.json +0 -5
  829. data/apis/sqs/2012-11-05/paginators-1.json +0 -7
  830. data/apis/sqs/2012-11-05/resources-1.json +0 -232
  831. data/apis/sqs/2012-11-05/smoke.json +0 -18
  832. data/apis/ssm/2014-11-06/api-2.json +0 -8914
  833. data/apis/ssm/2014-11-06/examples-1.json +0 -5
  834. data/apis/ssm/2014-11-06/paginators-1.json +0 -55
  835. data/apis/ssm/2014-11-06/smoke.json +0 -18
  836. data/apis/states/2016-11-23/api-2.json +0 -1409
  837. data/apis/states/2016-11-23/examples-1.json +0 -5
  838. data/apis/states/2016-11-23/paginators-1.json +0 -28
  839. data/apis/states/2016-11-23/smoke.json +0 -11
  840. data/apis/storagegateway/2013-06-30/api-2.json +0 -3166
  841. data/apis/storagegateway/2013-06-30/examples-1.json +0 -1381
  842. data/apis/storagegateway/2013-06-30/paginators-1.json +0 -76
  843. data/apis/streams.dynamodb/2012-08-10/api-2.json +0 -406
  844. data/apis/streams.dynamodb/2012-08-10/examples-1.json +0 -212
  845. data/apis/streams.dynamodb/2012-08-10/paginators-1.json +0 -4
  846. data/apis/sts/2011-06-15/api-2.json +0 -562
  847. data/apis/sts/2011-06-15/examples-1.json +0 -207
  848. data/apis/sts/2011-06-15/paginators-1.json +0 -4
  849. data/apis/sts/2011-06-15/smoke.json +0 -19
  850. data/apis/support/2013-04-15/api-2.json +0 -772
  851. data/apis/support/2013-04-15/examples-1.json +0 -5
  852. data/apis/support/2013-04-15/paginators-1.json +0 -25
  853. data/apis/swf/2012-01-25/api-2.json +0 -2792
  854. data/apis/swf/2012-01-25/examples-1.json +0 -5
  855. data/apis/swf/2012-01-25/paginators-1.json +0 -46
  856. data/apis/textract/2018-06-27/api-2.json +0 -572
  857. data/apis/textract/2018-06-27/examples-1.json +0 -5
  858. data/apis/textract/2018-06-27/paginators-1.json +0 -4
  859. data/apis/transcribe/2017-10-26/api-2.json +0 -516
  860. data/apis/transcribe/2017-10-26/examples-1.json +0 -5
  861. data/apis/transcribe/2017-10-26/paginators-1.json +0 -14
  862. data/apis/transfer/2018-11-05/api-2.json +0 -857
  863. data/apis/transfer/2018-11-05/examples-1.json +0 -5
  864. data/apis/transfer/2018-11-05/paginators-1.json +0 -19
  865. data/apis/translate/2017-07-01/api-2.json +0 -408
  866. data/apis/translate/2017-07-01/examples-1.json +0 -5
  867. data/apis/translate/2017-07-01/paginators-1.json +0 -4
  868. data/apis/waf-regional/2016-11-28/api-2.json +0 -3992
  869. data/apis/waf-regional/2016-11-28/examples-1.json +0 -1017
  870. data/apis/waf-regional/2016-11-28/paginators-1.json +0 -4
  871. data/apis/waf-regional/2016-11-28/smoke.json +0 -21
  872. data/apis/waf/2015-08-24/api-2.json +0 -3857
  873. data/apis/waf/2015-08-24/examples-1.json +0 -1017
  874. data/apis/waf/2015-08-24/paginators-1.json +0 -4
  875. data/apis/waf/2015-08-24/smoke.json +0 -21
  876. data/apis/workdocs/2016-05-01/api-2.json +0 -2899
  877. data/apis/workdocs/2016-05-01/examples-1.json +0 -5
  878. data/apis/workdocs/2016-05-01/paginators-1.json +0 -25
  879. data/apis/worklink/2018-09-25/api-2.json +0 -1266
  880. data/apis/worklink/2018-09-25/examples-1.json +0 -5
  881. data/apis/worklink/2018-09-25/paginators-1.json +0 -29
  882. data/apis/workmail/2017-10-01/api-2.json +0 -1560
  883. data/apis/workmail/2017-10-01/examples-1.json +0 -5
  884. data/apis/workmail/2017-10-01/paginators-1.json +0 -44
  885. data/apis/workmailmessageflow/2019-05-01/api-2.json +0 -67
  886. data/apis/workmailmessageflow/2019-05-01/examples-1.json +0 -5
  887. data/apis/workmailmessageflow/2019-05-01/paginators-1.json +0 -4
  888. data/apis/workspaces/2015-04-08/api-2.json +0 -1764
  889. data/apis/workspaces/2015-04-08/examples-1.json +0 -5
  890. data/apis/workspaces/2015-04-08/paginators-1.json +0 -20
  891. data/apis/workspaces/2015-04-08/smoke.json +0 -18
  892. data/apis/xray/2016-04-12/api-2.json +0 -1352
  893. data/apis/xray/2016-04-12/examples-1.json +0 -5
  894. data/apis/xray/2016-04-12/paginators-1.json +0 -59
  895. data/bin/aws.rb +0 -180
  896. data/endpoints.json +0 -5177
  897. data/lib/aws-sdk-core/acm.rb +0 -7
  898. data/lib/aws-sdk-core/acmpca.rb +0 -7
  899. data/lib/aws-sdk-core/alexaforbusiness.rb +0 -6
  900. data/lib/aws-sdk-core/amplify.rb +0 -6
  901. data/lib/aws-sdk-core/api/builder.rb +0 -129
  902. data/lib/aws-sdk-core/api/customizations.rb +0 -299
  903. data/lib/aws-sdk-core/api/docs/builder.rb +0 -223
  904. data/lib/aws-sdk-core/api/docs/client_type_documenter.rb +0 -118
  905. data/lib/aws-sdk-core/api/docs/crosslink.rb +0 -43
  906. data/lib/aws-sdk-core/api/docs/docstring_provider.rb +0 -75
  907. data/lib/aws-sdk-core/api/docs/operation_documenter.rb +0 -151
  908. data/lib/aws-sdk-core/api/docs/param_formatter.rb +0 -163
  909. data/lib/aws-sdk-core/api/docs/request_syntax_example.rb +0 -22
  910. data/lib/aws-sdk-core/api/docs/response_structure_example.rb +0 -91
  911. data/lib/aws-sdk-core/api/docs/shared_example.rb +0 -100
  912. data/lib/aws-sdk-core/api/docs/utils.rb +0 -133
  913. data/lib/aws-sdk-core/api/shape_map.rb +0 -146
  914. data/lib/aws-sdk-core/apigateway.rb +0 -6
  915. data/lib/aws-sdk-core/apigatewaymanagementapi.rb +0 -5
  916. data/lib/aws-sdk-core/apigatewayv2.rb +0 -5
  917. data/lib/aws-sdk-core/applicationautoscaling.rb +0 -6
  918. data/lib/aws-sdk-core/applicationdiscoveryservice.rb +0 -6
  919. data/lib/aws-sdk-core/applicationinsights.rb +0 -6
  920. data/lib/aws-sdk-core/appmesh.rb +0 -6
  921. data/lib/aws-sdk-core/appstream.rb +0 -7
  922. data/lib/aws-sdk-core/appsync.rb +0 -6
  923. data/lib/aws-sdk-core/athena.rb +0 -6
  924. data/lib/aws-sdk-core/autoscaling.rb +0 -8
  925. data/lib/aws-sdk-core/autoscalingplans.rb +0 -6
  926. data/lib/aws-sdk-core/backup.rb +0 -6
  927. data/lib/aws-sdk-core/batch.rb +0 -6
  928. data/lib/aws-sdk-core/budgets.rb +0 -6
  929. data/lib/aws-sdk-core/checksums.rb +0 -51
  930. data/lib/aws-sdk-core/chime.rb +0 -6
  931. data/lib/aws-sdk-core/client.rb +0 -62
  932. data/lib/aws-sdk-core/client_waiters.rb +0 -120
  933. data/lib/aws-sdk-core/cloud9.rb +0 -6
  934. data/lib/aws-sdk-core/clouddirectory.rb +0 -6
  935. data/lib/aws-sdk-core/cloudformation.rb +0 -8
  936. data/lib/aws-sdk-core/cloudfront.rb +0 -17
  937. data/lib/aws-sdk-core/cloudfront/cookie_signer.rb +0 -44
  938. data/lib/aws-sdk-core/cloudfront/signer.rb +0 -141
  939. data/lib/aws-sdk-core/cloudfront/url_signer.rb +0 -48
  940. data/lib/aws-sdk-core/cloudhsm.rb +0 -6
  941. data/lib/aws-sdk-core/cloudhsmv2.rb +0 -6
  942. data/lib/aws-sdk-core/cloudsearch.rb +0 -5
  943. data/lib/aws-sdk-core/cloudsearchdomain.rb +0 -5
  944. data/lib/aws-sdk-core/cloudtrail.rb +0 -6
  945. data/lib/aws-sdk-core/cloudwatch.rb +0 -8
  946. data/lib/aws-sdk-core/cloudwatchevents.rb +0 -6
  947. data/lib/aws-sdk-core/cloudwatchlogs.rb +0 -6
  948. data/lib/aws-sdk-core/codebuild.rb +0 -6
  949. data/lib/aws-sdk-core/codecommit.rb +0 -6
  950. data/lib/aws-sdk-core/codedeploy.rb +0 -7
  951. data/lib/aws-sdk-core/codepipeline.rb +0 -6
  952. data/lib/aws-sdk-core/codestar.rb +0 -6
  953. data/lib/aws-sdk-core/cognitoidentity.rb +0 -6
  954. data/lib/aws-sdk-core/cognitoidentityprovider.rb +0 -6
  955. data/lib/aws-sdk-core/cognitosync.rb +0 -4
  956. data/lib/aws-sdk-core/comprehend.rb +0 -6
  957. data/lib/aws-sdk-core/comprehendmedical.rb +0 -6
  958. data/lib/aws-sdk-core/configservice.rb +0 -6
  959. data/lib/aws-sdk-core/connect.rb +0 -6
  960. data/lib/aws-sdk-core/costandusagereportservice.rb +0 -6
  961. data/lib/aws-sdk-core/costexplorer.rb +0 -6
  962. data/lib/aws-sdk-core/databasemigrationservice.rb +0 -7
  963. data/lib/aws-sdk-core/datapipeline.rb +0 -5
  964. data/lib/aws-sdk-core/datasync.rb +0 -6
  965. data/lib/aws-sdk-core/dax.rb +0 -6
  966. data/lib/aws-sdk-core/devicefarm.rb +0 -6
  967. data/lib/aws-sdk-core/directconnect.rb +0 -6
  968. data/lib/aws-sdk-core/directoryservice.rb +0 -6
  969. data/lib/aws-sdk-core/dlm.rb +0 -6
  970. data/lib/aws-sdk-core/docdb.rb +0 -7
  971. data/lib/aws-sdk-core/dynamodb.rb +0 -40
  972. data/lib/aws-sdk-core/dynamodb/attribute_value.rb +0 -110
  973. data/lib/aws-sdk-core/dynamodbstreams.rb +0 -6
  974. data/lib/aws-sdk-core/ec2.rb +0 -8
  975. data/lib/aws-sdk-core/ec2instanceconnect.rb +0 -6
  976. data/lib/aws-sdk-core/ecr.rb +0 -6
  977. data/lib/aws-sdk-core/ecs.rb +0 -7
  978. data/lib/aws-sdk-core/efs.rb +0 -6
  979. data/lib/aws-sdk-core/eks.rb +0 -7
  980. data/lib/aws-sdk-core/elasticache.rb +0 -7
  981. data/lib/aws-sdk-core/elasticbeanstalk.rb +0 -6
  982. data/lib/aws-sdk-core/elasticloadbalancing.rb +0 -7
  983. data/lib/aws-sdk-core/elasticloadbalancingv2.rb +0 -7
  984. data/lib/aws-sdk-core/elasticsearchservice.rb +0 -6
  985. data/lib/aws-sdk-core/elastictranscoder.rb +0 -7
  986. data/lib/aws-sdk-core/empty_structure.rb +0 -3
  987. data/lib/aws-sdk-core/emr.rb +0 -7
  988. data/lib/aws-sdk-core/endpoint_provider.rb +0 -104
  989. data/lib/aws-sdk-core/eventbridge.rb +0 -6
  990. data/lib/aws-sdk-core/firehose.rb +0 -6
  991. data/lib/aws-sdk-core/fms.rb +0 -6
  992. data/lib/aws-sdk-core/forecastqueryservice.rb +0 -6
  993. data/lib/aws-sdk-core/forecastservice.rb +0 -6
  994. data/lib/aws-sdk-core/fsx.rb +0 -6
  995. data/lib/aws-sdk-core/gamelift.rb +0 -6
  996. data/lib/aws-sdk-core/glacier.rb +0 -8
  997. data/lib/aws-sdk-core/globalaccelerator.rb +0 -6
  998. data/lib/aws-sdk-core/glue.rb +0 -6
  999. data/lib/aws-sdk-core/greengrass.rb +0 -4
  1000. data/lib/aws-sdk-core/groundstation.rb +0 -6
  1001. data/lib/aws-sdk-core/guardduty.rb +0 -6
  1002. data/lib/aws-sdk-core/health.rb +0 -6
  1003. data/lib/aws-sdk-core/iam.rb +0 -8
  1004. data/lib/aws-sdk-core/importexport.rb +0 -5
  1005. data/lib/aws-sdk-core/inspector.rb +0 -6
  1006. data/lib/aws-sdk-core/iot.rb +0 -6
  1007. data/lib/aws-sdk-core/iot1clickdevicesservice.rb +0 -4
  1008. data/lib/aws-sdk-core/iot1clickprojects.rb +0 -6
  1009. data/lib/aws-sdk-core/iotanalytics.rb +0 -6
  1010. data/lib/aws-sdk-core/iotdataplane.rb +0 -4
  1011. data/lib/aws-sdk-core/iotevents.rb +0 -6
  1012. data/lib/aws-sdk-core/ioteventsdata.rb +0 -6
  1013. data/lib/aws-sdk-core/iotjobsdataplane.rb +0 -6
  1014. data/lib/aws-sdk-core/iotthingsgraph.rb +0 -6
  1015. data/lib/aws-sdk-core/kafka.rb +0 -5
  1016. data/lib/aws-sdk-core/kinesis.rb +0 -7
  1017. data/lib/aws-sdk-core/kinesisanalytics.rb +0 -6
  1018. data/lib/aws-sdk-core/kinesisanalyticsv2.rb +0 -6
  1019. data/lib/aws-sdk-core/kinesisvideo.rb +0 -6
  1020. data/lib/aws-sdk-core/kinesisvideoarchivedmedia.rb +0 -6
  1021. data/lib/aws-sdk-core/kinesisvideomedia.rb +0 -6
  1022. data/lib/aws-sdk-core/kms.rb +0 -6
  1023. data/lib/aws-sdk-core/lakeformation.rb +0 -6
  1024. data/lib/aws-sdk-core/lambda.rb +0 -7
  1025. data/lib/aws-sdk-core/lambdapreview.rb +0 -5
  1026. data/lib/aws-sdk-core/lex.rb +0 -6
  1027. data/lib/aws-sdk-core/lexmodelbuildingservice.rb +0 -6
  1028. data/lib/aws-sdk-core/licensemanager.rb +0 -6
  1029. data/lib/aws-sdk-core/lightsail.rb +0 -6
  1030. data/lib/aws-sdk-core/machinelearning.rb +0 -7
  1031. data/lib/aws-sdk-core/macie.rb +0 -6
  1032. data/lib/aws-sdk-core/managedblockchain.rb +0 -6
  1033. data/lib/aws-sdk-core/marketplacecommerceanalytics.rb +0 -6
  1034. data/lib/aws-sdk-core/marketplaceentitlementservice.rb +0 -6
  1035. data/lib/aws-sdk-core/marketplacemetering.rb +0 -6
  1036. data/lib/aws-sdk-core/mediaconnect.rb +0 -5
  1037. data/lib/aws-sdk-core/mediaconvert.rb +0 -5
  1038. data/lib/aws-sdk-core/medialive.rb +0 -6
  1039. data/lib/aws-sdk-core/mediapackage.rb +0 -5
  1040. data/lib/aws-sdk-core/mediapackagevod.rb +0 -5
  1041. data/lib/aws-sdk-core/mediastore.rb +0 -6
  1042. data/lib/aws-sdk-core/mediastoredata.rb +0 -6
  1043. data/lib/aws-sdk-core/mediatailor.rb +0 -5
  1044. data/lib/aws-sdk-core/migrationhub.rb +0 -6
  1045. data/lib/aws-sdk-core/mobile.rb +0 -6
  1046. data/lib/aws-sdk-core/mq.rb +0 -5
  1047. data/lib/aws-sdk-core/mturk.rb +0 -6
  1048. data/lib/aws-sdk-core/neptune.rb +0 -7
  1049. data/lib/aws-sdk-core/opsworks.rb +0 -8
  1050. data/lib/aws-sdk-core/opsworkscm.rb +0 -7
  1051. data/lib/aws-sdk-core/organizations.rb +0 -6
  1052. data/lib/aws-sdk-core/partitions.rb +0 -174
  1053. data/lib/aws-sdk-core/partitions/partition.rb +0 -95
  1054. data/lib/aws-sdk-core/partitions/partition_list.rb +0 -60
  1055. data/lib/aws-sdk-core/partitions/region.rb +0 -66
  1056. data/lib/aws-sdk-core/partitions/service.rb +0 -75
  1057. data/lib/aws-sdk-core/personalize.rb +0 -6
  1058. data/lib/aws-sdk-core/personalizeevents.rb +0 -6
  1059. data/lib/aws-sdk-core/personalizeruntime.rb +0 -6
  1060. data/lib/aws-sdk-core/pi.rb +0 -6
  1061. data/lib/aws-sdk-core/pinpoint.rb +0 -5
  1062. data/lib/aws-sdk-core/pinpointemail.rb +0 -6
  1063. data/lib/aws-sdk-core/pinpointsmsvoice.rb +0 -4
  1064. data/lib/aws-sdk-core/plugins/api_gateway_header.rb +0 -19
  1065. data/lib/aws-sdk-core/plugins/csd_conditional_signing.rb +0 -30
  1066. data/lib/aws-sdk-core/plugins/csd_switch_to_post.rb +0 -36
  1067. data/lib/aws-sdk-core/plugins/dynamodb_crc32_validation.rb +0 -52
  1068. data/lib/aws-sdk-core/plugins/dynamodb_extended_retries.rb +0 -22
  1069. data/lib/aws-sdk-core/plugins/dynamodb_simple_attributes.rb +0 -208
  1070. data/lib/aws-sdk-core/plugins/ec2_copy_encrypted_snapshot.rb +0 -56
  1071. data/lib/aws-sdk-core/plugins/ec2_region_validation.rb +0 -17
  1072. data/lib/aws-sdk-core/plugins/glacier_account_id.rb +0 -19
  1073. data/lib/aws-sdk-core/plugins/glacier_api_version.rb +0 -19
  1074. data/lib/aws-sdk-core/plugins/glacier_checksums.rb +0 -87
  1075. data/lib/aws-sdk-core/plugins/machine_learning_predict_endpoint.rb +0 -20
  1076. data/lib/aws-sdk-core/plugins/rds_cross_region_copying.rb +0 -69
  1077. data/lib/aws-sdk-core/plugins/request_signer.rb +0 -150
  1078. data/lib/aws-sdk-core/plugins/route_53_id_fix.rb +0 -55
  1079. data/lib/aws-sdk-core/plugins/s3_accelerate.rb +0 -90
  1080. data/lib/aws-sdk-core/plugins/s3_bucket_dns.rb +0 -86
  1081. data/lib/aws-sdk-core/plugins/s3_bucket_name_restrictions.rb +0 -21
  1082. data/lib/aws-sdk-core/plugins/s3_control_dns.rb +0 -25
  1083. data/lib/aws-sdk-core/plugins/s3_control_dualstack.rb +0 -48
  1084. data/lib/aws-sdk-core/plugins/s3_control_signer.rb +0 -53
  1085. data/lib/aws-sdk-core/plugins/s3_dualstack.rb +0 -67
  1086. data/lib/aws-sdk-core/plugins/s3_expect_100_continue.rb +0 -27
  1087. data/lib/aws-sdk-core/plugins/s3_get_bucket_location_fix.rb +0 -21
  1088. data/lib/aws-sdk-core/plugins/s3_host_id.rb +0 -26
  1089. data/lib/aws-sdk-core/plugins/s3_http_200_errors.rb +0 -45
  1090. data/lib/aws-sdk-core/plugins/s3_location_constraint.rb +0 -31
  1091. data/lib/aws-sdk-core/plugins/s3_md5s.rb +0 -50
  1092. data/lib/aws-sdk-core/plugins/s3_redirects.rb +0 -37
  1093. data/lib/aws-sdk-core/plugins/s3_request_signer.rb +0 -166
  1094. data/lib/aws-sdk-core/plugins/s3_sse_cpk.rb +0 -64
  1095. data/lib/aws-sdk-core/plugins/s3_url_encoded_keys.rb +0 -93
  1096. data/lib/aws-sdk-core/plugins/sqs_md5s.rb +0 -164
  1097. data/lib/aws-sdk-core/plugins/sqs_queue_urls.rb +0 -34
  1098. data/lib/aws-sdk-core/plugins/swf_read_timeouts.rb +0 -23
  1099. data/lib/aws-sdk-core/polly.rb +0 -14
  1100. data/lib/aws-sdk-core/polly/presigner.rb +0 -70
  1101. data/lib/aws-sdk-core/pricing.rb +0 -6
  1102. data/lib/aws-sdk-core/qldb.rb +0 -6
  1103. data/lib/aws-sdk-core/qldbsession.rb +0 -6
  1104. data/lib/aws-sdk-core/quicksight.rb +0 -6
  1105. data/lib/aws-sdk-core/ram.rb +0 -6
  1106. data/lib/aws-sdk-core/rds.rb +0 -16
  1107. data/lib/aws-sdk-core/rds/auth_token_generator.rb +0 -63
  1108. data/lib/aws-sdk-core/rdsdataservice.rb +0 -6
  1109. data/lib/aws-sdk-core/redshift.rb +0 -7
  1110. data/lib/aws-sdk-core/rekognition.rb +0 -6
  1111. data/lib/aws-sdk-core/resourcegroups.rb +0 -6
  1112. data/lib/aws-sdk-core/resourcegroupstaggingapi.rb +0 -6
  1113. data/lib/aws-sdk-core/robomaker.rb +0 -6
  1114. data/lib/aws-sdk-core/route53.rb +0 -7
  1115. data/lib/aws-sdk-core/route53domains.rb +0 -6
  1116. data/lib/aws-sdk-core/route53resolver.rb +0 -6
  1117. data/lib/aws-sdk-core/s3.rb +0 -26
  1118. data/lib/aws-sdk-core/s3/bucket_region_cache.rb +0 -75
  1119. data/lib/aws-sdk-core/s3/presigner.rb +0 -116
  1120. data/lib/aws-sdk-core/s3control.rb +0 -6
  1121. data/lib/aws-sdk-core/sagemaker.rb +0 -7
  1122. data/lib/aws-sdk-core/sagemakerruntime.rb +0 -6
  1123. data/lib/aws-sdk-core/secretsmanager.rb +0 -6
  1124. data/lib/aws-sdk-core/securityhub.rb +0 -6
  1125. data/lib/aws-sdk-core/serverlessapplicationrepository.rb +0 -5
  1126. data/lib/aws-sdk-core/service.rb +0 -4
  1127. data/lib/aws-sdk-core/servicecatalog.rb +0 -6
  1128. data/lib/aws-sdk-core/servicediscovery.rb +0 -6
  1129. data/lib/aws-sdk-core/servicequotas.rb +0 -6
  1130. data/lib/aws-sdk-core/ses.rb +0 -7
  1131. data/lib/aws-sdk-core/shield.rb +0 -6
  1132. data/lib/aws-sdk-core/signer.rb +0 -7
  1133. data/lib/aws-sdk-core/signers/base.rb +0 -31
  1134. data/lib/aws-sdk-core/signers/s3.rb +0 -185
  1135. data/lib/aws-sdk-core/signers/v2.rb +0 -51
  1136. data/lib/aws-sdk-core/signers/v3.rb +0 -34
  1137. data/lib/aws-sdk-core/signers/v4.rb +0 -234
  1138. data/lib/aws-sdk-core/simpledb.rb +0 -5
  1139. data/lib/aws-sdk-core/sms.rb +0 -6
  1140. data/lib/aws-sdk-core/snowball.rb +0 -6
  1141. data/lib/aws-sdk-core/sns.rb +0 -7
  1142. data/lib/aws-sdk-core/sqs.rb +0 -7
  1143. data/lib/aws-sdk-core/ssm.rb +0 -6
  1144. data/lib/aws-sdk-core/states.rb +0 -6
  1145. data/lib/aws-sdk-core/storagegateway.rb +0 -6
  1146. data/lib/aws-sdk-core/sts.rb +0 -6
  1147. data/lib/aws-sdk-core/support.rb +0 -6
  1148. data/lib/aws-sdk-core/swf.rb +0 -6
  1149. data/lib/aws-sdk-core/textract.rb +0 -6
  1150. data/lib/aws-sdk-core/transcribeservice.rb +0 -6
  1151. data/lib/aws-sdk-core/transfer.rb +0 -6
  1152. data/lib/aws-sdk-core/translate.rb +0 -6
  1153. data/lib/aws-sdk-core/tree_hash.rb +0 -69
  1154. data/lib/aws-sdk-core/version.rb +0 -3
  1155. data/lib/aws-sdk-core/waf.rb +0 -6
  1156. data/lib/aws-sdk-core/wafregional.rb +0 -6
  1157. data/lib/aws-sdk-core/waiters/null_provider.rb +0 -12
  1158. data/lib/aws-sdk-core/waiters/provider.rb +0 -35
  1159. data/lib/aws-sdk-core/workdocs.rb +0 -6
  1160. data/lib/aws-sdk-core/worklink.rb +0 -6
  1161. data/lib/aws-sdk-core/workmail.rb +0 -6
  1162. data/lib/aws-sdk-core/workmailmessageflow.rb +0 -6
  1163. data/lib/aws-sdk-core/workspaces.rb +0 -6
  1164. data/lib/aws-sdk-core/xray.rb +0 -6
  1165. data/lib/seahorse/client/plugins/restful_bindings.rb +0 -125
  1166. data/service-models.json +0 -769
@@ -1,281 +0,0 @@
1
- {
2
- "version": "1.0",
3
- "examples": {
4
- "BatchGetBuilds": [
5
- {
6
- "input": {
7
- "ids": [
8
- "codebuild-demo-project:9b0ac37f-d19e-4254-9079-f47e9a389eEX",
9
- "codebuild-demo-project:b79a46f7-1473-4636-a23f-da9c45c208EX"
10
- ]
11
- },
12
- "output": {
13
- "builds": [
14
- {
15
- "arn": "arn:aws:codebuild:us-east-1:123456789012:build/codebuild-demo-project:9b0ac37f-d19e-4254-9079-f47e9a389eEX",
16
- "artifacts": {
17
- "location": "arn:aws:s3:::codebuild-123456789012-output-bucket/codebuild-demo-project"
18
- },
19
- "buildComplete": true,
20
- "buildStatus": "SUCCEEDED",
21
- "currentPhase": "COMPLETED",
22
- "endTime": 1479832474.764,
23
- "environment": {
24
- "type": "LINUX_CONTAINER",
25
- "computeType": "BUILD_GENERAL1_SMALL",
26
- "environmentVariables": [
27
-
28
- ],
29
- "image": "aws/codebuild/java:openjdk-8",
30
- "privilegedMode": false
31
- },
32
- "id": "codebuild-demo-project:9b0ac37f-d19e-4254-9079-f47e9a389eEX",
33
- "initiator": "MyDemoUser",
34
- "logs": {
35
- "deepLink": "https://console.aws.amazon.com/cloudwatch/home?region=us-east-1#logEvent:group=/aws/codebuild/codebuild-demo-project;stream=9b0ac37f-d19e-4254-9079-f47e9a389eEX",
36
- "groupName": "/aws/codebuild/codebuild-demo-project",
37
- "streamName": "9b0ac37f-d19e-4254-9079-f47e9a389eEX"
38
- },
39
- "phases": [
40
- {
41
- "durationInSeconds": 0,
42
- "endTime": 1479832342.23,
43
- "phaseStatus": "SUCCEEDED",
44
- "phaseType": "SUBMITTED",
45
- "startTime": 1479832341.854
46
- },
47
- {
48
- "contexts": [
49
-
50
- ],
51
- "durationInSeconds": 72,
52
- "endTime": 1479832415.064,
53
- "phaseStatus": "SUCCEEDED",
54
- "phaseType": "PROVISIONING",
55
- "startTime": 1479832342.23
56
- },
57
- {
58
- "contexts": [
59
-
60
- ],
61
- "durationInSeconds": 46,
62
- "endTime": 1479832461.261,
63
- "phaseStatus": "SUCCEEDED",
64
- "phaseType": "DOWNLOAD_SOURCE",
65
- "startTime": 1479832415.064
66
- },
67
- {
68
- "contexts": [
69
-
70
- ],
71
- "durationInSeconds": 0,
72
- "endTime": 1479832461.354,
73
- "phaseStatus": "SUCCEEDED",
74
- "phaseType": "INSTALL",
75
- "startTime": 1479832461.261
76
- },
77
- {
78
- "contexts": [
79
-
80
- ],
81
- "durationInSeconds": 0,
82
- "endTime": 1479832461.448,
83
- "phaseStatus": "SUCCEEDED",
84
- "phaseType": "PRE_BUILD",
85
- "startTime": 1479832461.354
86
- },
87
- {
88
- "contexts": [
89
-
90
- ],
91
- "durationInSeconds": 9,
92
- "endTime": 1479832471.115,
93
- "phaseStatus": "SUCCEEDED",
94
- "phaseType": "BUILD",
95
- "startTime": 1479832461.448
96
- },
97
- {
98
- "contexts": [
99
-
100
- ],
101
- "durationInSeconds": 0,
102
- "endTime": 1479832471.224,
103
- "phaseStatus": "SUCCEEDED",
104
- "phaseType": "POST_BUILD",
105
- "startTime": 1479832471.115
106
- },
107
- {
108
- "contexts": [
109
-
110
- ],
111
- "durationInSeconds": 0,
112
- "endTime": 1479832471.791,
113
- "phaseStatus": "SUCCEEDED",
114
- "phaseType": "UPLOAD_ARTIFACTS",
115
- "startTime": 1479832471.224
116
- },
117
- {
118
- "contexts": [
119
-
120
- ],
121
- "durationInSeconds": 2,
122
- "endTime": 1479832474.764,
123
- "phaseStatus": "SUCCEEDED",
124
- "phaseType": "FINALIZING",
125
- "startTime": 1479832471.791
126
- },
127
- {
128
- "phaseType": "COMPLETED",
129
- "startTime": 1479832474.764
130
- }
131
- ],
132
- "projectName": "codebuild-demo-project",
133
- "source": {
134
- "type": "S3",
135
- "buildspec": "",
136
- "location": "arn:aws:s3:::codebuild-123456789012-input-bucket/MessageUtil.zip"
137
- },
138
- "startTime": 1479832341.854,
139
- "timeoutInMinutes": 60
140
- },
141
- {
142
- "arn": "arn:aws:codebuild:us-east-1:123456789012:build/codebuild-demo-project:b79a46f7-1473-4636-a23f-da9c45c208EX",
143
- "artifacts": {
144
- "location": "arn:aws:s3:::codebuild-123456789012-output-bucket/codebuild-demo-project"
145
- },
146
- "buildComplete": true,
147
- "buildStatus": "SUCCEEDED",
148
- "currentPhase": "COMPLETED",
149
- "endTime": 1479401214.239,
150
- "environment": {
151
- "type": "LINUX_CONTAINER",
152
- "computeType": "BUILD_GENERAL1_SMALL",
153
- "environmentVariables": [
154
-
155
- ],
156
- "image": "aws/codebuild/java:openjdk-8",
157
- "privilegedMode": false
158
- },
159
- "id": "codebuild-demo-project:b79a46f7-1473-4636-a23f-da9c45c208EX",
160
- "initiator": "MyDemoUser",
161
- "logs": {
162
- "deepLink": "https://console.aws.amazon.com/cloudwatch/home?region=us-east-1#logEvent:group=/aws/codebuild/codebuild-demo-project;stream=b79a46f7-1473-4636-a23f-da9c45c208EX",
163
- "groupName": "/aws/codebuild/codebuild-demo-project",
164
- "streamName": "b79a46f7-1473-4636-a23f-da9c45c208EX"
165
- },
166
- "phases": [
167
- {
168
- "durationInSeconds": 0,
169
- "endTime": 1479401082.342,
170
- "phaseStatus": "SUCCEEDED",
171
- "phaseType": "SUBMITTED",
172
- "startTime": 1479401081.869
173
- },
174
- {
175
- "contexts": [
176
-
177
- ],
178
- "durationInSeconds": 71,
179
- "endTime": 1479401154.129,
180
- "phaseStatus": "SUCCEEDED",
181
- "phaseType": "PROVISIONING",
182
- "startTime": 1479401082.342
183
- },
184
- {
185
- "contexts": [
186
-
187
- ],
188
- "durationInSeconds": 45,
189
- "endTime": 1479401199.136,
190
- "phaseStatus": "SUCCEEDED",
191
- "phaseType": "DOWNLOAD_SOURCE",
192
- "startTime": 1479401154.129
193
- },
194
- {
195
- "contexts": [
196
-
197
- ],
198
- "durationInSeconds": 0,
199
- "endTime": 1479401199.236,
200
- "phaseStatus": "SUCCEEDED",
201
- "phaseType": "INSTALL",
202
- "startTime": 1479401199.136
203
- },
204
- {
205
- "contexts": [
206
-
207
- ],
208
- "durationInSeconds": 0,
209
- "endTime": 1479401199.345,
210
- "phaseStatus": "SUCCEEDED",
211
- "phaseType": "PRE_BUILD",
212
- "startTime": 1479401199.236
213
- },
214
- {
215
- "contexts": [
216
-
217
- ],
218
- "durationInSeconds": 9,
219
- "endTime": 1479401208.68,
220
- "phaseStatus": "SUCCEEDED",
221
- "phaseType": "BUILD",
222
- "startTime": 1479401199.345
223
- },
224
- {
225
- "contexts": [
226
-
227
- ],
228
- "durationInSeconds": 0,
229
- "endTime": 1479401208.783,
230
- "phaseStatus": "SUCCEEDED",
231
- "phaseType": "POST_BUILD",
232
- "startTime": 1479401208.68
233
- },
234
- {
235
- "contexts": [
236
-
237
- ],
238
- "durationInSeconds": 0,
239
- "endTime": 1479401209.463,
240
- "phaseStatus": "SUCCEEDED",
241
- "phaseType": "UPLOAD_ARTIFACTS",
242
- "startTime": 1479401208.783
243
- },
244
- {
245
- "contexts": [
246
-
247
- ],
248
- "durationInSeconds": 4,
249
- "endTime": 1479401214.239,
250
- "phaseStatus": "SUCCEEDED",
251
- "phaseType": "FINALIZING",
252
- "startTime": 1479401209.463
253
- },
254
- {
255
- "phaseType": "COMPLETED",
256
- "startTime": 1479401214.239
257
- }
258
- ],
259
- "projectName": "codebuild-demo-project",
260
- "source": {
261
- "type": "S3",
262
- "location": "arn:aws:s3:::codebuild-123456789012-input-bucket/MessageUtil.zip"
263
- },
264
- "startTime": 1479401081.869,
265
- "timeoutInMinutes": 60
266
- }
267
- ]
268
- },
269
- "comments": {
270
- "input": {
271
- },
272
- "output": {
273
- }
274
- },
275
- "description": "The following example gets information about builds with the specified build IDs.",
276
- "id": "to-get-information-about-builds-1501187184588",
277
- "title": "To get information about builds"
278
- }
279
- ]
280
- }
281
- }
@@ -1,4 +0,0 @@
1
- {
2
- "pagination": {
3
- }
4
- }
@@ -1,11 +0,0 @@
1
- {
2
- "version": 1,
3
- "defaultRegion": "us-west-2",
4
- "testCases": [
5
- {
6
- "operationName": "ListBuilds",
7
- "input": {},
8
- "errorExpectedFromService": false
9
- }
10
- ]
11
- }
@@ -1,4248 +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
- "BatchDescribeMergeConflicts":{
17
- "name":"BatchDescribeMergeConflicts",
18
- "http":{
19
- "method":"POST",
20
- "requestUri":"/"
21
- },
22
- "input":{"shape":"BatchDescribeMergeConflictsInput"},
23
- "output":{"shape":"BatchDescribeMergeConflictsOutput"},
24
- "errors":[
25
- {"shape":"RepositoryNameRequiredException"},
26
- {"shape":"InvalidRepositoryNameException"},
27
- {"shape":"RepositoryDoesNotExistException"},
28
- {"shape":"MergeOptionRequiredException"},
29
- {"shape":"InvalidMergeOptionException"},
30
- {"shape":"InvalidContinuationTokenException"},
31
- {"shape":"CommitRequiredException"},
32
- {"shape":"CommitDoesNotExistException"},
33
- {"shape":"InvalidCommitException"},
34
- {"shape":"TipsDivergenceExceededException"},
35
- {"shape":"InvalidMaxConflictFilesException"},
36
- {"shape":"InvalidMaxMergeHunksException"},
37
- {"shape":"InvalidConflictDetailLevelException"},
38
- {"shape":"InvalidConflictResolutionStrategyException"},
39
- {"shape":"MaximumFileContentToLoadExceededException"},
40
- {"shape":"MaximumItemsToCompareExceededException"},
41
- {"shape":"EncryptionIntegrityChecksFailedException"},
42
- {"shape":"EncryptionKeyAccessDeniedException"},
43
- {"shape":"EncryptionKeyDisabledException"},
44
- {"shape":"EncryptionKeyNotFoundException"},
45
- {"shape":"EncryptionKeyUnavailableException"}
46
- ]
47
- },
48
- "BatchGetCommits":{
49
- "name":"BatchGetCommits",
50
- "http":{
51
- "method":"POST",
52
- "requestUri":"/"
53
- },
54
- "input":{"shape":"BatchGetCommitsInput"},
55
- "output":{"shape":"BatchGetCommitsOutput"},
56
- "errors":[
57
- {"shape":"CommitIdsListRequiredException"},
58
- {"shape":"CommitIdsLimitExceededException"},
59
- {"shape":"RepositoryNameRequiredException"},
60
- {"shape":"InvalidRepositoryNameException"},
61
- {"shape":"RepositoryDoesNotExistException"},
62
- {"shape":"EncryptionIntegrityChecksFailedException"},
63
- {"shape":"EncryptionKeyAccessDeniedException"},
64
- {"shape":"EncryptionKeyDisabledException"},
65
- {"shape":"EncryptionKeyNotFoundException"},
66
- {"shape":"EncryptionKeyUnavailableException"}
67
- ]
68
- },
69
- "BatchGetRepositories":{
70
- "name":"BatchGetRepositories",
71
- "http":{
72
- "method":"POST",
73
- "requestUri":"/"
74
- },
75
- "input":{"shape":"BatchGetRepositoriesInput"},
76
- "output":{"shape":"BatchGetRepositoriesOutput"},
77
- "errors":[
78
- {"shape":"RepositoryNamesRequiredException"},
79
- {"shape":"MaximumRepositoryNamesExceededException"},
80
- {"shape":"InvalidRepositoryNameException"},
81
- {"shape":"EncryptionIntegrityChecksFailedException"},
82
- {"shape":"EncryptionKeyAccessDeniedException"},
83
- {"shape":"EncryptionKeyDisabledException"},
84
- {"shape":"EncryptionKeyNotFoundException"},
85
- {"shape":"EncryptionKeyUnavailableException"}
86
- ]
87
- },
88
- "CreateBranch":{
89
- "name":"CreateBranch",
90
- "http":{
91
- "method":"POST",
92
- "requestUri":"/"
93
- },
94
- "input":{"shape":"CreateBranchInput"},
95
- "errors":[
96
- {"shape":"RepositoryNameRequiredException"},
97
- {"shape":"InvalidRepositoryNameException"},
98
- {"shape":"RepositoryDoesNotExistException"},
99
- {"shape":"BranchNameRequiredException"},
100
- {"shape":"BranchNameExistsException"},
101
- {"shape":"InvalidBranchNameException"},
102
- {"shape":"CommitIdRequiredException"},
103
- {"shape":"CommitDoesNotExistException"},
104
- {"shape":"InvalidCommitIdException"},
105
- {"shape":"EncryptionIntegrityChecksFailedException"},
106
- {"shape":"EncryptionKeyAccessDeniedException"},
107
- {"shape":"EncryptionKeyDisabledException"},
108
- {"shape":"EncryptionKeyNotFoundException"},
109
- {"shape":"EncryptionKeyUnavailableException"}
110
- ]
111
- },
112
- "CreateCommit":{
113
- "name":"CreateCommit",
114
- "http":{
115
- "method":"POST",
116
- "requestUri":"/"
117
- },
118
- "input":{"shape":"CreateCommitInput"},
119
- "output":{"shape":"CreateCommitOutput"},
120
- "errors":[
121
- {"shape":"RepositoryNameRequiredException"},
122
- {"shape":"InvalidRepositoryNameException"},
123
- {"shape":"RepositoryDoesNotExistException"},
124
- {"shape":"ParentCommitIdRequiredException"},
125
- {"shape":"InvalidParentCommitIdException"},
126
- {"shape":"ParentCommitDoesNotExistException"},
127
- {"shape":"ParentCommitIdOutdatedException"},
128
- {"shape":"BranchNameRequiredException"},
129
- {"shape":"InvalidBranchNameException"},
130
- {"shape":"BranchDoesNotExistException"},
131
- {"shape":"BranchNameIsTagNameException"},
132
- {"shape":"FileEntryRequiredException"},
133
- {"shape":"MaximumFileEntriesExceededException"},
134
- {"shape":"PutFileEntryConflictException"},
135
- {"shape":"SourceFileOrContentRequiredException"},
136
- {"shape":"FileContentAndSourceFileSpecifiedException"},
137
- {"shape":"PathRequiredException"},
138
- {"shape":"InvalidPathException"},
139
- {"shape":"SamePathRequestException"},
140
- {"shape":"FileDoesNotExistException"},
141
- {"shape":"FileContentSizeLimitExceededException"},
142
- {"shape":"FolderContentSizeLimitExceededException"},
143
- {"shape":"InvalidDeletionParameterException"},
144
- {"shape":"RestrictedSourceFileException"},
145
- {"shape":"FileModeRequiredException"},
146
- {"shape":"InvalidFileModeException"},
147
- {"shape":"NameLengthExceededException"},
148
- {"shape":"InvalidEmailException"},
149
- {"shape":"CommitMessageLengthExceededException"},
150
- {"shape":"EncryptionIntegrityChecksFailedException"},
151
- {"shape":"EncryptionKeyAccessDeniedException"},
152
- {"shape":"EncryptionKeyDisabledException"},
153
- {"shape":"EncryptionKeyNotFoundException"},
154
- {"shape":"EncryptionKeyUnavailableException"},
155
- {"shape":"NoChangeException"},
156
- {"shape":"FileNameConflictsWithDirectoryNameException"},
157
- {"shape":"DirectoryNameConflictsWithFileNameException"},
158
- {"shape":"FilePathConflictsWithSubmodulePathException"}
159
- ]
160
- },
161
- "CreatePullRequest":{
162
- "name":"CreatePullRequest",
163
- "http":{
164
- "method":"POST",
165
- "requestUri":"/"
166
- },
167
- "input":{"shape":"CreatePullRequestInput"},
168
- "output":{"shape":"CreatePullRequestOutput"},
169
- "errors":[
170
- {"shape":"RepositoryNameRequiredException"},
171
- {"shape":"InvalidRepositoryNameException"},
172
- {"shape":"RepositoryDoesNotExistException"},
173
- {"shape":"EncryptionIntegrityChecksFailedException"},
174
- {"shape":"EncryptionKeyAccessDeniedException"},
175
- {"shape":"EncryptionKeyDisabledException"},
176
- {"shape":"EncryptionKeyNotFoundException"},
177
- {"shape":"EncryptionKeyUnavailableException"},
178
- {"shape":"ClientRequestTokenRequiredException"},
179
- {"shape":"InvalidClientRequestTokenException"},
180
- {"shape":"IdempotencyParameterMismatchException"},
181
- {"shape":"ReferenceNameRequiredException"},
182
- {"shape":"InvalidReferenceNameException"},
183
- {"shape":"ReferenceDoesNotExistException"},
184
- {"shape":"ReferenceTypeNotSupportedException"},
185
- {"shape":"TitleRequiredException"},
186
- {"shape":"InvalidTitleException"},
187
- {"shape":"InvalidDescriptionException"},
188
- {"shape":"TargetsRequiredException"},
189
- {"shape":"InvalidTargetsException"},
190
- {"shape":"TargetRequiredException"},
191
- {"shape":"InvalidTargetException"},
192
- {"shape":"MultipleRepositoriesInPullRequestException"},
193
- {"shape":"MaximumOpenPullRequestsExceededException"},
194
- {"shape":"SourceAndDestinationAreSameException"}
195
- ]
196
- },
197
- "CreateRepository":{
198
- "name":"CreateRepository",
199
- "http":{
200
- "method":"POST",
201
- "requestUri":"/"
202
- },
203
- "input":{"shape":"CreateRepositoryInput"},
204
- "output":{"shape":"CreateRepositoryOutput"},
205
- "errors":[
206
- {"shape":"RepositoryNameExistsException"},
207
- {"shape":"RepositoryNameRequiredException"},
208
- {"shape":"InvalidRepositoryNameException"},
209
- {"shape":"InvalidRepositoryDescriptionException"},
210
- {"shape":"RepositoryLimitExceededException"},
211
- {"shape":"EncryptionIntegrityChecksFailedException"},
212
- {"shape":"EncryptionKeyAccessDeniedException"},
213
- {"shape":"EncryptionKeyDisabledException"},
214
- {"shape":"EncryptionKeyNotFoundException"},
215
- {"shape":"EncryptionKeyUnavailableException"},
216
- {"shape":"InvalidTagsMapException"},
217
- {"shape":"TooManyTagsException"},
218
- {"shape":"InvalidSystemTagUsageException"},
219
- {"shape":"TagPolicyException"}
220
- ]
221
- },
222
- "CreateUnreferencedMergeCommit":{
223
- "name":"CreateUnreferencedMergeCommit",
224
- "http":{
225
- "method":"POST",
226
- "requestUri":"/"
227
- },
228
- "input":{"shape":"CreateUnreferencedMergeCommitInput"},
229
- "output":{"shape":"CreateUnreferencedMergeCommitOutput"},
230
- "errors":[
231
- {"shape":"RepositoryNameRequiredException"},
232
- {"shape":"InvalidRepositoryNameException"},
233
- {"shape":"RepositoryDoesNotExistException"},
234
- {"shape":"TipsDivergenceExceededException"},
235
- {"shape":"CommitRequiredException"},
236
- {"shape":"InvalidCommitException"},
237
- {"shape":"CommitDoesNotExistException"},
238
- {"shape":"MergeOptionRequiredException"},
239
- {"shape":"InvalidMergeOptionException"},
240
- {"shape":"InvalidConflictDetailLevelException"},
241
- {"shape":"InvalidConflictResolutionStrategyException"},
242
- {"shape":"InvalidConflictResolutionException"},
243
- {"shape":"ManualMergeRequiredException"},
244
- {"shape":"MaximumConflictResolutionEntriesExceededException"},
245
- {"shape":"MultipleConflictResolutionEntriesException"},
246
- {"shape":"ReplacementTypeRequiredException"},
247
- {"shape":"InvalidReplacementTypeException"},
248
- {"shape":"ReplacementContentRequiredException"},
249
- {"shape":"InvalidReplacementContentException"},
250
- {"shape":"PathRequiredException"},
251
- {"shape":"InvalidPathException"},
252
- {"shape":"FileContentSizeLimitExceededException"},
253
- {"shape":"FolderContentSizeLimitExceededException"},
254
- {"shape":"MaximumFileContentToLoadExceededException"},
255
- {"shape":"MaximumItemsToCompareExceededException"},
256
- {"shape":"ConcurrentReferenceUpdateException"},
257
- {"shape":"FileModeRequiredException"},
258
- {"shape":"InvalidFileModeException"},
259
- {"shape":"NameLengthExceededException"},
260
- {"shape":"InvalidEmailException"},
261
- {"shape":"CommitMessageLengthExceededException"},
262
- {"shape":"EncryptionIntegrityChecksFailedException"},
263
- {"shape":"EncryptionKeyAccessDeniedException"},
264
- {"shape":"EncryptionKeyDisabledException"},
265
- {"shape":"EncryptionKeyNotFoundException"},
266
- {"shape":"EncryptionKeyUnavailableException"}
267
- ]
268
- },
269
- "DeleteBranch":{
270
- "name":"DeleteBranch",
271
- "http":{
272
- "method":"POST",
273
- "requestUri":"/"
274
- },
275
- "input":{"shape":"DeleteBranchInput"},
276
- "output":{"shape":"DeleteBranchOutput"},
277
- "errors":[
278
- {"shape":"RepositoryNameRequiredException"},
279
- {"shape":"RepositoryDoesNotExistException"},
280
- {"shape":"InvalidRepositoryNameException"},
281
- {"shape":"BranchNameRequiredException"},
282
- {"shape":"InvalidBranchNameException"},
283
- {"shape":"DefaultBranchCannotBeDeletedException"},
284
- {"shape":"EncryptionIntegrityChecksFailedException"},
285
- {"shape":"EncryptionKeyAccessDeniedException"},
286
- {"shape":"EncryptionKeyDisabledException"},
287
- {"shape":"EncryptionKeyNotFoundException"},
288
- {"shape":"EncryptionKeyUnavailableException"}
289
- ]
290
- },
291
- "DeleteCommentContent":{
292
- "name":"DeleteCommentContent",
293
- "http":{
294
- "method":"POST",
295
- "requestUri":"/"
296
- },
297
- "input":{"shape":"DeleteCommentContentInput"},
298
- "output":{"shape":"DeleteCommentContentOutput"},
299
- "errors":[
300
- {"shape":"CommentDoesNotExistException"},
301
- {"shape":"CommentIdRequiredException"},
302
- {"shape":"InvalidCommentIdException"},
303
- {"shape":"CommentDeletedException"}
304
- ]
305
- },
306
- "DeleteFile":{
307
- "name":"DeleteFile",
308
- "http":{
309
- "method":"POST",
310
- "requestUri":"/"
311
- },
312
- "input":{"shape":"DeleteFileInput"},
313
- "output":{"shape":"DeleteFileOutput"},
314
- "errors":[
315
- {"shape":"RepositoryNameRequiredException"},
316
- {"shape":"InvalidRepositoryNameException"},
317
- {"shape":"RepositoryDoesNotExistException"},
318
- {"shape":"ParentCommitIdRequiredException"},
319
- {"shape":"InvalidParentCommitIdException"},
320
- {"shape":"ParentCommitDoesNotExistException"},
321
- {"shape":"ParentCommitIdOutdatedException"},
322
- {"shape":"PathRequiredException"},
323
- {"shape":"InvalidPathException"},
324
- {"shape":"FileDoesNotExistException"},
325
- {"shape":"BranchNameRequiredException"},
326
- {"shape":"InvalidBranchNameException"},
327
- {"shape":"BranchDoesNotExistException"},
328
- {"shape":"BranchNameIsTagNameException"},
329
- {"shape":"NameLengthExceededException"},
330
- {"shape":"InvalidEmailException"},
331
- {"shape":"CommitMessageLengthExceededException"},
332
- {"shape":"EncryptionIntegrityChecksFailedException"},
333
- {"shape":"EncryptionKeyAccessDeniedException"},
334
- {"shape":"EncryptionKeyDisabledException"},
335
- {"shape":"EncryptionKeyNotFoundException"},
336
- {"shape":"EncryptionKeyUnavailableException"}
337
- ]
338
- },
339
- "DeleteRepository":{
340
- "name":"DeleteRepository",
341
- "http":{
342
- "method":"POST",
343
- "requestUri":"/"
344
- },
345
- "input":{"shape":"DeleteRepositoryInput"},
346
- "output":{"shape":"DeleteRepositoryOutput"},
347
- "errors":[
348
- {"shape":"RepositoryNameRequiredException"},
349
- {"shape":"InvalidRepositoryNameException"},
350
- {"shape":"EncryptionIntegrityChecksFailedException"},
351
- {"shape":"EncryptionKeyAccessDeniedException"},
352
- {"shape":"EncryptionKeyDisabledException"},
353
- {"shape":"EncryptionKeyNotFoundException"},
354
- {"shape":"EncryptionKeyUnavailableException"}
355
- ]
356
- },
357
- "DescribeMergeConflicts":{
358
- "name":"DescribeMergeConflicts",
359
- "http":{
360
- "method":"POST",
361
- "requestUri":"/"
362
- },
363
- "input":{"shape":"DescribeMergeConflictsInput"},
364
- "output":{"shape":"DescribeMergeConflictsOutput"},
365
- "errors":[
366
- {"shape":"RepositoryNameRequiredException"},
367
- {"shape":"InvalidRepositoryNameException"},
368
- {"shape":"RepositoryDoesNotExistException"},
369
- {"shape":"MergeOptionRequiredException"},
370
- {"shape":"InvalidMergeOptionException"},
371
- {"shape":"InvalidContinuationTokenException"},
372
- {"shape":"CommitRequiredException"},
373
- {"shape":"CommitDoesNotExistException"},
374
- {"shape":"InvalidCommitException"},
375
- {"shape":"TipsDivergenceExceededException"},
376
- {"shape":"PathRequiredException"},
377
- {"shape":"InvalidPathException"},
378
- {"shape":"FileDoesNotExistException"},
379
- {"shape":"InvalidMaxMergeHunksException"},
380
- {"shape":"InvalidConflictDetailLevelException"},
381
- {"shape":"InvalidConflictResolutionStrategyException"},
382
- {"shape":"MaximumFileContentToLoadExceededException"},
383
- {"shape":"MaximumItemsToCompareExceededException"},
384
- {"shape":"EncryptionIntegrityChecksFailedException"},
385
- {"shape":"EncryptionKeyAccessDeniedException"},
386
- {"shape":"EncryptionKeyDisabledException"},
387
- {"shape":"EncryptionKeyNotFoundException"},
388
- {"shape":"EncryptionKeyUnavailableException"}
389
- ]
390
- },
391
- "DescribePullRequestEvents":{
392
- "name":"DescribePullRequestEvents",
393
- "http":{
394
- "method":"POST",
395
- "requestUri":"/"
396
- },
397
- "input":{"shape":"DescribePullRequestEventsInput"},
398
- "output":{"shape":"DescribePullRequestEventsOutput"},
399
- "errors":[
400
- {"shape":"PullRequestDoesNotExistException"},
401
- {"shape":"InvalidPullRequestIdException"},
402
- {"shape":"PullRequestIdRequiredException"},
403
- {"shape":"InvalidPullRequestEventTypeException"},
404
- {"shape":"InvalidActorArnException"},
405
- {"shape":"ActorDoesNotExistException"},
406
- {"shape":"InvalidMaxResultsException"},
407
- {"shape":"InvalidContinuationTokenException"},
408
- {"shape":"EncryptionIntegrityChecksFailedException"},
409
- {"shape":"EncryptionKeyAccessDeniedException"},
410
- {"shape":"EncryptionKeyDisabledException"},
411
- {"shape":"EncryptionKeyNotFoundException"},
412
- {"shape":"EncryptionKeyUnavailableException"}
413
- ]
414
- },
415
- "GetBlob":{
416
- "name":"GetBlob",
417
- "http":{
418
- "method":"POST",
419
- "requestUri":"/"
420
- },
421
- "input":{"shape":"GetBlobInput"},
422
- "output":{"shape":"GetBlobOutput"},
423
- "errors":[
424
- {"shape":"RepositoryNameRequiredException"},
425
- {"shape":"InvalidRepositoryNameException"},
426
- {"shape":"RepositoryDoesNotExistException"},
427
- {"shape":"BlobIdRequiredException"},
428
- {"shape":"InvalidBlobIdException"},
429
- {"shape":"BlobIdDoesNotExistException"},
430
- {"shape":"EncryptionIntegrityChecksFailedException"},
431
- {"shape":"EncryptionKeyAccessDeniedException"},
432
- {"shape":"EncryptionKeyDisabledException"},
433
- {"shape":"EncryptionKeyNotFoundException"},
434
- {"shape":"EncryptionKeyUnavailableException"},
435
- {"shape":"FileTooLargeException"}
436
- ]
437
- },
438
- "GetBranch":{
439
- "name":"GetBranch",
440
- "http":{
441
- "method":"POST",
442
- "requestUri":"/"
443
- },
444
- "input":{"shape":"GetBranchInput"},
445
- "output":{"shape":"GetBranchOutput"},
446
- "errors":[
447
- {"shape":"RepositoryNameRequiredException"},
448
- {"shape":"RepositoryDoesNotExistException"},
449
- {"shape":"InvalidRepositoryNameException"},
450
- {"shape":"BranchNameRequiredException"},
451
- {"shape":"InvalidBranchNameException"},
452
- {"shape":"BranchDoesNotExistException"},
453
- {"shape":"EncryptionIntegrityChecksFailedException"},
454
- {"shape":"EncryptionKeyAccessDeniedException"},
455
- {"shape":"EncryptionKeyDisabledException"},
456
- {"shape":"EncryptionKeyNotFoundException"},
457
- {"shape":"EncryptionKeyUnavailableException"}
458
- ]
459
- },
460
- "GetComment":{
461
- "name":"GetComment",
462
- "http":{
463
- "method":"POST",
464
- "requestUri":"/"
465
- },
466
- "input":{"shape":"GetCommentInput"},
467
- "output":{"shape":"GetCommentOutput"},
468
- "errors":[
469
- {"shape":"CommentDoesNotExistException"},
470
- {"shape":"CommentIdRequiredException"},
471
- {"shape":"InvalidCommentIdException"},
472
- {"shape":"CommentDeletedException"}
473
- ]
474
- },
475
- "GetCommentsForComparedCommit":{
476
- "name":"GetCommentsForComparedCommit",
477
- "http":{
478
- "method":"POST",
479
- "requestUri":"/"
480
- },
481
- "input":{"shape":"GetCommentsForComparedCommitInput"},
482
- "output":{"shape":"GetCommentsForComparedCommitOutput"},
483
- "errors":[
484
- {"shape":"RepositoryNameRequiredException"},
485
- {"shape":"RepositoryDoesNotExistException"},
486
- {"shape":"InvalidRepositoryNameException"},
487
- {"shape":"CommitIdRequiredException"},
488
- {"shape":"InvalidCommitIdException"},
489
- {"shape":"CommitDoesNotExistException"},
490
- {"shape":"InvalidMaxResultsException"},
491
- {"shape":"InvalidContinuationTokenException"},
492
- {"shape":"EncryptionIntegrityChecksFailedException"},
493
- {"shape":"EncryptionKeyAccessDeniedException"},
494
- {"shape":"EncryptionKeyDisabledException"},
495
- {"shape":"EncryptionKeyNotFoundException"},
496
- {"shape":"EncryptionKeyUnavailableException"}
497
- ]
498
- },
499
- "GetCommentsForPullRequest":{
500
- "name":"GetCommentsForPullRequest",
501
- "http":{
502
- "method":"POST",
503
- "requestUri":"/"
504
- },
505
- "input":{"shape":"GetCommentsForPullRequestInput"},
506
- "output":{"shape":"GetCommentsForPullRequestOutput"},
507
- "errors":[
508
- {"shape":"PullRequestIdRequiredException"},
509
- {"shape":"PullRequestDoesNotExistException"},
510
- {"shape":"InvalidPullRequestIdException"},
511
- {"shape":"RepositoryNameRequiredException"},
512
- {"shape":"RepositoryDoesNotExistException"},
513
- {"shape":"InvalidRepositoryNameException"},
514
- {"shape":"CommitIdRequiredException"},
515
- {"shape":"InvalidCommitIdException"},
516
- {"shape":"CommitDoesNotExistException"},
517
- {"shape":"InvalidMaxResultsException"},
518
- {"shape":"InvalidContinuationTokenException"},
519
- {"shape":"RepositoryNotAssociatedWithPullRequestException"},
520
- {"shape":"EncryptionIntegrityChecksFailedException"},
521
- {"shape":"EncryptionKeyAccessDeniedException"},
522
- {"shape":"EncryptionKeyDisabledException"},
523
- {"shape":"EncryptionKeyNotFoundException"},
524
- {"shape":"EncryptionKeyUnavailableException"}
525
- ]
526
- },
527
- "GetCommit":{
528
- "name":"GetCommit",
529
- "http":{
530
- "method":"POST",
531
- "requestUri":"/"
532
- },
533
- "input":{"shape":"GetCommitInput"},
534
- "output":{"shape":"GetCommitOutput"},
535
- "errors":[
536
- {"shape":"RepositoryNameRequiredException"},
537
- {"shape":"InvalidRepositoryNameException"},
538
- {"shape":"RepositoryDoesNotExistException"},
539
- {"shape":"CommitIdRequiredException"},
540
- {"shape":"InvalidCommitIdException"},
541
- {"shape":"CommitIdDoesNotExistException"},
542
- {"shape":"EncryptionIntegrityChecksFailedException"},
543
- {"shape":"EncryptionKeyAccessDeniedException"},
544
- {"shape":"EncryptionKeyDisabledException"},
545
- {"shape":"EncryptionKeyNotFoundException"},
546
- {"shape":"EncryptionKeyUnavailableException"}
547
- ]
548
- },
549
- "GetDifferences":{
550
- "name":"GetDifferences",
551
- "http":{
552
- "method":"POST",
553
- "requestUri":"/"
554
- },
555
- "input":{"shape":"GetDifferencesInput"},
556
- "output":{"shape":"GetDifferencesOutput"},
557
- "errors":[
558
- {"shape":"RepositoryNameRequiredException"},
559
- {"shape":"RepositoryDoesNotExistException"},
560
- {"shape":"InvalidRepositoryNameException"},
561
- {"shape":"InvalidContinuationTokenException"},
562
- {"shape":"InvalidMaxResultsException"},
563
- {"shape":"InvalidCommitIdException"},
564
- {"shape":"CommitRequiredException"},
565
- {"shape":"InvalidCommitException"},
566
- {"shape":"CommitDoesNotExistException"},
567
- {"shape":"InvalidPathException"},
568
- {"shape":"PathDoesNotExistException"},
569
- {"shape":"EncryptionIntegrityChecksFailedException"},
570
- {"shape":"EncryptionKeyAccessDeniedException"},
571
- {"shape":"EncryptionKeyDisabledException"},
572
- {"shape":"EncryptionKeyNotFoundException"},
573
- {"shape":"EncryptionKeyUnavailableException"}
574
- ]
575
- },
576
- "GetFile":{
577
- "name":"GetFile",
578
- "http":{
579
- "method":"POST",
580
- "requestUri":"/"
581
- },
582
- "input":{"shape":"GetFileInput"},
583
- "output":{"shape":"GetFileOutput"},
584
- "errors":[
585
- {"shape":"RepositoryNameRequiredException"},
586
- {"shape":"InvalidRepositoryNameException"},
587
- {"shape":"RepositoryDoesNotExistException"},
588
- {"shape":"InvalidCommitException"},
589
- {"shape":"CommitDoesNotExistException"},
590
- {"shape":"PathRequiredException"},
591
- {"shape":"InvalidPathException"},
592
- {"shape":"FileDoesNotExistException"},
593
- {"shape":"EncryptionIntegrityChecksFailedException"},
594
- {"shape":"EncryptionKeyAccessDeniedException"},
595
- {"shape":"EncryptionKeyDisabledException"},
596
- {"shape":"EncryptionKeyNotFoundException"},
597
- {"shape":"EncryptionKeyUnavailableException"},
598
- {"shape":"FileTooLargeException"}
599
- ]
600
- },
601
- "GetFolder":{
602
- "name":"GetFolder",
603
- "http":{
604
- "method":"POST",
605
- "requestUri":"/"
606
- },
607
- "input":{"shape":"GetFolderInput"},
608
- "output":{"shape":"GetFolderOutput"},
609
- "errors":[
610
- {"shape":"RepositoryNameRequiredException"},
611
- {"shape":"InvalidRepositoryNameException"},
612
- {"shape":"RepositoryDoesNotExistException"},
613
- {"shape":"InvalidCommitException"},
614
- {"shape":"CommitDoesNotExistException"},
615
- {"shape":"PathRequiredException"},
616
- {"shape":"InvalidPathException"},
617
- {"shape":"FolderDoesNotExistException"},
618
- {"shape":"EncryptionIntegrityChecksFailedException"},
619
- {"shape":"EncryptionKeyAccessDeniedException"},
620
- {"shape":"EncryptionKeyDisabledException"},
621
- {"shape":"EncryptionKeyNotFoundException"},
622
- {"shape":"EncryptionKeyUnavailableException"}
623
- ]
624
- },
625
- "GetMergeCommit":{
626
- "name":"GetMergeCommit",
627
- "http":{
628
- "method":"POST",
629
- "requestUri":"/"
630
- },
631
- "input":{"shape":"GetMergeCommitInput"},
632
- "output":{"shape":"GetMergeCommitOutput"},
633
- "errors":[
634
- {"shape":"RepositoryNameRequiredException"},
635
- {"shape":"InvalidRepositoryNameException"},
636
- {"shape":"RepositoryDoesNotExistException"},
637
- {"shape":"CommitRequiredException"},
638
- {"shape":"InvalidCommitException"},
639
- {"shape":"CommitDoesNotExistException"},
640
- {"shape":"InvalidConflictDetailLevelException"},
641
- {"shape":"InvalidConflictResolutionStrategyException"},
642
- {"shape":"EncryptionIntegrityChecksFailedException"},
643
- {"shape":"EncryptionKeyAccessDeniedException"},
644
- {"shape":"EncryptionKeyDisabledException"},
645
- {"shape":"EncryptionKeyNotFoundException"},
646
- {"shape":"EncryptionKeyUnavailableException"}
647
- ]
648
- },
649
- "GetMergeConflicts":{
650
- "name":"GetMergeConflicts",
651
- "http":{
652
- "method":"POST",
653
- "requestUri":"/"
654
- },
655
- "input":{"shape":"GetMergeConflictsInput"},
656
- "output":{"shape":"GetMergeConflictsOutput"},
657
- "errors":[
658
- {"shape":"RepositoryNameRequiredException"},
659
- {"shape":"InvalidRepositoryNameException"},
660
- {"shape":"RepositoryDoesNotExistException"},
661
- {"shape":"MergeOptionRequiredException"},
662
- {"shape":"InvalidMergeOptionException"},
663
- {"shape":"InvalidContinuationTokenException"},
664
- {"shape":"CommitRequiredException"},
665
- {"shape":"CommitDoesNotExistException"},
666
- {"shape":"InvalidCommitException"},
667
- {"shape":"TipsDivergenceExceededException"},
668
- {"shape":"InvalidMaxConflictFilesException"},
669
- {"shape":"InvalidConflictDetailLevelException"},
670
- {"shape":"InvalidDestinationCommitSpecifierException"},
671
- {"shape":"InvalidSourceCommitSpecifierException"},
672
- {"shape":"InvalidConflictResolutionStrategyException"},
673
- {"shape":"MaximumFileContentToLoadExceededException"},
674
- {"shape":"MaximumItemsToCompareExceededException"},
675
- {"shape":"EncryptionIntegrityChecksFailedException"},
676
- {"shape":"EncryptionKeyAccessDeniedException"},
677
- {"shape":"EncryptionKeyDisabledException"},
678
- {"shape":"EncryptionKeyNotFoundException"},
679
- {"shape":"EncryptionKeyUnavailableException"}
680
- ]
681
- },
682
- "GetMergeOptions":{
683
- "name":"GetMergeOptions",
684
- "http":{
685
- "method":"POST",
686
- "requestUri":"/"
687
- },
688
- "input":{"shape":"GetMergeOptionsInput"},
689
- "output":{"shape":"GetMergeOptionsOutput"},
690
- "errors":[
691
- {"shape":"RepositoryNameRequiredException"},
692
- {"shape":"InvalidRepositoryNameException"},
693
- {"shape":"RepositoryDoesNotExistException"},
694
- {"shape":"CommitRequiredException"},
695
- {"shape":"CommitDoesNotExistException"},
696
- {"shape":"InvalidCommitException"},
697
- {"shape":"TipsDivergenceExceededException"},
698
- {"shape":"InvalidConflictDetailLevelException"},
699
- {"shape":"InvalidConflictResolutionStrategyException"},
700
- {"shape":"MaximumFileContentToLoadExceededException"},
701
- {"shape":"MaximumItemsToCompareExceededException"},
702
- {"shape":"EncryptionIntegrityChecksFailedException"},
703
- {"shape":"EncryptionKeyAccessDeniedException"},
704
- {"shape":"EncryptionKeyDisabledException"},
705
- {"shape":"EncryptionKeyNotFoundException"},
706
- {"shape":"EncryptionKeyUnavailableException"}
707
- ]
708
- },
709
- "GetPullRequest":{
710
- "name":"GetPullRequest",
711
- "http":{
712
- "method":"POST",
713
- "requestUri":"/"
714
- },
715
- "input":{"shape":"GetPullRequestInput"},
716
- "output":{"shape":"GetPullRequestOutput"},
717
- "errors":[
718
- {"shape":"PullRequestDoesNotExistException"},
719
- {"shape":"InvalidPullRequestIdException"},
720
- {"shape":"PullRequestIdRequiredException"},
721
- {"shape":"EncryptionIntegrityChecksFailedException"},
722
- {"shape":"EncryptionKeyAccessDeniedException"},
723
- {"shape":"EncryptionKeyDisabledException"},
724
- {"shape":"EncryptionKeyNotFoundException"},
725
- {"shape":"EncryptionKeyUnavailableException"}
726
- ]
727
- },
728
- "GetRepository":{
729
- "name":"GetRepository",
730
- "http":{
731
- "method":"POST",
732
- "requestUri":"/"
733
- },
734
- "input":{"shape":"GetRepositoryInput"},
735
- "output":{"shape":"GetRepositoryOutput"},
736
- "errors":[
737
- {"shape":"RepositoryNameRequiredException"},
738
- {"shape":"RepositoryDoesNotExistException"},
739
- {"shape":"InvalidRepositoryNameException"},
740
- {"shape":"EncryptionIntegrityChecksFailedException"},
741
- {"shape":"EncryptionKeyAccessDeniedException"},
742
- {"shape":"EncryptionKeyDisabledException"},
743
- {"shape":"EncryptionKeyNotFoundException"},
744
- {"shape":"EncryptionKeyUnavailableException"}
745
- ]
746
- },
747
- "GetRepositoryTriggers":{
748
- "name":"GetRepositoryTriggers",
749
- "http":{
750
- "method":"POST",
751
- "requestUri":"/"
752
- },
753
- "input":{"shape":"GetRepositoryTriggersInput"},
754
- "output":{"shape":"GetRepositoryTriggersOutput"},
755
- "errors":[
756
- {"shape":"RepositoryNameRequiredException"},
757
- {"shape":"InvalidRepositoryNameException"},
758
- {"shape":"RepositoryDoesNotExistException"},
759
- {"shape":"EncryptionIntegrityChecksFailedException"},
760
- {"shape":"EncryptionKeyAccessDeniedException"},
761
- {"shape":"EncryptionKeyDisabledException"},
762
- {"shape":"EncryptionKeyNotFoundException"},
763
- {"shape":"EncryptionKeyUnavailableException"}
764
- ]
765
- },
766
- "ListBranches":{
767
- "name":"ListBranches",
768
- "http":{
769
- "method":"POST",
770
- "requestUri":"/"
771
- },
772
- "input":{"shape":"ListBranchesInput"},
773
- "output":{"shape":"ListBranchesOutput"},
774
- "errors":[
775
- {"shape":"RepositoryNameRequiredException"},
776
- {"shape":"RepositoryDoesNotExistException"},
777
- {"shape":"InvalidRepositoryNameException"},
778
- {"shape":"EncryptionIntegrityChecksFailedException"},
779
- {"shape":"EncryptionKeyAccessDeniedException"},
780
- {"shape":"EncryptionKeyDisabledException"},
781
- {"shape":"EncryptionKeyNotFoundException"},
782
- {"shape":"EncryptionKeyUnavailableException"},
783
- {"shape":"InvalidContinuationTokenException"}
784
- ]
785
- },
786
- "ListPullRequests":{
787
- "name":"ListPullRequests",
788
- "http":{
789
- "method":"POST",
790
- "requestUri":"/"
791
- },
792
- "input":{"shape":"ListPullRequestsInput"},
793
- "output":{"shape":"ListPullRequestsOutput"},
794
- "errors":[
795
- {"shape":"InvalidPullRequestStatusException"},
796
- {"shape":"InvalidAuthorArnException"},
797
- {"shape":"AuthorDoesNotExistException"},
798
- {"shape":"RepositoryNameRequiredException"},
799
- {"shape":"InvalidRepositoryNameException"},
800
- {"shape":"RepositoryDoesNotExistException"},
801
- {"shape":"InvalidMaxResultsException"},
802
- {"shape":"InvalidContinuationTokenException"},
803
- {"shape":"EncryptionIntegrityChecksFailedException"},
804
- {"shape":"EncryptionKeyAccessDeniedException"},
805
- {"shape":"EncryptionKeyDisabledException"},
806
- {"shape":"EncryptionKeyNotFoundException"},
807
- {"shape":"EncryptionKeyUnavailableException"}
808
- ]
809
- },
810
- "ListRepositories":{
811
- "name":"ListRepositories",
812
- "http":{
813
- "method":"POST",
814
- "requestUri":"/"
815
- },
816
- "input":{"shape":"ListRepositoriesInput"},
817
- "output":{"shape":"ListRepositoriesOutput"},
818
- "errors":[
819
- {"shape":"InvalidSortByException"},
820
- {"shape":"InvalidOrderException"},
821
- {"shape":"InvalidContinuationTokenException"}
822
- ]
823
- },
824
- "ListTagsForResource":{
825
- "name":"ListTagsForResource",
826
- "http":{
827
- "method":"POST",
828
- "requestUri":"/"
829
- },
830
- "input":{"shape":"ListTagsForResourceInput"},
831
- "output":{"shape":"ListTagsForResourceOutput"},
832
- "errors":[
833
- {"shape":"RepositoryDoesNotExistException"},
834
- {"shape":"InvalidRepositoryNameException"},
835
- {"shape":"ResourceArnRequiredException"},
836
- {"shape":"InvalidResourceArnException"}
837
- ]
838
- },
839
- "MergeBranchesByFastForward":{
840
- "name":"MergeBranchesByFastForward",
841
- "http":{
842
- "method":"POST",
843
- "requestUri":"/"
844
- },
845
- "input":{"shape":"MergeBranchesByFastForwardInput"},
846
- "output":{"shape":"MergeBranchesByFastForwardOutput"},
847
- "errors":[
848
- {"shape":"RepositoryNameRequiredException"},
849
- {"shape":"InvalidRepositoryNameException"},
850
- {"shape":"RepositoryDoesNotExistException"},
851
- {"shape":"TipsDivergenceExceededException"},
852
- {"shape":"CommitRequiredException"},
853
- {"shape":"InvalidCommitException"},
854
- {"shape":"CommitDoesNotExistException"},
855
- {"shape":"InvalidTargetBranchException"},
856
- {"shape":"InvalidBranchNameException"},
857
- {"shape":"BranchNameRequiredException"},
858
- {"shape":"BranchNameIsTagNameException"},
859
- {"shape":"BranchDoesNotExistException"},
860
- {"shape":"ManualMergeRequiredException"},
861
- {"shape":"ConcurrentReferenceUpdateException"},
862
- {"shape":"EncryptionIntegrityChecksFailedException"},
863
- {"shape":"EncryptionKeyAccessDeniedException"},
864
- {"shape":"EncryptionKeyDisabledException"},
865
- {"shape":"EncryptionKeyNotFoundException"},
866
- {"shape":"EncryptionKeyUnavailableException"}
867
- ]
868
- },
869
- "MergeBranchesBySquash":{
870
- "name":"MergeBranchesBySquash",
871
- "http":{
872
- "method":"POST",
873
- "requestUri":"/"
874
- },
875
- "input":{"shape":"MergeBranchesBySquashInput"},
876
- "output":{"shape":"MergeBranchesBySquashOutput"},
877
- "errors":[
878
- {"shape":"RepositoryNameRequiredException"},
879
- {"shape":"InvalidRepositoryNameException"},
880
- {"shape":"RepositoryDoesNotExistException"},
881
- {"shape":"TipsDivergenceExceededException"},
882
- {"shape":"CommitRequiredException"},
883
- {"shape":"InvalidCommitException"},
884
- {"shape":"CommitDoesNotExistException"},
885
- {"shape":"InvalidTargetBranchException"},
886
- {"shape":"InvalidBranchNameException"},
887
- {"shape":"BranchNameRequiredException"},
888
- {"shape":"BranchNameIsTagNameException"},
889
- {"shape":"BranchDoesNotExistException"},
890
- {"shape":"ManualMergeRequiredException"},
891
- {"shape":"InvalidConflictDetailLevelException"},
892
- {"shape":"InvalidConflictResolutionStrategyException"},
893
- {"shape":"InvalidConflictResolutionException"},
894
- {"shape":"MaximumConflictResolutionEntriesExceededException"},
895
- {"shape":"MultipleConflictResolutionEntriesException"},
896
- {"shape":"ReplacementTypeRequiredException"},
897
- {"shape":"InvalidReplacementTypeException"},
898
- {"shape":"ReplacementContentRequiredException"},
899
- {"shape":"InvalidReplacementContentException"},
900
- {"shape":"PathRequiredException"},
901
- {"shape":"InvalidPathException"},
902
- {"shape":"FileContentSizeLimitExceededException"},
903
- {"shape":"FolderContentSizeLimitExceededException"},
904
- {"shape":"MaximumFileContentToLoadExceededException"},
905
- {"shape":"MaximumItemsToCompareExceededException"},
906
- {"shape":"FileModeRequiredException"},
907
- {"shape":"InvalidFileModeException"},
908
- {"shape":"NameLengthExceededException"},
909
- {"shape":"InvalidEmailException"},
910
- {"shape":"CommitMessageLengthExceededException"},
911
- {"shape":"ConcurrentReferenceUpdateException"},
912
- {"shape":"EncryptionIntegrityChecksFailedException"},
913
- {"shape":"EncryptionKeyAccessDeniedException"},
914
- {"shape":"EncryptionKeyDisabledException"},
915
- {"shape":"EncryptionKeyNotFoundException"},
916
- {"shape":"EncryptionKeyUnavailableException"}
917
- ]
918
- },
919
- "MergeBranchesByThreeWay":{
920
- "name":"MergeBranchesByThreeWay",
921
- "http":{
922
- "method":"POST",
923
- "requestUri":"/"
924
- },
925
- "input":{"shape":"MergeBranchesByThreeWayInput"},
926
- "output":{"shape":"MergeBranchesByThreeWayOutput"},
927
- "errors":[
928
- {"shape":"RepositoryNameRequiredException"},
929
- {"shape":"InvalidRepositoryNameException"},
930
- {"shape":"RepositoryDoesNotExistException"},
931
- {"shape":"TipsDivergenceExceededException"},
932
- {"shape":"CommitRequiredException"},
933
- {"shape":"InvalidCommitException"},
934
- {"shape":"CommitDoesNotExistException"},
935
- {"shape":"InvalidTargetBranchException"},
936
- {"shape":"InvalidBranchNameException"},
937
- {"shape":"BranchNameRequiredException"},
938
- {"shape":"BranchNameIsTagNameException"},
939
- {"shape":"BranchDoesNotExistException"},
940
- {"shape":"ManualMergeRequiredException"},
941
- {"shape":"ConcurrentReferenceUpdateException"},
942
- {"shape":"InvalidConflictDetailLevelException"},
943
- {"shape":"InvalidConflictResolutionStrategyException"},
944
- {"shape":"InvalidConflictResolutionException"},
945
- {"shape":"MaximumConflictResolutionEntriesExceededException"},
946
- {"shape":"MultipleConflictResolutionEntriesException"},
947
- {"shape":"ReplacementTypeRequiredException"},
948
- {"shape":"InvalidReplacementTypeException"},
949
- {"shape":"ReplacementContentRequiredException"},
950
- {"shape":"InvalidReplacementContentException"},
951
- {"shape":"PathRequiredException"},
952
- {"shape":"InvalidPathException"},
953
- {"shape":"FileContentSizeLimitExceededException"},
954
- {"shape":"FolderContentSizeLimitExceededException"},
955
- {"shape":"MaximumFileContentToLoadExceededException"},
956
- {"shape":"MaximumItemsToCompareExceededException"},
957
- {"shape":"FileModeRequiredException"},
958
- {"shape":"InvalidFileModeException"},
959
- {"shape":"NameLengthExceededException"},
960
- {"shape":"InvalidEmailException"},
961
- {"shape":"CommitMessageLengthExceededException"},
962
- {"shape":"EncryptionIntegrityChecksFailedException"},
963
- {"shape":"EncryptionKeyAccessDeniedException"},
964
- {"shape":"EncryptionKeyDisabledException"},
965
- {"shape":"EncryptionKeyNotFoundException"},
966
- {"shape":"EncryptionKeyUnavailableException"}
967
- ]
968
- },
969
- "MergePullRequestByFastForward":{
970
- "name":"MergePullRequestByFastForward",
971
- "http":{
972
- "method":"POST",
973
- "requestUri":"/"
974
- },
975
- "input":{"shape":"MergePullRequestByFastForwardInput"},
976
- "output":{"shape":"MergePullRequestByFastForwardOutput"},
977
- "errors":[
978
- {"shape":"ManualMergeRequiredException"},
979
- {"shape":"PullRequestAlreadyClosedException"},
980
- {"shape":"PullRequestDoesNotExistException"},
981
- {"shape":"InvalidPullRequestIdException"},
982
- {"shape":"PullRequestIdRequiredException"},
983
- {"shape":"TipOfSourceReferenceIsDifferentException"},
984
- {"shape":"ReferenceDoesNotExistException"},
985
- {"shape":"InvalidCommitIdException"},
986
- {"shape":"RepositoryNotAssociatedWithPullRequestException"},
987
- {"shape":"RepositoryNameRequiredException"},
988
- {"shape":"InvalidRepositoryNameException"},
989
- {"shape":"RepositoryDoesNotExistException"},
990
- {"shape":"ConcurrentReferenceUpdateException"},
991
- {"shape":"EncryptionIntegrityChecksFailedException"},
992
- {"shape":"EncryptionKeyAccessDeniedException"},
993
- {"shape":"EncryptionKeyDisabledException"},
994
- {"shape":"EncryptionKeyNotFoundException"},
995
- {"shape":"EncryptionKeyUnavailableException"}
996
- ]
997
- },
998
- "MergePullRequestBySquash":{
999
- "name":"MergePullRequestBySquash",
1000
- "http":{
1001
- "method":"POST",
1002
- "requestUri":"/"
1003
- },
1004
- "input":{"shape":"MergePullRequestBySquashInput"},
1005
- "output":{"shape":"MergePullRequestBySquashOutput"},
1006
- "errors":[
1007
- {"shape":"PullRequestAlreadyClosedException"},
1008
- {"shape":"PullRequestDoesNotExistException"},
1009
- {"shape":"PullRequestIdRequiredException"},
1010
- {"shape":"InvalidPullRequestIdException"},
1011
- {"shape":"InvalidCommitIdException"},
1012
- {"shape":"ManualMergeRequiredException"},
1013
- {"shape":"TipOfSourceReferenceIsDifferentException"},
1014
- {"shape":"TipsDivergenceExceededException"},
1015
- {"shape":"NameLengthExceededException"},
1016
- {"shape":"InvalidEmailException"},
1017
- {"shape":"CommitMessageLengthExceededException"},
1018
- {"shape":"InvalidConflictDetailLevelException"},
1019
- {"shape":"InvalidConflictResolutionStrategyException"},
1020
- {"shape":"InvalidConflictResolutionException"},
1021
- {"shape":"ReplacementTypeRequiredException"},
1022
- {"shape":"InvalidReplacementTypeException"},
1023
- {"shape":"MultipleConflictResolutionEntriesException"},
1024
- {"shape":"ReplacementContentRequiredException"},
1025
- {"shape":"MaximumConflictResolutionEntriesExceededException"},
1026
- {"shape":"ConcurrentReferenceUpdateException"},
1027
- {"shape":"PathRequiredException"},
1028
- {"shape":"InvalidPathException"},
1029
- {"shape":"InvalidFileModeException"},
1030
- {"shape":"InvalidReplacementContentException"},
1031
- {"shape":"FileContentSizeLimitExceededException"},
1032
- {"shape":"FolderContentSizeLimitExceededException"},
1033
- {"shape":"MaximumFileContentToLoadExceededException"},
1034
- {"shape":"MaximumItemsToCompareExceededException"},
1035
- {"shape":"RepositoryNameRequiredException"},
1036
- {"shape":"InvalidRepositoryNameException"},
1037
- {"shape":"RepositoryDoesNotExistException"},
1038
- {"shape":"RepositoryNotAssociatedWithPullRequestException"},
1039
- {"shape":"EncryptionIntegrityChecksFailedException"},
1040
- {"shape":"EncryptionKeyAccessDeniedException"},
1041
- {"shape":"EncryptionKeyDisabledException"},
1042
- {"shape":"EncryptionKeyNotFoundException"},
1043
- {"shape":"EncryptionKeyUnavailableException"}
1044
- ]
1045
- },
1046
- "MergePullRequestByThreeWay":{
1047
- "name":"MergePullRequestByThreeWay",
1048
- "http":{
1049
- "method":"POST",
1050
- "requestUri":"/"
1051
- },
1052
- "input":{"shape":"MergePullRequestByThreeWayInput"},
1053
- "output":{"shape":"MergePullRequestByThreeWayOutput"},
1054
- "errors":[
1055
- {"shape":"PullRequestAlreadyClosedException"},
1056
- {"shape":"PullRequestDoesNotExistException"},
1057
- {"shape":"PullRequestIdRequiredException"},
1058
- {"shape":"InvalidPullRequestIdException"},
1059
- {"shape":"InvalidCommitIdException"},
1060
- {"shape":"ManualMergeRequiredException"},
1061
- {"shape":"TipOfSourceReferenceIsDifferentException"},
1062
- {"shape":"TipsDivergenceExceededException"},
1063
- {"shape":"NameLengthExceededException"},
1064
- {"shape":"InvalidEmailException"},
1065
- {"shape":"CommitMessageLengthExceededException"},
1066
- {"shape":"InvalidConflictDetailLevelException"},
1067
- {"shape":"InvalidConflictResolutionStrategyException"},
1068
- {"shape":"InvalidConflictResolutionException"},
1069
- {"shape":"ReplacementTypeRequiredException"},
1070
- {"shape":"InvalidReplacementTypeException"},
1071
- {"shape":"MultipleConflictResolutionEntriesException"},
1072
- {"shape":"ReplacementContentRequiredException"},
1073
- {"shape":"MaximumConflictResolutionEntriesExceededException"},
1074
- {"shape":"PathRequiredException"},
1075
- {"shape":"InvalidPathException"},
1076
- {"shape":"InvalidFileModeException"},
1077
- {"shape":"InvalidReplacementContentException"},
1078
- {"shape":"FileContentSizeLimitExceededException"},
1079
- {"shape":"FolderContentSizeLimitExceededException"},
1080
- {"shape":"MaximumFileContentToLoadExceededException"},
1081
- {"shape":"MaximumItemsToCompareExceededException"},
1082
- {"shape":"RepositoryNameRequiredException"},
1083
- {"shape":"InvalidRepositoryNameException"},
1084
- {"shape":"RepositoryDoesNotExistException"},
1085
- {"shape":"RepositoryNotAssociatedWithPullRequestException"},
1086
- {"shape":"ConcurrentReferenceUpdateException"},
1087
- {"shape":"EncryptionIntegrityChecksFailedException"},
1088
- {"shape":"EncryptionKeyAccessDeniedException"},
1089
- {"shape":"EncryptionKeyDisabledException"},
1090
- {"shape":"EncryptionKeyNotFoundException"},
1091
- {"shape":"EncryptionKeyUnavailableException"}
1092
- ]
1093
- },
1094
- "PostCommentForComparedCommit":{
1095
- "name":"PostCommentForComparedCommit",
1096
- "http":{
1097
- "method":"POST",
1098
- "requestUri":"/"
1099
- },
1100
- "input":{"shape":"PostCommentForComparedCommitInput"},
1101
- "output":{"shape":"PostCommentForComparedCommitOutput"},
1102
- "errors":[
1103
- {"shape":"RepositoryNameRequiredException"},
1104
- {"shape":"RepositoryDoesNotExistException"},
1105
- {"shape":"InvalidRepositoryNameException"},
1106
- {"shape":"ClientRequestTokenRequiredException"},
1107
- {"shape":"InvalidClientRequestTokenException"},
1108
- {"shape":"IdempotencyParameterMismatchException"},
1109
- {"shape":"CommentContentRequiredException"},
1110
- {"shape":"CommentContentSizeLimitExceededException"},
1111
- {"shape":"InvalidFileLocationException"},
1112
- {"shape":"InvalidRelativeFileVersionEnumException"},
1113
- {"shape":"PathRequiredException"},
1114
- {"shape":"InvalidFilePositionException"},
1115
- {"shape":"CommitIdRequiredException"},
1116
- {"shape":"InvalidCommitIdException"},
1117
- {"shape":"EncryptionIntegrityChecksFailedException"},
1118
- {"shape":"EncryptionKeyAccessDeniedException"},
1119
- {"shape":"EncryptionKeyDisabledException"},
1120
- {"shape":"EncryptionKeyNotFoundException"},
1121
- {"shape":"EncryptionKeyUnavailableException"},
1122
- {"shape":"BeforeCommitIdAndAfterCommitIdAreSameException"},
1123
- {"shape":"CommitDoesNotExistException"},
1124
- {"shape":"InvalidPathException"},
1125
- {"shape":"PathDoesNotExistException"}
1126
- ],
1127
- "idempotent":true
1128
- },
1129
- "PostCommentForPullRequest":{
1130
- "name":"PostCommentForPullRequest",
1131
- "http":{
1132
- "method":"POST",
1133
- "requestUri":"/"
1134
- },
1135
- "input":{"shape":"PostCommentForPullRequestInput"},
1136
- "output":{"shape":"PostCommentForPullRequestOutput"},
1137
- "errors":[
1138
- {"shape":"PullRequestDoesNotExistException"},
1139
- {"shape":"InvalidPullRequestIdException"},
1140
- {"shape":"PullRequestIdRequiredException"},
1141
- {"shape":"RepositoryNotAssociatedWithPullRequestException"},
1142
- {"shape":"RepositoryNameRequiredException"},
1143
- {"shape":"RepositoryDoesNotExistException"},
1144
- {"shape":"InvalidRepositoryNameException"},
1145
- {"shape":"ClientRequestTokenRequiredException"},
1146
- {"shape":"InvalidClientRequestTokenException"},
1147
- {"shape":"IdempotencyParameterMismatchException"},
1148
- {"shape":"CommentContentRequiredException"},
1149
- {"shape":"CommentContentSizeLimitExceededException"},
1150
- {"shape":"InvalidFileLocationException"},
1151
- {"shape":"InvalidRelativeFileVersionEnumException"},
1152
- {"shape":"PathRequiredException"},
1153
- {"shape":"InvalidFilePositionException"},
1154
- {"shape":"CommitIdRequiredException"},
1155
- {"shape":"InvalidCommitIdException"},
1156
- {"shape":"EncryptionIntegrityChecksFailedException"},
1157
- {"shape":"EncryptionKeyAccessDeniedException"},
1158
- {"shape":"EncryptionKeyDisabledException"},
1159
- {"shape":"EncryptionKeyNotFoundException"},
1160
- {"shape":"EncryptionKeyUnavailableException"},
1161
- {"shape":"CommitDoesNotExistException"},
1162
- {"shape":"InvalidPathException"},
1163
- {"shape":"PathDoesNotExistException"},
1164
- {"shape":"PathRequiredException"},
1165
- {"shape":"BeforeCommitIdAndAfterCommitIdAreSameException"}
1166
- ],
1167
- "idempotent":true
1168
- },
1169
- "PostCommentReply":{
1170
- "name":"PostCommentReply",
1171
- "http":{
1172
- "method":"POST",
1173
- "requestUri":"/"
1174
- },
1175
- "input":{"shape":"PostCommentReplyInput"},
1176
- "output":{"shape":"PostCommentReplyOutput"},
1177
- "errors":[
1178
- {"shape":"ClientRequestTokenRequiredException"},
1179
- {"shape":"InvalidClientRequestTokenException"},
1180
- {"shape":"IdempotencyParameterMismatchException"},
1181
- {"shape":"CommentContentRequiredException"},
1182
- {"shape":"CommentContentSizeLimitExceededException"},
1183
- {"shape":"CommentDoesNotExistException"},
1184
- {"shape":"CommentIdRequiredException"},
1185
- {"shape":"InvalidCommentIdException"}
1186
- ],
1187
- "idempotent":true
1188
- },
1189
- "PutFile":{
1190
- "name":"PutFile",
1191
- "http":{
1192
- "method":"POST",
1193
- "requestUri":"/"
1194
- },
1195
- "input":{"shape":"PutFileInput"},
1196
- "output":{"shape":"PutFileOutput"},
1197
- "errors":[
1198
- {"shape":"RepositoryNameRequiredException"},
1199
- {"shape":"InvalidRepositoryNameException"},
1200
- {"shape":"RepositoryDoesNotExistException"},
1201
- {"shape":"ParentCommitIdRequiredException"},
1202
- {"shape":"InvalidParentCommitIdException"},
1203
- {"shape":"ParentCommitDoesNotExistException"},
1204
- {"shape":"ParentCommitIdOutdatedException"},
1205
- {"shape":"FileContentRequiredException"},
1206
- {"shape":"FileContentSizeLimitExceededException"},
1207
- {"shape":"FolderContentSizeLimitExceededException"},
1208
- {"shape":"PathRequiredException"},
1209
- {"shape":"InvalidPathException"},
1210
- {"shape":"BranchNameRequiredException"},
1211
- {"shape":"InvalidBranchNameException"},
1212
- {"shape":"BranchDoesNotExistException"},
1213
- {"shape":"BranchNameIsTagNameException"},
1214
- {"shape":"InvalidFileModeException"},
1215
- {"shape":"NameLengthExceededException"},
1216
- {"shape":"InvalidEmailException"},
1217
- {"shape":"CommitMessageLengthExceededException"},
1218
- {"shape":"InvalidDeletionParameterException"},
1219
- {"shape":"EncryptionIntegrityChecksFailedException"},
1220
- {"shape":"EncryptionKeyAccessDeniedException"},
1221
- {"shape":"EncryptionKeyDisabledException"},
1222
- {"shape":"EncryptionKeyNotFoundException"},
1223
- {"shape":"EncryptionKeyUnavailableException"},
1224
- {"shape":"SameFileContentException"},
1225
- {"shape":"FileNameConflictsWithDirectoryNameException"},
1226
- {"shape":"DirectoryNameConflictsWithFileNameException"},
1227
- {"shape":"FilePathConflictsWithSubmodulePathException"}
1228
- ]
1229
- },
1230
- "PutRepositoryTriggers":{
1231
- "name":"PutRepositoryTriggers",
1232
- "http":{
1233
- "method":"POST",
1234
- "requestUri":"/"
1235
- },
1236
- "input":{"shape":"PutRepositoryTriggersInput"},
1237
- "output":{"shape":"PutRepositoryTriggersOutput"},
1238
- "errors":[
1239
- {"shape":"RepositoryDoesNotExistException"},
1240
- {"shape":"RepositoryNameRequiredException"},
1241
- {"shape":"InvalidRepositoryNameException"},
1242
- {"shape":"RepositoryTriggersListRequiredException"},
1243
- {"shape":"MaximumRepositoryTriggersExceededException"},
1244
- {"shape":"InvalidRepositoryTriggerNameException"},
1245
- {"shape":"InvalidRepositoryTriggerDestinationArnException"},
1246
- {"shape":"InvalidRepositoryTriggerRegionException"},
1247
- {"shape":"InvalidRepositoryTriggerCustomDataException"},
1248
- {"shape":"MaximumBranchesExceededException"},
1249
- {"shape":"InvalidRepositoryTriggerBranchNameException"},
1250
- {"shape":"InvalidRepositoryTriggerEventsException"},
1251
- {"shape":"RepositoryTriggerNameRequiredException"},
1252
- {"shape":"RepositoryTriggerDestinationArnRequiredException"},
1253
- {"shape":"RepositoryTriggerBranchNameListRequiredException"},
1254
- {"shape":"RepositoryTriggerEventsListRequiredException"},
1255
- {"shape":"EncryptionIntegrityChecksFailedException"},
1256
- {"shape":"EncryptionKeyAccessDeniedException"},
1257
- {"shape":"EncryptionKeyDisabledException"},
1258
- {"shape":"EncryptionKeyNotFoundException"},
1259
- {"shape":"EncryptionKeyUnavailableException"}
1260
- ]
1261
- },
1262
- "TagResource":{
1263
- "name":"TagResource",
1264
- "http":{
1265
- "method":"POST",
1266
- "requestUri":"/"
1267
- },
1268
- "input":{"shape":"TagResourceInput"},
1269
- "errors":[
1270
- {"shape":"RepositoryDoesNotExistException"},
1271
- {"shape":"InvalidRepositoryNameException"},
1272
- {"shape":"ResourceArnRequiredException"},
1273
- {"shape":"InvalidResourceArnException"},
1274
- {"shape":"TagsMapRequiredException"},
1275
- {"shape":"InvalidTagsMapException"},
1276
- {"shape":"TooManyTagsException"},
1277
- {"shape":"InvalidSystemTagUsageException"},
1278
- {"shape":"TagPolicyException"}
1279
- ]
1280
- },
1281
- "TestRepositoryTriggers":{
1282
- "name":"TestRepositoryTriggers",
1283
- "http":{
1284
- "method":"POST",
1285
- "requestUri":"/"
1286
- },
1287
- "input":{"shape":"TestRepositoryTriggersInput"},
1288
- "output":{"shape":"TestRepositoryTriggersOutput"},
1289
- "errors":[
1290
- {"shape":"RepositoryDoesNotExistException"},
1291
- {"shape":"RepositoryNameRequiredException"},
1292
- {"shape":"InvalidRepositoryNameException"},
1293
- {"shape":"RepositoryTriggersListRequiredException"},
1294
- {"shape":"MaximumRepositoryTriggersExceededException"},
1295
- {"shape":"InvalidRepositoryTriggerNameException"},
1296
- {"shape":"InvalidRepositoryTriggerDestinationArnException"},
1297
- {"shape":"InvalidRepositoryTriggerRegionException"},
1298
- {"shape":"InvalidRepositoryTriggerCustomDataException"},
1299
- {"shape":"MaximumBranchesExceededException"},
1300
- {"shape":"InvalidRepositoryTriggerBranchNameException"},
1301
- {"shape":"InvalidRepositoryTriggerEventsException"},
1302
- {"shape":"RepositoryTriggerNameRequiredException"},
1303
- {"shape":"RepositoryTriggerDestinationArnRequiredException"},
1304
- {"shape":"RepositoryTriggerBranchNameListRequiredException"},
1305
- {"shape":"RepositoryTriggerEventsListRequiredException"},
1306
- {"shape":"EncryptionIntegrityChecksFailedException"},
1307
- {"shape":"EncryptionKeyAccessDeniedException"},
1308
- {"shape":"EncryptionKeyDisabledException"},
1309
- {"shape":"EncryptionKeyNotFoundException"},
1310
- {"shape":"EncryptionKeyUnavailableException"}
1311
- ]
1312
- },
1313
- "UntagResource":{
1314
- "name":"UntagResource",
1315
- "http":{
1316
- "method":"POST",
1317
- "requestUri":"/"
1318
- },
1319
- "input":{"shape":"UntagResourceInput"},
1320
- "errors":[
1321
- {"shape":"RepositoryDoesNotExistException"},
1322
- {"shape":"InvalidRepositoryNameException"},
1323
- {"shape":"ResourceArnRequiredException"},
1324
- {"shape":"InvalidResourceArnException"},
1325
- {"shape":"TagKeysListRequiredException"},
1326
- {"shape":"InvalidTagKeysListException"},
1327
- {"shape":"TooManyTagsException"},
1328
- {"shape":"InvalidSystemTagUsageException"},
1329
- {"shape":"TagPolicyException"}
1330
- ]
1331
- },
1332
- "UpdateComment":{
1333
- "name":"UpdateComment",
1334
- "http":{
1335
- "method":"POST",
1336
- "requestUri":"/"
1337
- },
1338
- "input":{"shape":"UpdateCommentInput"},
1339
- "output":{"shape":"UpdateCommentOutput"},
1340
- "errors":[
1341
- {"shape":"CommentContentRequiredException"},
1342
- {"shape":"CommentContentSizeLimitExceededException"},
1343
- {"shape":"CommentDoesNotExistException"},
1344
- {"shape":"CommentIdRequiredException"},
1345
- {"shape":"InvalidCommentIdException"},
1346
- {"shape":"CommentNotCreatedByCallerException"},
1347
- {"shape":"CommentDeletedException"}
1348
- ]
1349
- },
1350
- "UpdateDefaultBranch":{
1351
- "name":"UpdateDefaultBranch",
1352
- "http":{
1353
- "method":"POST",
1354
- "requestUri":"/"
1355
- },
1356
- "input":{"shape":"UpdateDefaultBranchInput"},
1357
- "errors":[
1358
- {"shape":"RepositoryNameRequiredException"},
1359
- {"shape":"RepositoryDoesNotExistException"},
1360
- {"shape":"InvalidRepositoryNameException"},
1361
- {"shape":"BranchNameRequiredException"},
1362
- {"shape":"InvalidBranchNameException"},
1363
- {"shape":"BranchDoesNotExistException"},
1364
- {"shape":"EncryptionIntegrityChecksFailedException"},
1365
- {"shape":"EncryptionKeyAccessDeniedException"},
1366
- {"shape":"EncryptionKeyDisabledException"},
1367
- {"shape":"EncryptionKeyNotFoundException"},
1368
- {"shape":"EncryptionKeyUnavailableException"}
1369
- ]
1370
- },
1371
- "UpdatePullRequestDescription":{
1372
- "name":"UpdatePullRequestDescription",
1373
- "http":{
1374
- "method":"POST",
1375
- "requestUri":"/"
1376
- },
1377
- "input":{"shape":"UpdatePullRequestDescriptionInput"},
1378
- "output":{"shape":"UpdatePullRequestDescriptionOutput"},
1379
- "errors":[
1380
- {"shape":"PullRequestDoesNotExistException"},
1381
- {"shape":"InvalidPullRequestIdException"},
1382
- {"shape":"PullRequestIdRequiredException"},
1383
- {"shape":"InvalidDescriptionException"},
1384
- {"shape":"PullRequestAlreadyClosedException"}
1385
- ]
1386
- },
1387
- "UpdatePullRequestStatus":{
1388
- "name":"UpdatePullRequestStatus",
1389
- "http":{
1390
- "method":"POST",
1391
- "requestUri":"/"
1392
- },
1393
- "input":{"shape":"UpdatePullRequestStatusInput"},
1394
- "output":{"shape":"UpdatePullRequestStatusOutput"},
1395
- "errors":[
1396
- {"shape":"PullRequestDoesNotExistException"},
1397
- {"shape":"InvalidPullRequestIdException"},
1398
- {"shape":"PullRequestIdRequiredException"},
1399
- {"shape":"InvalidPullRequestStatusUpdateException"},
1400
- {"shape":"InvalidPullRequestStatusException"},
1401
- {"shape":"PullRequestStatusRequiredException"},
1402
- {"shape":"EncryptionIntegrityChecksFailedException"},
1403
- {"shape":"EncryptionKeyAccessDeniedException"},
1404
- {"shape":"EncryptionKeyDisabledException"},
1405
- {"shape":"EncryptionKeyNotFoundException"},
1406
- {"shape":"EncryptionKeyUnavailableException"}
1407
- ]
1408
- },
1409
- "UpdatePullRequestTitle":{
1410
- "name":"UpdatePullRequestTitle",
1411
- "http":{
1412
- "method":"POST",
1413
- "requestUri":"/"
1414
- },
1415
- "input":{"shape":"UpdatePullRequestTitleInput"},
1416
- "output":{"shape":"UpdatePullRequestTitleOutput"},
1417
- "errors":[
1418
- {"shape":"PullRequestDoesNotExistException"},
1419
- {"shape":"InvalidPullRequestIdException"},
1420
- {"shape":"PullRequestIdRequiredException"},
1421
- {"shape":"TitleRequiredException"},
1422
- {"shape":"InvalidTitleException"},
1423
- {"shape":"PullRequestAlreadyClosedException"}
1424
- ]
1425
- },
1426
- "UpdateRepositoryDescription":{
1427
- "name":"UpdateRepositoryDescription",
1428
- "http":{
1429
- "method":"POST",
1430
- "requestUri":"/"
1431
- },
1432
- "input":{"shape":"UpdateRepositoryDescriptionInput"},
1433
- "errors":[
1434
- {"shape":"RepositoryNameRequiredException"},
1435
- {"shape":"RepositoryDoesNotExistException"},
1436
- {"shape":"InvalidRepositoryNameException"},
1437
- {"shape":"InvalidRepositoryDescriptionException"},
1438
- {"shape":"EncryptionIntegrityChecksFailedException"},
1439
- {"shape":"EncryptionKeyAccessDeniedException"},
1440
- {"shape":"EncryptionKeyDisabledException"},
1441
- {"shape":"EncryptionKeyNotFoundException"},
1442
- {"shape":"EncryptionKeyUnavailableException"}
1443
- ]
1444
- },
1445
- "UpdateRepositoryName":{
1446
- "name":"UpdateRepositoryName",
1447
- "http":{
1448
- "method":"POST",
1449
- "requestUri":"/"
1450
- },
1451
- "input":{"shape":"UpdateRepositoryNameInput"},
1452
- "errors":[
1453
- {"shape":"RepositoryDoesNotExistException"},
1454
- {"shape":"RepositoryNameExistsException"},
1455
- {"shape":"RepositoryNameRequiredException"},
1456
- {"shape":"InvalidRepositoryNameException"}
1457
- ]
1458
- }
1459
- },
1460
- "shapes":{
1461
- "AccountId":{"type":"string"},
1462
- "ActorDoesNotExistException":{
1463
- "type":"structure",
1464
- "members":{
1465
- },
1466
- "exception":true
1467
- },
1468
- "AdditionalData":{"type":"string"},
1469
- "Arn":{"type":"string"},
1470
- "AuthorDoesNotExistException":{
1471
- "type":"structure",
1472
- "members":{
1473
- },
1474
- "exception":true
1475
- },
1476
- "BatchDescribeMergeConflictsError":{
1477
- "type":"structure",
1478
- "required":[
1479
- "filePath",
1480
- "exceptionName",
1481
- "message"
1482
- ],
1483
- "members":{
1484
- "filePath":{"shape":"Path"},
1485
- "exceptionName":{"shape":"ExceptionName"},
1486
- "message":{"shape":"Message"}
1487
- }
1488
- },
1489
- "BatchDescribeMergeConflictsErrors":{
1490
- "type":"list",
1491
- "member":{"shape":"BatchDescribeMergeConflictsError"}
1492
- },
1493
- "BatchDescribeMergeConflictsInput":{
1494
- "type":"structure",
1495
- "required":[
1496
- "repositoryName",
1497
- "destinationCommitSpecifier",
1498
- "sourceCommitSpecifier",
1499
- "mergeOption"
1500
- ],
1501
- "members":{
1502
- "repositoryName":{"shape":"RepositoryName"},
1503
- "destinationCommitSpecifier":{"shape":"CommitName"},
1504
- "sourceCommitSpecifier":{"shape":"CommitName"},
1505
- "mergeOption":{"shape":"MergeOptionTypeEnum"},
1506
- "maxMergeHunks":{"shape":"MaxResults"},
1507
- "maxConflictFiles":{"shape":"MaxResults"},
1508
- "filePaths":{"shape":"FilePaths"},
1509
- "conflictDetailLevel":{"shape":"ConflictDetailLevelTypeEnum"},
1510
- "conflictResolutionStrategy":{"shape":"ConflictResolutionStrategyTypeEnum"},
1511
- "nextToken":{"shape":"NextToken"}
1512
- }
1513
- },
1514
- "BatchDescribeMergeConflictsOutput":{
1515
- "type":"structure",
1516
- "required":[
1517
- "conflicts",
1518
- "destinationCommitId",
1519
- "sourceCommitId"
1520
- ],
1521
- "members":{
1522
- "conflicts":{"shape":"Conflicts"},
1523
- "nextToken":{"shape":"NextToken"},
1524
- "errors":{"shape":"BatchDescribeMergeConflictsErrors"},
1525
- "destinationCommitId":{"shape":"ObjectId"},
1526
- "sourceCommitId":{"shape":"ObjectId"},
1527
- "baseCommitId":{"shape":"ObjectId"}
1528
- }
1529
- },
1530
- "BatchGetCommitsError":{
1531
- "type":"structure",
1532
- "members":{
1533
- "commitId":{"shape":"ObjectId"},
1534
- "errorCode":{"shape":"ErrorCode"},
1535
- "errorMessage":{"shape":"ErrorMessage"}
1536
- }
1537
- },
1538
- "BatchGetCommitsErrorsList":{
1539
- "type":"list",
1540
- "member":{"shape":"BatchGetCommitsError"}
1541
- },
1542
- "BatchGetCommitsInput":{
1543
- "type":"structure",
1544
- "required":[
1545
- "commitIds",
1546
- "repositoryName"
1547
- ],
1548
- "members":{
1549
- "commitIds":{"shape":"CommitIdsInputList"},
1550
- "repositoryName":{"shape":"RepositoryName"}
1551
- }
1552
- },
1553
- "BatchGetCommitsOutput":{
1554
- "type":"structure",
1555
- "members":{
1556
- "commits":{"shape":"CommitObjectsList"},
1557
- "errors":{"shape":"BatchGetCommitsErrorsList"}
1558
- }
1559
- },
1560
- "BatchGetRepositoriesInput":{
1561
- "type":"structure",
1562
- "required":["repositoryNames"],
1563
- "members":{
1564
- "repositoryNames":{"shape":"RepositoryNameList"}
1565
- }
1566
- },
1567
- "BatchGetRepositoriesOutput":{
1568
- "type":"structure",
1569
- "members":{
1570
- "repositories":{"shape":"RepositoryMetadataList"},
1571
- "repositoriesNotFound":{"shape":"RepositoryNotFoundList"}
1572
- }
1573
- },
1574
- "BeforeCommitIdAndAfterCommitIdAreSameException":{
1575
- "type":"structure",
1576
- "members":{
1577
- },
1578
- "exception":true
1579
- },
1580
- "BlobIdDoesNotExistException":{
1581
- "type":"structure",
1582
- "members":{
1583
- },
1584
- "exception":true
1585
- },
1586
- "BlobIdRequiredException":{
1587
- "type":"structure",
1588
- "members":{
1589
- },
1590
- "exception":true
1591
- },
1592
- "BlobMetadata":{
1593
- "type":"structure",
1594
- "members":{
1595
- "blobId":{"shape":"ObjectId"},
1596
- "path":{"shape":"Path"},
1597
- "mode":{"shape":"Mode"}
1598
- }
1599
- },
1600
- "BranchDoesNotExistException":{
1601
- "type":"structure",
1602
- "members":{
1603
- },
1604
- "exception":true
1605
- },
1606
- "BranchInfo":{
1607
- "type":"structure",
1608
- "members":{
1609
- "branchName":{"shape":"BranchName"},
1610
- "commitId":{"shape":"CommitId"}
1611
- }
1612
- },
1613
- "BranchName":{
1614
- "type":"string",
1615
- "max":256,
1616
- "min":1
1617
- },
1618
- "BranchNameExistsException":{
1619
- "type":"structure",
1620
- "members":{
1621
- },
1622
- "exception":true
1623
- },
1624
- "BranchNameIsTagNameException":{
1625
- "type":"structure",
1626
- "members":{
1627
- },
1628
- "exception":true
1629
- },
1630
- "BranchNameList":{
1631
- "type":"list",
1632
- "member":{"shape":"BranchName"}
1633
- },
1634
- "BranchNameRequiredException":{
1635
- "type":"structure",
1636
- "members":{
1637
- },
1638
- "exception":true
1639
- },
1640
- "CapitalBoolean":{"type":"boolean"},
1641
- "ChangeTypeEnum":{
1642
- "type":"string",
1643
- "enum":[
1644
- "A",
1645
- "M",
1646
- "D"
1647
- ]
1648
- },
1649
- "ClientRequestToken":{"type":"string"},
1650
- "ClientRequestTokenRequiredException":{
1651
- "type":"structure",
1652
- "members":{
1653
- },
1654
- "exception":true
1655
- },
1656
- "CloneUrlHttp":{"type":"string"},
1657
- "CloneUrlSsh":{"type":"string"},
1658
- "Comment":{
1659
- "type":"structure",
1660
- "members":{
1661
- "commentId":{"shape":"CommentId"},
1662
- "content":{"shape":"Content"},
1663
- "inReplyTo":{"shape":"CommentId"},
1664
- "creationDate":{"shape":"CreationDate"},
1665
- "lastModifiedDate":{"shape":"LastModifiedDate"},
1666
- "authorArn":{"shape":"Arn"},
1667
- "deleted":{"shape":"IsCommentDeleted"},
1668
- "clientRequestToken":{"shape":"ClientRequestToken"}
1669
- }
1670
- },
1671
- "CommentContentRequiredException":{
1672
- "type":"structure",
1673
- "members":{
1674
- },
1675
- "exception":true
1676
- },
1677
- "CommentContentSizeLimitExceededException":{
1678
- "type":"structure",
1679
- "members":{
1680
- },
1681
- "exception":true
1682
- },
1683
- "CommentDeletedException":{
1684
- "type":"structure",
1685
- "members":{
1686
- },
1687
- "exception":true
1688
- },
1689
- "CommentDoesNotExistException":{
1690
- "type":"structure",
1691
- "members":{
1692
- },
1693
- "exception":true
1694
- },
1695
- "CommentId":{"type":"string"},
1696
- "CommentIdRequiredException":{
1697
- "type":"structure",
1698
- "members":{
1699
- },
1700
- "exception":true
1701
- },
1702
- "CommentNotCreatedByCallerException":{
1703
- "type":"structure",
1704
- "members":{
1705
- },
1706
- "exception":true
1707
- },
1708
- "Comments":{
1709
- "type":"list",
1710
- "member":{"shape":"Comment"}
1711
- },
1712
- "CommentsForComparedCommit":{
1713
- "type":"structure",
1714
- "members":{
1715
- "repositoryName":{"shape":"RepositoryName"},
1716
- "beforeCommitId":{"shape":"CommitId"},
1717
- "afterCommitId":{"shape":"CommitId"},
1718
- "beforeBlobId":{"shape":"ObjectId"},
1719
- "afterBlobId":{"shape":"ObjectId"},
1720
- "location":{"shape":"Location"},
1721
- "comments":{"shape":"Comments"}
1722
- }
1723
- },
1724
- "CommentsForComparedCommitData":{
1725
- "type":"list",
1726
- "member":{"shape":"CommentsForComparedCommit"}
1727
- },
1728
- "CommentsForPullRequest":{
1729
- "type":"structure",
1730
- "members":{
1731
- "pullRequestId":{"shape":"PullRequestId"},
1732
- "repositoryName":{"shape":"RepositoryName"},
1733
- "beforeCommitId":{"shape":"CommitId"},
1734
- "afterCommitId":{"shape":"CommitId"},
1735
- "beforeBlobId":{"shape":"ObjectId"},
1736
- "afterBlobId":{"shape":"ObjectId"},
1737
- "location":{"shape":"Location"},
1738
- "comments":{"shape":"Comments"}
1739
- }
1740
- },
1741
- "CommentsForPullRequestData":{
1742
- "type":"list",
1743
- "member":{"shape":"CommentsForPullRequest"}
1744
- },
1745
- "Commit":{
1746
- "type":"structure",
1747
- "members":{
1748
- "commitId":{"shape":"ObjectId"},
1749
- "treeId":{"shape":"ObjectId"},
1750
- "parents":{"shape":"ParentList"},
1751
- "message":{"shape":"Message"},
1752
- "author":{"shape":"UserInfo"},
1753
- "committer":{"shape":"UserInfo"},
1754
- "additionalData":{"shape":"AdditionalData"}
1755
- }
1756
- },
1757
- "CommitDoesNotExistException":{
1758
- "type":"structure",
1759
- "members":{
1760
- },
1761
- "exception":true
1762
- },
1763
- "CommitId":{"type":"string"},
1764
- "CommitIdDoesNotExistException":{
1765
- "type":"structure",
1766
- "members":{
1767
- },
1768
- "exception":true
1769
- },
1770
- "CommitIdRequiredException":{
1771
- "type":"structure",
1772
- "members":{
1773
- },
1774
- "exception":true
1775
- },
1776
- "CommitIdsInputList":{
1777
- "type":"list",
1778
- "member":{"shape":"ObjectId"}
1779
- },
1780
- "CommitIdsLimitExceededException":{
1781
- "type":"structure",
1782
- "members":{
1783
- },
1784
- "exception":true
1785
- },
1786
- "CommitIdsListRequiredException":{
1787
- "type":"structure",
1788
- "members":{
1789
- },
1790
- "exception":true
1791
- },
1792
- "CommitMessageLengthExceededException":{
1793
- "type":"structure",
1794
- "members":{
1795
- },
1796
- "exception":true
1797
- },
1798
- "CommitName":{"type":"string"},
1799
- "CommitObjectsList":{
1800
- "type":"list",
1801
- "member":{"shape":"Commit"}
1802
- },
1803
- "CommitRequiredException":{
1804
- "type":"structure",
1805
- "members":{
1806
- },
1807
- "exception":true
1808
- },
1809
- "ConcurrentReferenceUpdateException":{
1810
- "type":"structure",
1811
- "members":{
1812
- },
1813
- "exception":true
1814
- },
1815
- "Conflict":{
1816
- "type":"structure",
1817
- "members":{
1818
- "conflictMetadata":{"shape":"ConflictMetadata"},
1819
- "mergeHunks":{"shape":"MergeHunks"}
1820
- }
1821
- },
1822
- "ConflictDetailLevelTypeEnum":{
1823
- "type":"string",
1824
- "enum":[
1825
- "FILE_LEVEL",
1826
- "LINE_LEVEL"
1827
- ]
1828
- },
1829
- "ConflictMetadata":{
1830
- "type":"structure",
1831
- "members":{
1832
- "filePath":{"shape":"Path"},
1833
- "fileSizes":{"shape":"FileSizes"},
1834
- "fileModes":{"shape":"FileModes"},
1835
- "objectTypes":{"shape":"ObjectTypes"},
1836
- "numberOfConflicts":{"shape":"NumberOfConflicts"},
1837
- "isBinaryFile":{"shape":"IsBinaryFile"},
1838
- "contentConflict":{"shape":"IsContentConflict"},
1839
- "fileModeConflict":{"shape":"IsFileModeConflict"},
1840
- "objectTypeConflict":{"shape":"IsObjectTypeConflict"},
1841
- "mergeOperations":{"shape":"MergeOperations"}
1842
- }
1843
- },
1844
- "ConflictMetadataList":{
1845
- "type":"list",
1846
- "member":{"shape":"ConflictMetadata"}
1847
- },
1848
- "ConflictResolution":{
1849
- "type":"structure",
1850
- "members":{
1851
- "replaceContents":{"shape":"ReplaceContentEntries"},
1852
- "deleteFiles":{"shape":"DeleteFileEntries"},
1853
- "setFileModes":{"shape":"SetFileModeEntries"}
1854
- }
1855
- },
1856
- "ConflictResolutionStrategyTypeEnum":{
1857
- "type":"string",
1858
- "enum":[
1859
- "NONE",
1860
- "ACCEPT_SOURCE",
1861
- "ACCEPT_DESTINATION",
1862
- "AUTOMERGE"
1863
- ]
1864
- },
1865
- "Conflicts":{
1866
- "type":"list",
1867
- "member":{"shape":"Conflict"}
1868
- },
1869
- "Content":{"type":"string"},
1870
- "CreateBranchInput":{
1871
- "type":"structure",
1872
- "required":[
1873
- "repositoryName",
1874
- "branchName",
1875
- "commitId"
1876
- ],
1877
- "members":{
1878
- "repositoryName":{"shape":"RepositoryName"},
1879
- "branchName":{"shape":"BranchName"},
1880
- "commitId":{"shape":"CommitId"}
1881
- }
1882
- },
1883
- "CreateCommitInput":{
1884
- "type":"structure",
1885
- "required":[
1886
- "repositoryName",
1887
- "branchName"
1888
- ],
1889
- "members":{
1890
- "repositoryName":{"shape":"RepositoryName"},
1891
- "branchName":{"shape":"BranchName"},
1892
- "parentCommitId":{"shape":"CommitId"},
1893
- "authorName":{"shape":"Name"},
1894
- "email":{"shape":"Email"},
1895
- "commitMessage":{"shape":"Message"},
1896
- "keepEmptyFolders":{"shape":"KeepEmptyFolders"},
1897
- "putFiles":{"shape":"PutFileEntries"},
1898
- "deleteFiles":{"shape":"DeleteFileEntries"},
1899
- "setFileModes":{"shape":"SetFileModeEntries"}
1900
- }
1901
- },
1902
- "CreateCommitOutput":{
1903
- "type":"structure",
1904
- "members":{
1905
- "commitId":{"shape":"ObjectId"},
1906
- "treeId":{"shape":"ObjectId"},
1907
- "filesAdded":{"shape":"FilesMetadata"},
1908
- "filesUpdated":{"shape":"FilesMetadata"},
1909
- "filesDeleted":{"shape":"FilesMetadata"}
1910
- }
1911
- },
1912
- "CreatePullRequestInput":{
1913
- "type":"structure",
1914
- "required":[
1915
- "title",
1916
- "targets"
1917
- ],
1918
- "members":{
1919
- "title":{"shape":"Title"},
1920
- "description":{"shape":"Description"},
1921
- "targets":{"shape":"TargetList"},
1922
- "clientRequestToken":{
1923
- "shape":"ClientRequestToken",
1924
- "idempotencyToken":true
1925
- }
1926
- }
1927
- },
1928
- "CreatePullRequestOutput":{
1929
- "type":"structure",
1930
- "required":["pullRequest"],
1931
- "members":{
1932
- "pullRequest":{"shape":"PullRequest"}
1933
- }
1934
- },
1935
- "CreateRepositoryInput":{
1936
- "type":"structure",
1937
- "required":["repositoryName"],
1938
- "members":{
1939
- "repositoryName":{"shape":"RepositoryName"},
1940
- "repositoryDescription":{"shape":"RepositoryDescription"},
1941
- "tags":{"shape":"TagsMap"}
1942
- }
1943
- },
1944
- "CreateRepositoryOutput":{
1945
- "type":"structure",
1946
- "members":{
1947
- "repositoryMetadata":{"shape":"RepositoryMetadata"}
1948
- }
1949
- },
1950
- "CreateUnreferencedMergeCommitInput":{
1951
- "type":"structure",
1952
- "required":[
1953
- "repositoryName",
1954
- "sourceCommitSpecifier",
1955
- "destinationCommitSpecifier",
1956
- "mergeOption"
1957
- ],
1958
- "members":{
1959
- "repositoryName":{"shape":"RepositoryName"},
1960
- "sourceCommitSpecifier":{"shape":"CommitName"},
1961
- "destinationCommitSpecifier":{"shape":"CommitName"},
1962
- "mergeOption":{"shape":"MergeOptionTypeEnum"},
1963
- "conflictDetailLevel":{"shape":"ConflictDetailLevelTypeEnum"},
1964
- "conflictResolutionStrategy":{"shape":"ConflictResolutionStrategyTypeEnum"},
1965
- "authorName":{"shape":"Name"},
1966
- "email":{"shape":"Email"},
1967
- "commitMessage":{"shape":"Message"},
1968
- "keepEmptyFolders":{"shape":"KeepEmptyFolders"},
1969
- "conflictResolution":{"shape":"ConflictResolution"}
1970
- }
1971
- },
1972
- "CreateUnreferencedMergeCommitOutput":{
1973
- "type":"structure",
1974
- "members":{
1975
- "commitId":{"shape":"ObjectId"},
1976
- "treeId":{"shape":"ObjectId"}
1977
- }
1978
- },
1979
- "CreationDate":{"type":"timestamp"},
1980
- "Date":{"type":"string"},
1981
- "DefaultBranchCannotBeDeletedException":{
1982
- "type":"structure",
1983
- "members":{
1984
- },
1985
- "exception":true
1986
- },
1987
- "DeleteBranchInput":{
1988
- "type":"structure",
1989
- "required":[
1990
- "repositoryName",
1991
- "branchName"
1992
- ],
1993
- "members":{
1994
- "repositoryName":{"shape":"RepositoryName"},
1995
- "branchName":{"shape":"BranchName"}
1996
- }
1997
- },
1998
- "DeleteBranchOutput":{
1999
- "type":"structure",
2000
- "members":{
2001
- "deletedBranch":{"shape":"BranchInfo"}
2002
- }
2003
- },
2004
- "DeleteCommentContentInput":{
2005
- "type":"structure",
2006
- "required":["commentId"],
2007
- "members":{
2008
- "commentId":{"shape":"CommentId"}
2009
- }
2010
- },
2011
- "DeleteCommentContentOutput":{
2012
- "type":"structure",
2013
- "members":{
2014
- "comment":{"shape":"Comment"}
2015
- }
2016
- },
2017
- "DeleteFileEntries":{
2018
- "type":"list",
2019
- "member":{"shape":"DeleteFileEntry"}
2020
- },
2021
- "DeleteFileEntry":{
2022
- "type":"structure",
2023
- "required":["filePath"],
2024
- "members":{
2025
- "filePath":{"shape":"Path"}
2026
- }
2027
- },
2028
- "DeleteFileInput":{
2029
- "type":"structure",
2030
- "required":[
2031
- "repositoryName",
2032
- "branchName",
2033
- "filePath",
2034
- "parentCommitId"
2035
- ],
2036
- "members":{
2037
- "repositoryName":{"shape":"RepositoryName"},
2038
- "branchName":{"shape":"BranchName"},
2039
- "filePath":{"shape":"Path"},
2040
- "parentCommitId":{"shape":"CommitId"},
2041
- "keepEmptyFolders":{"shape":"KeepEmptyFolders"},
2042
- "commitMessage":{"shape":"Message"},
2043
- "name":{"shape":"Name"},
2044
- "email":{"shape":"Email"}
2045
- }
2046
- },
2047
- "DeleteFileOutput":{
2048
- "type":"structure",
2049
- "required":[
2050
- "commitId",
2051
- "blobId",
2052
- "treeId",
2053
- "filePath"
2054
- ],
2055
- "members":{
2056
- "commitId":{"shape":"ObjectId"},
2057
- "blobId":{"shape":"ObjectId"},
2058
- "treeId":{"shape":"ObjectId"},
2059
- "filePath":{"shape":"Path"}
2060
- }
2061
- },
2062
- "DeleteRepositoryInput":{
2063
- "type":"structure",
2064
- "required":["repositoryName"],
2065
- "members":{
2066
- "repositoryName":{"shape":"RepositoryName"}
2067
- }
2068
- },
2069
- "DeleteRepositoryOutput":{
2070
- "type":"structure",
2071
- "members":{
2072
- "repositoryId":{"shape":"RepositoryId"}
2073
- }
2074
- },
2075
- "DescribeMergeConflictsInput":{
2076
- "type":"structure",
2077
- "required":[
2078
- "repositoryName",
2079
- "destinationCommitSpecifier",
2080
- "sourceCommitSpecifier",
2081
- "mergeOption",
2082
- "filePath"
2083
- ],
2084
- "members":{
2085
- "repositoryName":{"shape":"RepositoryName"},
2086
- "destinationCommitSpecifier":{"shape":"CommitName"},
2087
- "sourceCommitSpecifier":{"shape":"CommitName"},
2088
- "mergeOption":{"shape":"MergeOptionTypeEnum"},
2089
- "maxMergeHunks":{"shape":"MaxResults"},
2090
- "filePath":{"shape":"Path"},
2091
- "conflictDetailLevel":{"shape":"ConflictDetailLevelTypeEnum"},
2092
- "conflictResolutionStrategy":{"shape":"ConflictResolutionStrategyTypeEnum"},
2093
- "nextToken":{"shape":"NextToken"}
2094
- }
2095
- },
2096
- "DescribeMergeConflictsOutput":{
2097
- "type":"structure",
2098
- "required":[
2099
- "conflictMetadata",
2100
- "mergeHunks",
2101
- "destinationCommitId",
2102
- "sourceCommitId"
2103
- ],
2104
- "members":{
2105
- "conflictMetadata":{"shape":"ConflictMetadata"},
2106
- "mergeHunks":{"shape":"MergeHunks"},
2107
- "nextToken":{"shape":"NextToken"},
2108
- "destinationCommitId":{"shape":"ObjectId"},
2109
- "sourceCommitId":{"shape":"ObjectId"},
2110
- "baseCommitId":{"shape":"ObjectId"}
2111
- }
2112
- },
2113
- "DescribePullRequestEventsInput":{
2114
- "type":"structure",
2115
- "required":["pullRequestId"],
2116
- "members":{
2117
- "pullRequestId":{"shape":"PullRequestId"},
2118
- "pullRequestEventType":{"shape":"PullRequestEventType"},
2119
- "actorArn":{"shape":"Arn"},
2120
- "nextToken":{"shape":"NextToken"},
2121
- "maxResults":{"shape":"MaxResults"}
2122
- }
2123
- },
2124
- "DescribePullRequestEventsOutput":{
2125
- "type":"structure",
2126
- "required":["pullRequestEvents"],
2127
- "members":{
2128
- "pullRequestEvents":{"shape":"PullRequestEventList"},
2129
- "nextToken":{"shape":"NextToken"}
2130
- }
2131
- },
2132
- "Description":{
2133
- "type":"string",
2134
- "max":10240
2135
- },
2136
- "Difference":{
2137
- "type":"structure",
2138
- "members":{
2139
- "beforeBlob":{"shape":"BlobMetadata"},
2140
- "afterBlob":{"shape":"BlobMetadata"},
2141
- "changeType":{"shape":"ChangeTypeEnum"}
2142
- }
2143
- },
2144
- "DifferenceList":{
2145
- "type":"list",
2146
- "member":{"shape":"Difference"}
2147
- },
2148
- "DirectoryNameConflictsWithFileNameException":{
2149
- "type":"structure",
2150
- "members":{
2151
- },
2152
- "exception":true
2153
- },
2154
- "Email":{"type":"string"},
2155
- "EncryptionIntegrityChecksFailedException":{
2156
- "type":"structure",
2157
- "members":{
2158
- },
2159
- "exception":true,
2160
- "fault":true
2161
- },
2162
- "EncryptionKeyAccessDeniedException":{
2163
- "type":"structure",
2164
- "members":{
2165
- },
2166
- "exception":true
2167
- },
2168
- "EncryptionKeyDisabledException":{
2169
- "type":"structure",
2170
- "members":{
2171
- },
2172
- "exception":true
2173
- },
2174
- "EncryptionKeyNotFoundException":{
2175
- "type":"structure",
2176
- "members":{
2177
- },
2178
- "exception":true
2179
- },
2180
- "EncryptionKeyUnavailableException":{
2181
- "type":"structure",
2182
- "members":{
2183
- },
2184
- "exception":true
2185
- },
2186
- "ErrorCode":{"type":"string"},
2187
- "ErrorMessage":{"type":"string"},
2188
- "EventDate":{"type":"timestamp"},
2189
- "ExceptionName":{"type":"string"},
2190
- "File":{
2191
- "type":"structure",
2192
- "members":{
2193
- "blobId":{"shape":"ObjectId"},
2194
- "absolutePath":{"shape":"Path"},
2195
- "relativePath":{"shape":"Path"},
2196
- "fileMode":{"shape":"FileModeTypeEnum"}
2197
- }
2198
- },
2199
- "FileContent":{
2200
- "type":"blob",
2201
- "max":6291456
2202
- },
2203
- "FileContentAndSourceFileSpecifiedException":{
2204
- "type":"structure",
2205
- "members":{
2206
- },
2207
- "exception":true
2208
- },
2209
- "FileContentRequiredException":{
2210
- "type":"structure",
2211
- "members":{
2212
- },
2213
- "exception":true
2214
- },
2215
- "FileContentSizeLimitExceededException":{
2216
- "type":"structure",
2217
- "members":{
2218
- },
2219
- "exception":true
2220
- },
2221
- "FileDoesNotExistException":{
2222
- "type":"structure",
2223
- "members":{
2224
- },
2225
- "exception":true
2226
- },
2227
- "FileEntryRequiredException":{
2228
- "type":"structure",
2229
- "members":{
2230
- },
2231
- "exception":true
2232
- },
2233
- "FileList":{
2234
- "type":"list",
2235
- "member":{"shape":"File"}
2236
- },
2237
- "FileMetadata":{
2238
- "type":"structure",
2239
- "members":{
2240
- "absolutePath":{"shape":"Path"},
2241
- "blobId":{"shape":"ObjectId"},
2242
- "fileMode":{"shape":"FileModeTypeEnum"}
2243
- }
2244
- },
2245
- "FileModeRequiredException":{
2246
- "type":"structure",
2247
- "members":{
2248
- },
2249
- "exception":true
2250
- },
2251
- "FileModeTypeEnum":{
2252
- "type":"string",
2253
- "enum":[
2254
- "EXECUTABLE",
2255
- "NORMAL",
2256
- "SYMLINK"
2257
- ]
2258
- },
2259
- "FileModes":{
2260
- "type":"structure",
2261
- "members":{
2262
- "source":{"shape":"FileModeTypeEnum"},
2263
- "destination":{"shape":"FileModeTypeEnum"},
2264
- "base":{"shape":"FileModeTypeEnum"}
2265
- }
2266
- },
2267
- "FileNameConflictsWithDirectoryNameException":{
2268
- "type":"structure",
2269
- "members":{
2270
- },
2271
- "exception":true
2272
- },
2273
- "FilePathConflictsWithSubmodulePathException":{
2274
- "type":"structure",
2275
- "members":{
2276
- },
2277
- "exception":true
2278
- },
2279
- "FilePaths":{
2280
- "type":"list",
2281
- "member":{"shape":"Path"}
2282
- },
2283
- "FileSize":{"type":"long"},
2284
- "FileSizes":{
2285
- "type":"structure",
2286
- "members":{
2287
- "source":{"shape":"FileSize"},
2288
- "destination":{"shape":"FileSize"},
2289
- "base":{"shape":"FileSize"}
2290
- }
2291
- },
2292
- "FileTooLargeException":{
2293
- "type":"structure",
2294
- "members":{
2295
- },
2296
- "exception":true
2297
- },
2298
- "FilesMetadata":{
2299
- "type":"list",
2300
- "member":{"shape":"FileMetadata"}
2301
- },
2302
- "Folder":{
2303
- "type":"structure",
2304
- "members":{
2305
- "treeId":{"shape":"ObjectId"},
2306
- "absolutePath":{"shape":"Path"},
2307
- "relativePath":{"shape":"Path"}
2308
- }
2309
- },
2310
- "FolderContentSizeLimitExceededException":{
2311
- "type":"structure",
2312
- "members":{
2313
- },
2314
- "exception":true
2315
- },
2316
- "FolderDoesNotExistException":{
2317
- "type":"structure",
2318
- "members":{
2319
- },
2320
- "exception":true
2321
- },
2322
- "FolderList":{
2323
- "type":"list",
2324
- "member":{"shape":"Folder"}
2325
- },
2326
- "GetBlobInput":{
2327
- "type":"structure",
2328
- "required":[
2329
- "repositoryName",
2330
- "blobId"
2331
- ],
2332
- "members":{
2333
- "repositoryName":{"shape":"RepositoryName"},
2334
- "blobId":{"shape":"ObjectId"}
2335
- }
2336
- },
2337
- "GetBlobOutput":{
2338
- "type":"structure",
2339
- "required":["content"],
2340
- "members":{
2341
- "content":{"shape":"blob"}
2342
- }
2343
- },
2344
- "GetBranchInput":{
2345
- "type":"structure",
2346
- "members":{
2347
- "repositoryName":{"shape":"RepositoryName"},
2348
- "branchName":{"shape":"BranchName"}
2349
- }
2350
- },
2351
- "GetBranchOutput":{
2352
- "type":"structure",
2353
- "members":{
2354
- "branch":{"shape":"BranchInfo"}
2355
- }
2356
- },
2357
- "GetCommentInput":{
2358
- "type":"structure",
2359
- "required":["commentId"],
2360
- "members":{
2361
- "commentId":{"shape":"CommentId"}
2362
- }
2363
- },
2364
- "GetCommentOutput":{
2365
- "type":"structure",
2366
- "members":{
2367
- "comment":{"shape":"Comment"}
2368
- }
2369
- },
2370
- "GetCommentsForComparedCommitInput":{
2371
- "type":"structure",
2372
- "required":[
2373
- "repositoryName",
2374
- "afterCommitId"
2375
- ],
2376
- "members":{
2377
- "repositoryName":{"shape":"RepositoryName"},
2378
- "beforeCommitId":{"shape":"CommitId"},
2379
- "afterCommitId":{"shape":"CommitId"},
2380
- "nextToken":{"shape":"NextToken"},
2381
- "maxResults":{"shape":"MaxResults"}
2382
- }
2383
- },
2384
- "GetCommentsForComparedCommitOutput":{
2385
- "type":"structure",
2386
- "members":{
2387
- "commentsForComparedCommitData":{"shape":"CommentsForComparedCommitData"},
2388
- "nextToken":{"shape":"NextToken"}
2389
- }
2390
- },
2391
- "GetCommentsForPullRequestInput":{
2392
- "type":"structure",
2393
- "required":["pullRequestId"],
2394
- "members":{
2395
- "pullRequestId":{"shape":"PullRequestId"},
2396
- "repositoryName":{"shape":"RepositoryName"},
2397
- "beforeCommitId":{"shape":"CommitId"},
2398
- "afterCommitId":{"shape":"CommitId"},
2399
- "nextToken":{"shape":"NextToken"},
2400
- "maxResults":{"shape":"MaxResults"}
2401
- }
2402
- },
2403
- "GetCommentsForPullRequestOutput":{
2404
- "type":"structure",
2405
- "members":{
2406
- "commentsForPullRequestData":{"shape":"CommentsForPullRequestData"},
2407
- "nextToken":{"shape":"NextToken"}
2408
- }
2409
- },
2410
- "GetCommitInput":{
2411
- "type":"structure",
2412
- "required":[
2413
- "repositoryName",
2414
- "commitId"
2415
- ],
2416
- "members":{
2417
- "repositoryName":{"shape":"RepositoryName"},
2418
- "commitId":{"shape":"ObjectId"}
2419
- }
2420
- },
2421
- "GetCommitOutput":{
2422
- "type":"structure",
2423
- "required":["commit"],
2424
- "members":{
2425
- "commit":{"shape":"Commit"}
2426
- }
2427
- },
2428
- "GetDifferencesInput":{
2429
- "type":"structure",
2430
- "required":[
2431
- "repositoryName",
2432
- "afterCommitSpecifier"
2433
- ],
2434
- "members":{
2435
- "repositoryName":{"shape":"RepositoryName"},
2436
- "beforeCommitSpecifier":{"shape":"CommitName"},
2437
- "afterCommitSpecifier":{"shape":"CommitName"},
2438
- "beforePath":{"shape":"Path"},
2439
- "afterPath":{"shape":"Path"},
2440
- "MaxResults":{"shape":"Limit"},
2441
- "NextToken":{"shape":"NextToken"}
2442
- }
2443
- },
2444
- "GetDifferencesOutput":{
2445
- "type":"structure",
2446
- "members":{
2447
- "differences":{"shape":"DifferenceList"},
2448
- "NextToken":{"shape":"NextToken"}
2449
- }
2450
- },
2451
- "GetFileInput":{
2452
- "type":"structure",
2453
- "required":[
2454
- "repositoryName",
2455
- "filePath"
2456
- ],
2457
- "members":{
2458
- "repositoryName":{"shape":"RepositoryName"},
2459
- "commitSpecifier":{"shape":"CommitName"},
2460
- "filePath":{"shape":"Path"}
2461
- }
2462
- },
2463
- "GetFileOutput":{
2464
- "type":"structure",
2465
- "required":[
2466
- "commitId",
2467
- "blobId",
2468
- "filePath",
2469
- "fileMode",
2470
- "fileSize",
2471
- "fileContent"
2472
- ],
2473
- "members":{
2474
- "commitId":{"shape":"ObjectId"},
2475
- "blobId":{"shape":"ObjectId"},
2476
- "filePath":{"shape":"Path"},
2477
- "fileMode":{"shape":"FileModeTypeEnum"},
2478
- "fileSize":{"shape":"ObjectSize"},
2479
- "fileContent":{"shape":"FileContent"}
2480
- }
2481
- },
2482
- "GetFolderInput":{
2483
- "type":"structure",
2484
- "required":[
2485
- "repositoryName",
2486
- "folderPath"
2487
- ],
2488
- "members":{
2489
- "repositoryName":{"shape":"RepositoryName"},
2490
- "commitSpecifier":{"shape":"CommitName"},
2491
- "folderPath":{"shape":"Path"}
2492
- }
2493
- },
2494
- "GetFolderOutput":{
2495
- "type":"structure",
2496
- "required":[
2497
- "commitId",
2498
- "folderPath"
2499
- ],
2500
- "members":{
2501
- "commitId":{"shape":"ObjectId"},
2502
- "folderPath":{"shape":"Path"},
2503
- "treeId":{"shape":"ObjectId"},
2504
- "subFolders":{"shape":"FolderList"},
2505
- "files":{"shape":"FileList"},
2506
- "symbolicLinks":{"shape":"SymbolicLinkList"},
2507
- "subModules":{"shape":"SubModuleList"}
2508
- }
2509
- },
2510
- "GetMergeCommitInput":{
2511
- "type":"structure",
2512
- "required":[
2513
- "repositoryName",
2514
- "sourceCommitSpecifier",
2515
- "destinationCommitSpecifier"
2516
- ],
2517
- "members":{
2518
- "repositoryName":{"shape":"RepositoryName"},
2519
- "sourceCommitSpecifier":{"shape":"CommitName"},
2520
- "destinationCommitSpecifier":{"shape":"CommitName"},
2521
- "conflictDetailLevel":{"shape":"ConflictDetailLevelTypeEnum"},
2522
- "conflictResolutionStrategy":{"shape":"ConflictResolutionStrategyTypeEnum"}
2523
- }
2524
- },
2525
- "GetMergeCommitOutput":{
2526
- "type":"structure",
2527
- "members":{
2528
- "sourceCommitId":{"shape":"ObjectId"},
2529
- "destinationCommitId":{"shape":"ObjectId"},
2530
- "baseCommitId":{"shape":"ObjectId"},
2531
- "mergedCommitId":{"shape":"ObjectId"}
2532
- }
2533
- },
2534
- "GetMergeConflictsInput":{
2535
- "type":"structure",
2536
- "required":[
2537
- "repositoryName",
2538
- "destinationCommitSpecifier",
2539
- "sourceCommitSpecifier",
2540
- "mergeOption"
2541
- ],
2542
- "members":{
2543
- "repositoryName":{"shape":"RepositoryName"},
2544
- "destinationCommitSpecifier":{"shape":"CommitName"},
2545
- "sourceCommitSpecifier":{"shape":"CommitName"},
2546
- "mergeOption":{"shape":"MergeOptionTypeEnum"},
2547
- "conflictDetailLevel":{"shape":"ConflictDetailLevelTypeEnum"},
2548
- "maxConflictFiles":{"shape":"MaxResults"},
2549
- "conflictResolutionStrategy":{"shape":"ConflictResolutionStrategyTypeEnum"},
2550
- "nextToken":{"shape":"NextToken"}
2551
- }
2552
- },
2553
- "GetMergeConflictsOutput":{
2554
- "type":"structure",
2555
- "required":[
2556
- "mergeable",
2557
- "destinationCommitId",
2558
- "sourceCommitId",
2559
- "conflictMetadataList"
2560
- ],
2561
- "members":{
2562
- "mergeable":{"shape":"IsMergeable"},
2563
- "destinationCommitId":{"shape":"ObjectId"},
2564
- "sourceCommitId":{"shape":"ObjectId"},
2565
- "baseCommitId":{"shape":"ObjectId"},
2566
- "conflictMetadataList":{"shape":"ConflictMetadataList"},
2567
- "nextToken":{"shape":"NextToken"}
2568
- }
2569
- },
2570
- "GetMergeOptionsInput":{
2571
- "type":"structure",
2572
- "required":[
2573
- "repositoryName",
2574
- "sourceCommitSpecifier",
2575
- "destinationCommitSpecifier"
2576
- ],
2577
- "members":{
2578
- "repositoryName":{"shape":"RepositoryName"},
2579
- "sourceCommitSpecifier":{"shape":"CommitName"},
2580
- "destinationCommitSpecifier":{"shape":"CommitName"},
2581
- "conflictDetailLevel":{"shape":"ConflictDetailLevelTypeEnum"},
2582
- "conflictResolutionStrategy":{"shape":"ConflictResolutionStrategyTypeEnum"}
2583
- }
2584
- },
2585
- "GetMergeOptionsOutput":{
2586
- "type":"structure",
2587
- "required":[
2588
- "mergeOptions",
2589
- "sourceCommitId",
2590
- "destinationCommitId",
2591
- "baseCommitId"
2592
- ],
2593
- "members":{
2594
- "mergeOptions":{"shape":"MergeOptions"},
2595
- "sourceCommitId":{"shape":"ObjectId"},
2596
- "destinationCommitId":{"shape":"ObjectId"},
2597
- "baseCommitId":{"shape":"ObjectId"}
2598
- }
2599
- },
2600
- "GetPullRequestInput":{
2601
- "type":"structure",
2602
- "required":["pullRequestId"],
2603
- "members":{
2604
- "pullRequestId":{"shape":"PullRequestId"}
2605
- }
2606
- },
2607
- "GetPullRequestOutput":{
2608
- "type":"structure",
2609
- "required":["pullRequest"],
2610
- "members":{
2611
- "pullRequest":{"shape":"PullRequest"}
2612
- }
2613
- },
2614
- "GetRepositoryInput":{
2615
- "type":"structure",
2616
- "required":["repositoryName"],
2617
- "members":{
2618
- "repositoryName":{"shape":"RepositoryName"}
2619
- }
2620
- },
2621
- "GetRepositoryOutput":{
2622
- "type":"structure",
2623
- "members":{
2624
- "repositoryMetadata":{"shape":"RepositoryMetadata"}
2625
- }
2626
- },
2627
- "GetRepositoryTriggersInput":{
2628
- "type":"structure",
2629
- "required":["repositoryName"],
2630
- "members":{
2631
- "repositoryName":{"shape":"RepositoryName"}
2632
- }
2633
- },
2634
- "GetRepositoryTriggersOutput":{
2635
- "type":"structure",
2636
- "members":{
2637
- "configurationId":{"shape":"RepositoryTriggersConfigurationId"},
2638
- "triggers":{"shape":"RepositoryTriggersList"}
2639
- }
2640
- },
2641
- "HunkContent":{"type":"string"},
2642
- "IdempotencyParameterMismatchException":{
2643
- "type":"structure",
2644
- "members":{
2645
- },
2646
- "exception":true
2647
- },
2648
- "InvalidActorArnException":{
2649
- "type":"structure",
2650
- "members":{
2651
- },
2652
- "exception":true
2653
- },
2654
- "InvalidAuthorArnException":{
2655
- "type":"structure",
2656
- "members":{
2657
- },
2658
- "exception":true
2659
- },
2660
- "InvalidBlobIdException":{
2661
- "type":"structure",
2662
- "members":{
2663
- },
2664
- "exception":true
2665
- },
2666
- "InvalidBranchNameException":{
2667
- "type":"structure",
2668
- "members":{
2669
- },
2670
- "exception":true
2671
- },
2672
- "InvalidClientRequestTokenException":{
2673
- "type":"structure",
2674
- "members":{
2675
- },
2676
- "exception":true
2677
- },
2678
- "InvalidCommentIdException":{
2679
- "type":"structure",
2680
- "members":{
2681
- },
2682
- "exception":true
2683
- },
2684
- "InvalidCommitException":{
2685
- "type":"structure",
2686
- "members":{
2687
- },
2688
- "exception":true
2689
- },
2690
- "InvalidCommitIdException":{
2691
- "type":"structure",
2692
- "members":{
2693
- },
2694
- "exception":true
2695
- },
2696
- "InvalidConflictDetailLevelException":{
2697
- "type":"structure",
2698
- "members":{
2699
- },
2700
- "exception":true
2701
- },
2702
- "InvalidConflictResolutionException":{
2703
- "type":"structure",
2704
- "members":{
2705
- },
2706
- "exception":true
2707
- },
2708
- "InvalidConflictResolutionStrategyException":{
2709
- "type":"structure",
2710
- "members":{
2711
- },
2712
- "exception":true
2713
- },
2714
- "InvalidContinuationTokenException":{
2715
- "type":"structure",
2716
- "members":{
2717
- },
2718
- "exception":true
2719
- },
2720
- "InvalidDeletionParameterException":{
2721
- "type":"structure",
2722
- "members":{
2723
- },
2724
- "exception":true
2725
- },
2726
- "InvalidDescriptionException":{
2727
- "type":"structure",
2728
- "members":{
2729
- },
2730
- "exception":true
2731
- },
2732
- "InvalidDestinationCommitSpecifierException":{
2733
- "type":"structure",
2734
- "members":{
2735
- },
2736
- "exception":true
2737
- },
2738
- "InvalidEmailException":{
2739
- "type":"structure",
2740
- "members":{
2741
- },
2742
- "exception":true
2743
- },
2744
- "InvalidFileLocationException":{
2745
- "type":"structure",
2746
- "members":{
2747
- },
2748
- "exception":true
2749
- },
2750
- "InvalidFileModeException":{
2751
- "type":"structure",
2752
- "members":{
2753
- },
2754
- "exception":true
2755
- },
2756
- "InvalidFilePositionException":{
2757
- "type":"structure",
2758
- "members":{
2759
- },
2760
- "exception":true
2761
- },
2762
- "InvalidMaxConflictFilesException":{
2763
- "type":"structure",
2764
- "members":{
2765
- },
2766
- "exception":true
2767
- },
2768
- "InvalidMaxMergeHunksException":{
2769
- "type":"structure",
2770
- "members":{
2771
- },
2772
- "exception":true
2773
- },
2774
- "InvalidMaxResultsException":{
2775
- "type":"structure",
2776
- "members":{
2777
- },
2778
- "exception":true
2779
- },
2780
- "InvalidMergeOptionException":{
2781
- "type":"structure",
2782
- "members":{
2783
- },
2784
- "exception":true
2785
- },
2786
- "InvalidOrderException":{
2787
- "type":"structure",
2788
- "members":{
2789
- },
2790
- "exception":true
2791
- },
2792
- "InvalidParentCommitIdException":{
2793
- "type":"structure",
2794
- "members":{
2795
- },
2796
- "exception":true
2797
- },
2798
- "InvalidPathException":{
2799
- "type":"structure",
2800
- "members":{
2801
- },
2802
- "exception":true
2803
- },
2804
- "InvalidPullRequestEventTypeException":{
2805
- "type":"structure",
2806
- "members":{
2807
- },
2808
- "exception":true
2809
- },
2810
- "InvalidPullRequestIdException":{
2811
- "type":"structure",
2812
- "members":{
2813
- },
2814
- "exception":true
2815
- },
2816
- "InvalidPullRequestStatusException":{
2817
- "type":"structure",
2818
- "members":{
2819
- },
2820
- "exception":true
2821
- },
2822
- "InvalidPullRequestStatusUpdateException":{
2823
- "type":"structure",
2824
- "members":{
2825
- },
2826
- "exception":true
2827
- },
2828
- "InvalidReferenceNameException":{
2829
- "type":"structure",
2830
- "members":{
2831
- },
2832
- "exception":true
2833
- },
2834
- "InvalidRelativeFileVersionEnumException":{
2835
- "type":"structure",
2836
- "members":{
2837
- },
2838
- "exception":true
2839
- },
2840
- "InvalidReplacementContentException":{
2841
- "type":"structure",
2842
- "members":{
2843
- },
2844
- "exception":true
2845
- },
2846
- "InvalidReplacementTypeException":{
2847
- "type":"structure",
2848
- "members":{
2849
- },
2850
- "exception":true
2851
- },
2852
- "InvalidRepositoryDescriptionException":{
2853
- "type":"structure",
2854
- "members":{
2855
- },
2856
- "exception":true
2857
- },
2858
- "InvalidRepositoryNameException":{
2859
- "type":"structure",
2860
- "members":{
2861
- },
2862
- "exception":true
2863
- },
2864
- "InvalidRepositoryTriggerBranchNameException":{
2865
- "type":"structure",
2866
- "members":{
2867
- },
2868
- "exception":true
2869
- },
2870
- "InvalidRepositoryTriggerCustomDataException":{
2871
- "type":"structure",
2872
- "members":{
2873
- },
2874
- "exception":true
2875
- },
2876
- "InvalidRepositoryTriggerDestinationArnException":{
2877
- "type":"structure",
2878
- "members":{
2879
- },
2880
- "exception":true
2881
- },
2882
- "InvalidRepositoryTriggerEventsException":{
2883
- "type":"structure",
2884
- "members":{
2885
- },
2886
- "exception":true
2887
- },
2888
- "InvalidRepositoryTriggerNameException":{
2889
- "type":"structure",
2890
- "members":{
2891
- },
2892
- "exception":true
2893
- },
2894
- "InvalidRepositoryTriggerRegionException":{
2895
- "type":"structure",
2896
- "members":{
2897
- },
2898
- "exception":true
2899
- },
2900
- "InvalidResourceArnException":{
2901
- "type":"structure",
2902
- "members":{
2903
- },
2904
- "exception":true
2905
- },
2906
- "InvalidSortByException":{
2907
- "type":"structure",
2908
- "members":{
2909
- },
2910
- "exception":true
2911
- },
2912
- "InvalidSourceCommitSpecifierException":{
2913
- "type":"structure",
2914
- "members":{
2915
- },
2916
- "exception":true
2917
- },
2918
- "InvalidSystemTagUsageException":{
2919
- "type":"structure",
2920
- "members":{
2921
- },
2922
- "exception":true
2923
- },
2924
- "InvalidTagKeysListException":{
2925
- "type":"structure",
2926
- "members":{
2927
- },
2928
- "exception":true
2929
- },
2930
- "InvalidTagsMapException":{
2931
- "type":"structure",
2932
- "members":{
2933
- },
2934
- "exception":true
2935
- },
2936
- "InvalidTargetBranchException":{
2937
- "type":"structure",
2938
- "members":{
2939
- },
2940
- "exception":true
2941
- },
2942
- "InvalidTargetException":{
2943
- "type":"structure",
2944
- "members":{
2945
- },
2946
- "exception":true
2947
- },
2948
- "InvalidTargetsException":{
2949
- "type":"structure",
2950
- "members":{
2951
- },
2952
- "exception":true
2953
- },
2954
- "InvalidTitleException":{
2955
- "type":"structure",
2956
- "members":{
2957
- },
2958
- "exception":true
2959
- },
2960
- "IsBinaryFile":{
2961
- "type":"structure",
2962
- "members":{
2963
- "source":{"shape":"CapitalBoolean"},
2964
- "destination":{"shape":"CapitalBoolean"},
2965
- "base":{"shape":"CapitalBoolean"}
2966
- }
2967
- },
2968
- "IsCommentDeleted":{"type":"boolean"},
2969
- "IsContentConflict":{"type":"boolean"},
2970
- "IsFileModeConflict":{"type":"boolean"},
2971
- "IsHunkConflict":{"type":"boolean"},
2972
- "IsMergeable":{"type":"boolean"},
2973
- "IsMerged":{"type":"boolean"},
2974
- "IsMove":{"type":"boolean"},
2975
- "IsObjectTypeConflict":{"type":"boolean"},
2976
- "KeepEmptyFolders":{"type":"boolean"},
2977
- "LastModifiedDate":{"type":"timestamp"},
2978
- "Limit":{
2979
- "type":"integer",
2980
- "box":true
2981
- },
2982
- "LineNumber":{"type":"integer"},
2983
- "ListBranchesInput":{
2984
- "type":"structure",
2985
- "required":["repositoryName"],
2986
- "members":{
2987
- "repositoryName":{"shape":"RepositoryName"},
2988
- "nextToken":{"shape":"NextToken"}
2989
- }
2990
- },
2991
- "ListBranchesOutput":{
2992
- "type":"structure",
2993
- "members":{
2994
- "branches":{"shape":"BranchNameList"},
2995
- "nextToken":{"shape":"NextToken"}
2996
- }
2997
- },
2998
- "ListPullRequestsInput":{
2999
- "type":"structure",
3000
- "required":["repositoryName"],
3001
- "members":{
3002
- "repositoryName":{"shape":"RepositoryName"},
3003
- "authorArn":{"shape":"Arn"},
3004
- "pullRequestStatus":{"shape":"PullRequestStatusEnum"},
3005
- "nextToken":{"shape":"NextToken"},
3006
- "maxResults":{"shape":"MaxResults"}
3007
- }
3008
- },
3009
- "ListPullRequestsOutput":{
3010
- "type":"structure",
3011
- "required":["pullRequestIds"],
3012
- "members":{
3013
- "pullRequestIds":{"shape":"PullRequestIdList"},
3014
- "nextToken":{"shape":"NextToken"}
3015
- }
3016
- },
3017
- "ListRepositoriesInput":{
3018
- "type":"structure",
3019
- "members":{
3020
- "nextToken":{"shape":"NextToken"},
3021
- "sortBy":{"shape":"SortByEnum"},
3022
- "order":{"shape":"OrderEnum"}
3023
- }
3024
- },
3025
- "ListRepositoriesOutput":{
3026
- "type":"structure",
3027
- "members":{
3028
- "repositories":{"shape":"RepositoryNameIdPairList"},
3029
- "nextToken":{"shape":"NextToken"}
3030
- }
3031
- },
3032
- "ListTagsForResourceInput":{
3033
- "type":"structure",
3034
- "required":["resourceArn"],
3035
- "members":{
3036
- "resourceArn":{"shape":"ResourceArn"},
3037
- "nextToken":{"shape":"NextToken"}
3038
- }
3039
- },
3040
- "ListTagsForResourceOutput":{
3041
- "type":"structure",
3042
- "members":{
3043
- "tags":{"shape":"TagsMap"},
3044
- "nextToken":{"shape":"NextToken"}
3045
- }
3046
- },
3047
- "Location":{
3048
- "type":"structure",
3049
- "members":{
3050
- "filePath":{"shape":"Path"},
3051
- "filePosition":{"shape":"Position"},
3052
- "relativeFileVersion":{"shape":"RelativeFileVersionEnum"}
3053
- }
3054
- },
3055
- "ManualMergeRequiredException":{
3056
- "type":"structure",
3057
- "members":{
3058
- },
3059
- "exception":true
3060
- },
3061
- "MaxResults":{"type":"integer"},
3062
- "MaximumBranchesExceededException":{
3063
- "type":"structure",
3064
- "members":{
3065
- },
3066
- "exception":true
3067
- },
3068
- "MaximumConflictResolutionEntriesExceededException":{
3069
- "type":"structure",
3070
- "members":{
3071
- },
3072
- "exception":true
3073
- },
3074
- "MaximumFileContentToLoadExceededException":{
3075
- "type":"structure",
3076
- "members":{
3077
- },
3078
- "exception":true
3079
- },
3080
- "MaximumFileEntriesExceededException":{
3081
- "type":"structure",
3082
- "members":{
3083
- },
3084
- "exception":true
3085
- },
3086
- "MaximumItemsToCompareExceededException":{
3087
- "type":"structure",
3088
- "members":{
3089
- },
3090
- "exception":true
3091
- },
3092
- "MaximumOpenPullRequestsExceededException":{
3093
- "type":"structure",
3094
- "members":{
3095
- },
3096
- "exception":true
3097
- },
3098
- "MaximumRepositoryNamesExceededException":{
3099
- "type":"structure",
3100
- "members":{
3101
- },
3102
- "exception":true
3103
- },
3104
- "MaximumRepositoryTriggersExceededException":{
3105
- "type":"structure",
3106
- "members":{
3107
- },
3108
- "exception":true
3109
- },
3110
- "MergeBranchesByFastForwardInput":{
3111
- "type":"structure",
3112
- "required":[
3113
- "repositoryName",
3114
- "sourceCommitSpecifier",
3115
- "destinationCommitSpecifier"
3116
- ],
3117
- "members":{
3118
- "repositoryName":{"shape":"RepositoryName"},
3119
- "sourceCommitSpecifier":{"shape":"CommitName"},
3120
- "destinationCommitSpecifier":{"shape":"CommitName"},
3121
- "targetBranch":{"shape":"BranchName"}
3122
- }
3123
- },
3124
- "MergeBranchesByFastForwardOutput":{
3125
- "type":"structure",
3126
- "members":{
3127
- "commitId":{"shape":"ObjectId"},
3128
- "treeId":{"shape":"ObjectId"}
3129
- }
3130
- },
3131
- "MergeBranchesBySquashInput":{
3132
- "type":"structure",
3133
- "required":[
3134
- "repositoryName",
3135
- "sourceCommitSpecifier",
3136
- "destinationCommitSpecifier"
3137
- ],
3138
- "members":{
3139
- "repositoryName":{"shape":"RepositoryName"},
3140
- "sourceCommitSpecifier":{"shape":"CommitName"},
3141
- "destinationCommitSpecifier":{"shape":"CommitName"},
3142
- "targetBranch":{"shape":"BranchName"},
3143
- "conflictDetailLevel":{"shape":"ConflictDetailLevelTypeEnum"},
3144
- "conflictResolutionStrategy":{"shape":"ConflictResolutionStrategyTypeEnum"},
3145
- "authorName":{"shape":"Name"},
3146
- "email":{"shape":"Email"},
3147
- "commitMessage":{"shape":"Message"},
3148
- "keepEmptyFolders":{"shape":"KeepEmptyFolders"},
3149
- "conflictResolution":{"shape":"ConflictResolution"}
3150
- }
3151
- },
3152
- "MergeBranchesBySquashOutput":{
3153
- "type":"structure",
3154
- "members":{
3155
- "commitId":{"shape":"ObjectId"},
3156
- "treeId":{"shape":"ObjectId"}
3157
- }
3158
- },
3159
- "MergeBranchesByThreeWayInput":{
3160
- "type":"structure",
3161
- "required":[
3162
- "repositoryName",
3163
- "sourceCommitSpecifier",
3164
- "destinationCommitSpecifier"
3165
- ],
3166
- "members":{
3167
- "repositoryName":{"shape":"RepositoryName"},
3168
- "sourceCommitSpecifier":{"shape":"CommitName"},
3169
- "destinationCommitSpecifier":{"shape":"CommitName"},
3170
- "targetBranch":{"shape":"BranchName"},
3171
- "conflictDetailLevel":{"shape":"ConflictDetailLevelTypeEnum"},
3172
- "conflictResolutionStrategy":{"shape":"ConflictResolutionStrategyTypeEnum"},
3173
- "authorName":{"shape":"Name"},
3174
- "email":{"shape":"Email"},
3175
- "commitMessage":{"shape":"Message"},
3176
- "keepEmptyFolders":{"shape":"KeepEmptyFolders"},
3177
- "conflictResolution":{"shape":"ConflictResolution"}
3178
- }
3179
- },
3180
- "MergeBranchesByThreeWayOutput":{
3181
- "type":"structure",
3182
- "members":{
3183
- "commitId":{"shape":"ObjectId"},
3184
- "treeId":{"shape":"ObjectId"}
3185
- }
3186
- },
3187
- "MergeHunk":{
3188
- "type":"structure",
3189
- "members":{
3190
- "isConflict":{"shape":"IsHunkConflict"},
3191
- "source":{"shape":"MergeHunkDetail"},
3192
- "destination":{"shape":"MergeHunkDetail"},
3193
- "base":{"shape":"MergeHunkDetail"}
3194
- }
3195
- },
3196
- "MergeHunkDetail":{
3197
- "type":"structure",
3198
- "members":{
3199
- "startLine":{"shape":"LineNumber"},
3200
- "endLine":{"shape":"LineNumber"},
3201
- "hunkContent":{"shape":"HunkContent"}
3202
- }
3203
- },
3204
- "MergeHunks":{
3205
- "type":"list",
3206
- "member":{"shape":"MergeHunk"}
3207
- },
3208
- "MergeMetadata":{
3209
- "type":"structure",
3210
- "members":{
3211
- "isMerged":{"shape":"IsMerged"},
3212
- "mergedBy":{"shape":"Arn"},
3213
- "mergeCommitId":{"shape":"CommitId"},
3214
- "mergeOption":{"shape":"MergeOptionTypeEnum"}
3215
- }
3216
- },
3217
- "MergeOperations":{
3218
- "type":"structure",
3219
- "members":{
3220
- "source":{"shape":"ChangeTypeEnum"},
3221
- "destination":{"shape":"ChangeTypeEnum"}
3222
- }
3223
- },
3224
- "MergeOptionRequiredException":{
3225
- "type":"structure",
3226
- "members":{
3227
- },
3228
- "exception":true
3229
- },
3230
- "MergeOptionTypeEnum":{
3231
- "type":"string",
3232
- "enum":[
3233
- "FAST_FORWARD_MERGE",
3234
- "SQUASH_MERGE",
3235
- "THREE_WAY_MERGE"
3236
- ]
3237
- },
3238
- "MergeOptions":{
3239
- "type":"list",
3240
- "member":{"shape":"MergeOptionTypeEnum"}
3241
- },
3242
- "MergePullRequestByFastForwardInput":{
3243
- "type":"structure",
3244
- "required":[
3245
- "pullRequestId",
3246
- "repositoryName"
3247
- ],
3248
- "members":{
3249
- "pullRequestId":{"shape":"PullRequestId"},
3250
- "repositoryName":{"shape":"RepositoryName"},
3251
- "sourceCommitId":{"shape":"ObjectId"}
3252
- }
3253
- },
3254
- "MergePullRequestByFastForwardOutput":{
3255
- "type":"structure",
3256
- "members":{
3257
- "pullRequest":{"shape":"PullRequest"}
3258
- }
3259
- },
3260
- "MergePullRequestBySquashInput":{
3261
- "type":"structure",
3262
- "required":[
3263
- "pullRequestId",
3264
- "repositoryName"
3265
- ],
3266
- "members":{
3267
- "pullRequestId":{"shape":"PullRequestId"},
3268
- "repositoryName":{"shape":"RepositoryName"},
3269
- "sourceCommitId":{"shape":"ObjectId"},
3270
- "conflictDetailLevel":{"shape":"ConflictDetailLevelTypeEnum"},
3271
- "conflictResolutionStrategy":{"shape":"ConflictResolutionStrategyTypeEnum"},
3272
- "commitMessage":{"shape":"Message"},
3273
- "authorName":{"shape":"Name"},
3274
- "email":{"shape":"Email"},
3275
- "keepEmptyFolders":{"shape":"KeepEmptyFolders"},
3276
- "conflictResolution":{"shape":"ConflictResolution"}
3277
- }
3278
- },
3279
- "MergePullRequestBySquashOutput":{
3280
- "type":"structure",
3281
- "members":{
3282
- "pullRequest":{"shape":"PullRequest"}
3283
- }
3284
- },
3285
- "MergePullRequestByThreeWayInput":{
3286
- "type":"structure",
3287
- "required":[
3288
- "pullRequestId",
3289
- "repositoryName"
3290
- ],
3291
- "members":{
3292
- "pullRequestId":{"shape":"PullRequestId"},
3293
- "repositoryName":{"shape":"RepositoryName"},
3294
- "sourceCommitId":{"shape":"ObjectId"},
3295
- "conflictDetailLevel":{"shape":"ConflictDetailLevelTypeEnum"},
3296
- "conflictResolutionStrategy":{"shape":"ConflictResolutionStrategyTypeEnum"},
3297
- "commitMessage":{"shape":"Message"},
3298
- "authorName":{"shape":"Name"},
3299
- "email":{"shape":"Email"},
3300
- "keepEmptyFolders":{"shape":"KeepEmptyFolders"},
3301
- "conflictResolution":{"shape":"ConflictResolution"}
3302
- }
3303
- },
3304
- "MergePullRequestByThreeWayOutput":{
3305
- "type":"structure",
3306
- "members":{
3307
- "pullRequest":{"shape":"PullRequest"}
3308
- }
3309
- },
3310
- "Message":{"type":"string"},
3311
- "Mode":{"type":"string"},
3312
- "MultipleConflictResolutionEntriesException":{
3313
- "type":"structure",
3314
- "members":{
3315
- },
3316
- "exception":true
3317
- },
3318
- "MultipleRepositoriesInPullRequestException":{
3319
- "type":"structure",
3320
- "members":{
3321
- },
3322
- "exception":true
3323
- },
3324
- "Name":{"type":"string"},
3325
- "NameLengthExceededException":{
3326
- "type":"structure",
3327
- "members":{
3328
- },
3329
- "exception":true
3330
- },
3331
- "NextToken":{"type":"string"},
3332
- "NoChangeException":{
3333
- "type":"structure",
3334
- "members":{
3335
- },
3336
- "exception":true
3337
- },
3338
- "NumberOfConflicts":{"type":"integer"},
3339
- "ObjectId":{"type":"string"},
3340
- "ObjectSize":{"type":"long"},
3341
- "ObjectTypeEnum":{
3342
- "type":"string",
3343
- "enum":[
3344
- "FILE",
3345
- "DIRECTORY",
3346
- "GIT_LINK",
3347
- "SYMBOLIC_LINK"
3348
- ]
3349
- },
3350
- "ObjectTypes":{
3351
- "type":"structure",
3352
- "members":{
3353
- "source":{"shape":"ObjectTypeEnum"},
3354
- "destination":{"shape":"ObjectTypeEnum"},
3355
- "base":{"shape":"ObjectTypeEnum"}
3356
- }
3357
- },
3358
- "OrderEnum":{
3359
- "type":"string",
3360
- "enum":[
3361
- "ascending",
3362
- "descending"
3363
- ]
3364
- },
3365
- "ParentCommitDoesNotExistException":{
3366
- "type":"structure",
3367
- "members":{
3368
- },
3369
- "exception":true
3370
- },
3371
- "ParentCommitIdOutdatedException":{
3372
- "type":"structure",
3373
- "members":{
3374
- },
3375
- "exception":true
3376
- },
3377
- "ParentCommitIdRequiredException":{
3378
- "type":"structure",
3379
- "members":{
3380
- },
3381
- "exception":true
3382
- },
3383
- "ParentList":{
3384
- "type":"list",
3385
- "member":{"shape":"ObjectId"}
3386
- },
3387
- "Path":{"type":"string"},
3388
- "PathDoesNotExistException":{
3389
- "type":"structure",
3390
- "members":{
3391
- },
3392
- "exception":true
3393
- },
3394
- "PathRequiredException":{
3395
- "type":"structure",
3396
- "members":{
3397
- },
3398
- "exception":true
3399
- },
3400
- "Position":{"type":"long"},
3401
- "PostCommentForComparedCommitInput":{
3402
- "type":"structure",
3403
- "required":[
3404
- "repositoryName",
3405
- "afterCommitId",
3406
- "content"
3407
- ],
3408
- "members":{
3409
- "repositoryName":{"shape":"RepositoryName"},
3410
- "beforeCommitId":{"shape":"CommitId"},
3411
- "afterCommitId":{"shape":"CommitId"},
3412
- "location":{"shape":"Location"},
3413
- "content":{"shape":"Content"},
3414
- "clientRequestToken":{
3415
- "shape":"ClientRequestToken",
3416
- "idempotencyToken":true
3417
- }
3418
- }
3419
- },
3420
- "PostCommentForComparedCommitOutput":{
3421
- "type":"structure",
3422
- "members":{
3423
- "repositoryName":{"shape":"RepositoryName"},
3424
- "beforeCommitId":{"shape":"CommitId"},
3425
- "afterCommitId":{"shape":"CommitId"},
3426
- "beforeBlobId":{"shape":"ObjectId"},
3427
- "afterBlobId":{"shape":"ObjectId"},
3428
- "location":{"shape":"Location"},
3429
- "comment":{"shape":"Comment"}
3430
- }
3431
- },
3432
- "PostCommentForPullRequestInput":{
3433
- "type":"structure",
3434
- "required":[
3435
- "pullRequestId",
3436
- "repositoryName",
3437
- "beforeCommitId",
3438
- "afterCommitId",
3439
- "content"
3440
- ],
3441
- "members":{
3442
- "pullRequestId":{"shape":"PullRequestId"},
3443
- "repositoryName":{"shape":"RepositoryName"},
3444
- "beforeCommitId":{"shape":"CommitId"},
3445
- "afterCommitId":{"shape":"CommitId"},
3446
- "location":{"shape":"Location"},
3447
- "content":{"shape":"Content"},
3448
- "clientRequestToken":{
3449
- "shape":"ClientRequestToken",
3450
- "idempotencyToken":true
3451
- }
3452
- }
3453
- },
3454
- "PostCommentForPullRequestOutput":{
3455
- "type":"structure",
3456
- "members":{
3457
- "repositoryName":{"shape":"RepositoryName"},
3458
- "pullRequestId":{"shape":"PullRequestId"},
3459
- "beforeCommitId":{"shape":"CommitId"},
3460
- "afterCommitId":{"shape":"CommitId"},
3461
- "beforeBlobId":{"shape":"ObjectId"},
3462
- "afterBlobId":{"shape":"ObjectId"},
3463
- "location":{"shape":"Location"},
3464
- "comment":{"shape":"Comment"}
3465
- }
3466
- },
3467
- "PostCommentReplyInput":{
3468
- "type":"structure",
3469
- "required":[
3470
- "inReplyTo",
3471
- "content"
3472
- ],
3473
- "members":{
3474
- "inReplyTo":{"shape":"CommentId"},
3475
- "clientRequestToken":{
3476
- "shape":"ClientRequestToken",
3477
- "idempotencyToken":true
3478
- },
3479
- "content":{"shape":"Content"}
3480
- }
3481
- },
3482
- "PostCommentReplyOutput":{
3483
- "type":"structure",
3484
- "members":{
3485
- "comment":{"shape":"Comment"}
3486
- }
3487
- },
3488
- "PullRequest":{
3489
- "type":"structure",
3490
- "members":{
3491
- "pullRequestId":{"shape":"PullRequestId"},
3492
- "title":{"shape":"Title"},
3493
- "description":{"shape":"Description"},
3494
- "lastActivityDate":{"shape":"LastModifiedDate"},
3495
- "creationDate":{"shape":"CreationDate"},
3496
- "pullRequestStatus":{"shape":"PullRequestStatusEnum"},
3497
- "authorArn":{"shape":"Arn"},
3498
- "pullRequestTargets":{"shape":"PullRequestTargetList"},
3499
- "clientRequestToken":{"shape":"ClientRequestToken"}
3500
- }
3501
- },
3502
- "PullRequestAlreadyClosedException":{
3503
- "type":"structure",
3504
- "members":{
3505
- },
3506
- "exception":true
3507
- },
3508
- "PullRequestCreatedEventMetadata":{
3509
- "type":"structure",
3510
- "members":{
3511
- "repositoryName":{"shape":"RepositoryName"},
3512
- "sourceCommitId":{"shape":"CommitId"},
3513
- "destinationCommitId":{"shape":"CommitId"},
3514
- "mergeBase":{"shape":"CommitId"}
3515
- }
3516
- },
3517
- "PullRequestDoesNotExistException":{
3518
- "type":"structure",
3519
- "members":{
3520
- },
3521
- "exception":true
3522
- },
3523
- "PullRequestEvent":{
3524
- "type":"structure",
3525
- "members":{
3526
- "pullRequestId":{"shape":"PullRequestId"},
3527
- "eventDate":{"shape":"EventDate"},
3528
- "pullRequestEventType":{"shape":"PullRequestEventType"},
3529
- "actorArn":{"shape":"Arn"},
3530
- "pullRequestCreatedEventMetadata":{"shape":"PullRequestCreatedEventMetadata"},
3531
- "pullRequestStatusChangedEventMetadata":{"shape":"PullRequestStatusChangedEventMetadata"},
3532
- "pullRequestSourceReferenceUpdatedEventMetadata":{"shape":"PullRequestSourceReferenceUpdatedEventMetadata"},
3533
- "pullRequestMergedStateChangedEventMetadata":{"shape":"PullRequestMergedStateChangedEventMetadata"}
3534
- }
3535
- },
3536
- "PullRequestEventList":{
3537
- "type":"list",
3538
- "member":{"shape":"PullRequestEvent"}
3539
- },
3540
- "PullRequestEventType":{
3541
- "type":"string",
3542
- "enum":[
3543
- "PULL_REQUEST_CREATED",
3544
- "PULL_REQUEST_STATUS_CHANGED",
3545
- "PULL_REQUEST_SOURCE_REFERENCE_UPDATED",
3546
- "PULL_REQUEST_MERGE_STATE_CHANGED"
3547
- ]
3548
- },
3549
- "PullRequestId":{"type":"string"},
3550
- "PullRequestIdList":{
3551
- "type":"list",
3552
- "member":{"shape":"PullRequestId"}
3553
- },
3554
- "PullRequestIdRequiredException":{
3555
- "type":"structure",
3556
- "members":{
3557
- },
3558
- "exception":true
3559
- },
3560
- "PullRequestMergedStateChangedEventMetadata":{
3561
- "type":"structure",
3562
- "members":{
3563
- "repositoryName":{"shape":"RepositoryName"},
3564
- "destinationReference":{"shape":"ReferenceName"},
3565
- "mergeMetadata":{"shape":"MergeMetadata"}
3566
- }
3567
- },
3568
- "PullRequestSourceReferenceUpdatedEventMetadata":{
3569
- "type":"structure",
3570
- "members":{
3571
- "repositoryName":{"shape":"RepositoryName"},
3572
- "beforeCommitId":{"shape":"CommitId"},
3573
- "afterCommitId":{"shape":"CommitId"},
3574
- "mergeBase":{"shape":"CommitId"}
3575
- }
3576
- },
3577
- "PullRequestStatusChangedEventMetadata":{
3578
- "type":"structure",
3579
- "members":{
3580
- "pullRequestStatus":{"shape":"PullRequestStatusEnum"}
3581
- }
3582
- },
3583
- "PullRequestStatusEnum":{
3584
- "type":"string",
3585
- "enum":[
3586
- "OPEN",
3587
- "CLOSED"
3588
- ]
3589
- },
3590
- "PullRequestStatusRequiredException":{
3591
- "type":"structure",
3592
- "members":{
3593
- },
3594
- "exception":true
3595
- },
3596
- "PullRequestTarget":{
3597
- "type":"structure",
3598
- "members":{
3599
- "repositoryName":{"shape":"RepositoryName"},
3600
- "sourceReference":{"shape":"ReferenceName"},
3601
- "destinationReference":{"shape":"ReferenceName"},
3602
- "destinationCommit":{"shape":"CommitId"},
3603
- "sourceCommit":{"shape":"CommitId"},
3604
- "mergeBase":{"shape":"CommitId"},
3605
- "mergeMetadata":{"shape":"MergeMetadata"}
3606
- }
3607
- },
3608
- "PullRequestTargetList":{
3609
- "type":"list",
3610
- "member":{"shape":"PullRequestTarget"}
3611
- },
3612
- "PutFileEntries":{
3613
- "type":"list",
3614
- "member":{"shape":"PutFileEntry"}
3615
- },
3616
- "PutFileEntry":{
3617
- "type":"structure",
3618
- "required":["filePath"],
3619
- "members":{
3620
- "filePath":{"shape":"Path"},
3621
- "fileMode":{"shape":"FileModeTypeEnum"},
3622
- "fileContent":{"shape":"FileContent"},
3623
- "sourceFile":{"shape":"SourceFileSpecifier"}
3624
- }
3625
- },
3626
- "PutFileEntryConflictException":{
3627
- "type":"structure",
3628
- "members":{
3629
- },
3630
- "exception":true
3631
- },
3632
- "PutFileInput":{
3633
- "type":"structure",
3634
- "required":[
3635
- "repositoryName",
3636
- "branchName",
3637
- "fileContent",
3638
- "filePath"
3639
- ],
3640
- "members":{
3641
- "repositoryName":{"shape":"RepositoryName"},
3642
- "branchName":{"shape":"BranchName"},
3643
- "fileContent":{"shape":"FileContent"},
3644
- "filePath":{"shape":"Path"},
3645
- "fileMode":{"shape":"FileModeTypeEnum"},
3646
- "parentCommitId":{"shape":"CommitId"},
3647
- "commitMessage":{"shape":"Message"},
3648
- "name":{"shape":"Name"},
3649
- "email":{"shape":"Email"}
3650
- }
3651
- },
3652
- "PutFileOutput":{
3653
- "type":"structure",
3654
- "required":[
3655
- "commitId",
3656
- "blobId",
3657
- "treeId"
3658
- ],
3659
- "members":{
3660
- "commitId":{"shape":"ObjectId"},
3661
- "blobId":{"shape":"ObjectId"},
3662
- "treeId":{"shape":"ObjectId"}
3663
- }
3664
- },
3665
- "PutRepositoryTriggersInput":{
3666
- "type":"structure",
3667
- "required":[
3668
- "repositoryName",
3669
- "triggers"
3670
- ],
3671
- "members":{
3672
- "repositoryName":{"shape":"RepositoryName"},
3673
- "triggers":{"shape":"RepositoryTriggersList"}
3674
- }
3675
- },
3676
- "PutRepositoryTriggersOutput":{
3677
- "type":"structure",
3678
- "members":{
3679
- "configurationId":{"shape":"RepositoryTriggersConfigurationId"}
3680
- }
3681
- },
3682
- "ReferenceDoesNotExistException":{
3683
- "type":"structure",
3684
- "members":{
3685
- },
3686
- "exception":true
3687
- },
3688
- "ReferenceName":{"type":"string"},
3689
- "ReferenceNameRequiredException":{
3690
- "type":"structure",
3691
- "members":{
3692
- },
3693
- "exception":true
3694
- },
3695
- "ReferenceTypeNotSupportedException":{
3696
- "type":"structure",
3697
- "members":{
3698
- },
3699
- "exception":true
3700
- },
3701
- "RelativeFileVersionEnum":{
3702
- "type":"string",
3703
- "enum":[
3704
- "BEFORE",
3705
- "AFTER"
3706
- ]
3707
- },
3708
- "ReplaceContentEntries":{
3709
- "type":"list",
3710
- "member":{"shape":"ReplaceContentEntry"}
3711
- },
3712
- "ReplaceContentEntry":{
3713
- "type":"structure",
3714
- "required":[
3715
- "filePath",
3716
- "replacementType"
3717
- ],
3718
- "members":{
3719
- "filePath":{"shape":"Path"},
3720
- "replacementType":{"shape":"ReplacementTypeEnum"},
3721
- "content":{"shape":"FileContent"},
3722
- "fileMode":{"shape":"FileModeTypeEnum"}
3723
- }
3724
- },
3725
- "ReplacementContentRequiredException":{
3726
- "type":"structure",
3727
- "members":{
3728
- },
3729
- "exception":true
3730
- },
3731
- "ReplacementTypeEnum":{
3732
- "type":"string",
3733
- "enum":[
3734
- "KEEP_BASE",
3735
- "KEEP_SOURCE",
3736
- "KEEP_DESTINATION",
3737
- "USE_NEW_CONTENT"
3738
- ]
3739
- },
3740
- "ReplacementTypeRequiredException":{
3741
- "type":"structure",
3742
- "members":{
3743
- },
3744
- "exception":true
3745
- },
3746
- "RepositoryDescription":{
3747
- "type":"string",
3748
- "max":1000
3749
- },
3750
- "RepositoryDoesNotExistException":{
3751
- "type":"structure",
3752
- "members":{
3753
- },
3754
- "exception":true
3755
- },
3756
- "RepositoryId":{"type":"string"},
3757
- "RepositoryLimitExceededException":{
3758
- "type":"structure",
3759
- "members":{
3760
- },
3761
- "exception":true
3762
- },
3763
- "RepositoryMetadata":{
3764
- "type":"structure",
3765
- "members":{
3766
- "accountId":{"shape":"AccountId"},
3767
- "repositoryId":{"shape":"RepositoryId"},
3768
- "repositoryName":{"shape":"RepositoryName"},
3769
- "repositoryDescription":{"shape":"RepositoryDescription"},
3770
- "defaultBranch":{"shape":"BranchName"},
3771
- "lastModifiedDate":{"shape":"LastModifiedDate"},
3772
- "creationDate":{"shape":"CreationDate"},
3773
- "cloneUrlHttp":{"shape":"CloneUrlHttp"},
3774
- "cloneUrlSsh":{"shape":"CloneUrlSsh"},
3775
- "Arn":{"shape":"Arn"}
3776
- }
3777
- },
3778
- "RepositoryMetadataList":{
3779
- "type":"list",
3780
- "member":{"shape":"RepositoryMetadata"}
3781
- },
3782
- "RepositoryName":{
3783
- "type":"string",
3784
- "max":100,
3785
- "min":1,
3786
- "pattern":"[\\w\\.-]+"
3787
- },
3788
- "RepositoryNameExistsException":{
3789
- "type":"structure",
3790
- "members":{
3791
- },
3792
- "exception":true
3793
- },
3794
- "RepositoryNameIdPair":{
3795
- "type":"structure",
3796
- "members":{
3797
- "repositoryName":{"shape":"RepositoryName"},
3798
- "repositoryId":{"shape":"RepositoryId"}
3799
- }
3800
- },
3801
- "RepositoryNameIdPairList":{
3802
- "type":"list",
3803
- "member":{"shape":"RepositoryNameIdPair"}
3804
- },
3805
- "RepositoryNameList":{
3806
- "type":"list",
3807
- "member":{"shape":"RepositoryName"}
3808
- },
3809
- "RepositoryNameRequiredException":{
3810
- "type":"structure",
3811
- "members":{
3812
- },
3813
- "exception":true
3814
- },
3815
- "RepositoryNamesRequiredException":{
3816
- "type":"structure",
3817
- "members":{
3818
- },
3819
- "exception":true
3820
- },
3821
- "RepositoryNotAssociatedWithPullRequestException":{
3822
- "type":"structure",
3823
- "members":{
3824
- },
3825
- "exception":true
3826
- },
3827
- "RepositoryNotFoundList":{
3828
- "type":"list",
3829
- "member":{"shape":"RepositoryName"}
3830
- },
3831
- "RepositoryTrigger":{
3832
- "type":"structure",
3833
- "required":[
3834
- "name",
3835
- "destinationArn",
3836
- "events"
3837
- ],
3838
- "members":{
3839
- "name":{"shape":"RepositoryTriggerName"},
3840
- "destinationArn":{"shape":"Arn"},
3841
- "customData":{"shape":"RepositoryTriggerCustomData"},
3842
- "branches":{"shape":"BranchNameList"},
3843
- "events":{"shape":"RepositoryTriggerEventList"}
3844
- }
3845
- },
3846
- "RepositoryTriggerBranchNameListRequiredException":{
3847
- "type":"structure",
3848
- "members":{
3849
- },
3850
- "exception":true
3851
- },
3852
- "RepositoryTriggerCustomData":{"type":"string"},
3853
- "RepositoryTriggerDestinationArnRequiredException":{
3854
- "type":"structure",
3855
- "members":{
3856
- },
3857
- "exception":true
3858
- },
3859
- "RepositoryTriggerEventEnum":{
3860
- "type":"string",
3861
- "enum":[
3862
- "all",
3863
- "updateReference",
3864
- "createReference",
3865
- "deleteReference"
3866
- ]
3867
- },
3868
- "RepositoryTriggerEventList":{
3869
- "type":"list",
3870
- "member":{"shape":"RepositoryTriggerEventEnum"}
3871
- },
3872
- "RepositoryTriggerEventsListRequiredException":{
3873
- "type":"structure",
3874
- "members":{
3875
- },
3876
- "exception":true
3877
- },
3878
- "RepositoryTriggerExecutionFailure":{
3879
- "type":"structure",
3880
- "members":{
3881
- "trigger":{"shape":"RepositoryTriggerName"},
3882
- "failureMessage":{"shape":"RepositoryTriggerExecutionFailureMessage"}
3883
- }
3884
- },
3885
- "RepositoryTriggerExecutionFailureList":{
3886
- "type":"list",
3887
- "member":{"shape":"RepositoryTriggerExecutionFailure"}
3888
- },
3889
- "RepositoryTriggerExecutionFailureMessage":{"type":"string"},
3890
- "RepositoryTriggerName":{"type":"string"},
3891
- "RepositoryTriggerNameList":{
3892
- "type":"list",
3893
- "member":{"shape":"RepositoryTriggerName"}
3894
- },
3895
- "RepositoryTriggerNameRequiredException":{
3896
- "type":"structure",
3897
- "members":{
3898
- },
3899
- "exception":true
3900
- },
3901
- "RepositoryTriggersConfigurationId":{"type":"string"},
3902
- "RepositoryTriggersList":{
3903
- "type":"list",
3904
- "member":{"shape":"RepositoryTrigger"}
3905
- },
3906
- "RepositoryTriggersListRequiredException":{
3907
- "type":"structure",
3908
- "members":{
3909
- },
3910
- "exception":true
3911
- },
3912
- "ResourceArn":{"type":"string"},
3913
- "ResourceArnRequiredException":{
3914
- "type":"structure",
3915
- "members":{
3916
- },
3917
- "exception":true
3918
- },
3919
- "RestrictedSourceFileException":{
3920
- "type":"structure",
3921
- "members":{
3922
- },
3923
- "exception":true
3924
- },
3925
- "SameFileContentException":{
3926
- "type":"structure",
3927
- "members":{
3928
- },
3929
- "exception":true
3930
- },
3931
- "SamePathRequestException":{
3932
- "type":"structure",
3933
- "members":{
3934
- },
3935
- "exception":true
3936
- },
3937
- "SetFileModeEntries":{
3938
- "type":"list",
3939
- "member":{"shape":"SetFileModeEntry"}
3940
- },
3941
- "SetFileModeEntry":{
3942
- "type":"structure",
3943
- "required":[
3944
- "filePath",
3945
- "fileMode"
3946
- ],
3947
- "members":{
3948
- "filePath":{"shape":"Path"},
3949
- "fileMode":{"shape":"FileModeTypeEnum"}
3950
- }
3951
- },
3952
- "SortByEnum":{
3953
- "type":"string",
3954
- "enum":[
3955
- "repositoryName",
3956
- "lastModifiedDate"
3957
- ]
3958
- },
3959
- "SourceAndDestinationAreSameException":{
3960
- "type":"structure",
3961
- "members":{
3962
- },
3963
- "exception":true
3964
- },
3965
- "SourceFileOrContentRequiredException":{
3966
- "type":"structure",
3967
- "members":{
3968
- },
3969
- "exception":true
3970
- },
3971
- "SourceFileSpecifier":{
3972
- "type":"structure",
3973
- "required":["filePath"],
3974
- "members":{
3975
- "filePath":{"shape":"Path"},
3976
- "isMove":{"shape":"IsMove"}
3977
- }
3978
- },
3979
- "SubModule":{
3980
- "type":"structure",
3981
- "members":{
3982
- "commitId":{"shape":"ObjectId"},
3983
- "absolutePath":{"shape":"Path"},
3984
- "relativePath":{"shape":"Path"}
3985
- }
3986
- },
3987
- "SubModuleList":{
3988
- "type":"list",
3989
- "member":{"shape":"SubModule"}
3990
- },
3991
- "SymbolicLink":{
3992
- "type":"structure",
3993
- "members":{
3994
- "blobId":{"shape":"ObjectId"},
3995
- "absolutePath":{"shape":"Path"},
3996
- "relativePath":{"shape":"Path"},
3997
- "fileMode":{"shape":"FileModeTypeEnum"}
3998
- }
3999
- },
4000
- "SymbolicLinkList":{
4001
- "type":"list",
4002
- "member":{"shape":"SymbolicLink"}
4003
- },
4004
- "TagKey":{
4005
- "type":"string",
4006
- "max":128,
4007
- "min":1
4008
- },
4009
- "TagKeysList":{
4010
- "type":"list",
4011
- "member":{"shape":"TagKey"}
4012
- },
4013
- "TagKeysListRequiredException":{
4014
- "type":"structure",
4015
- "members":{
4016
- },
4017
- "exception":true
4018
- },
4019
- "TagPolicyException":{
4020
- "type":"structure",
4021
- "members":{
4022
- },
4023
- "exception":true
4024
- },
4025
- "TagResourceInput":{
4026
- "type":"structure",
4027
- "required":[
4028
- "resourceArn",
4029
- "tags"
4030
- ],
4031
- "members":{
4032
- "resourceArn":{"shape":"ResourceArn"},
4033
- "tags":{"shape":"TagsMap"}
4034
- }
4035
- },
4036
- "TagValue":{
4037
- "type":"string",
4038
- "max":256,
4039
- "min":0
4040
- },
4041
- "TagsMap":{
4042
- "type":"map",
4043
- "key":{"shape":"TagKey"},
4044
- "value":{"shape":"TagValue"}
4045
- },
4046
- "TagsMapRequiredException":{
4047
- "type":"structure",
4048
- "members":{
4049
- },
4050
- "exception":true
4051
- },
4052
- "Target":{
4053
- "type":"structure",
4054
- "required":[
4055
- "repositoryName",
4056
- "sourceReference"
4057
- ],
4058
- "members":{
4059
- "repositoryName":{"shape":"RepositoryName"},
4060
- "sourceReference":{"shape":"ReferenceName"},
4061
- "destinationReference":{"shape":"ReferenceName"}
4062
- }
4063
- },
4064
- "TargetList":{
4065
- "type":"list",
4066
- "member":{"shape":"Target"}
4067
- },
4068
- "TargetRequiredException":{
4069
- "type":"structure",
4070
- "members":{
4071
- },
4072
- "exception":true
4073
- },
4074
- "TargetsRequiredException":{
4075
- "type":"structure",
4076
- "members":{
4077
- },
4078
- "exception":true
4079
- },
4080
- "TestRepositoryTriggersInput":{
4081
- "type":"structure",
4082
- "required":[
4083
- "repositoryName",
4084
- "triggers"
4085
- ],
4086
- "members":{
4087
- "repositoryName":{"shape":"RepositoryName"},
4088
- "triggers":{"shape":"RepositoryTriggersList"}
4089
- }
4090
- },
4091
- "TestRepositoryTriggersOutput":{
4092
- "type":"structure",
4093
- "members":{
4094
- "successfulExecutions":{"shape":"RepositoryTriggerNameList"},
4095
- "failedExecutions":{"shape":"RepositoryTriggerExecutionFailureList"}
4096
- }
4097
- },
4098
- "TipOfSourceReferenceIsDifferentException":{
4099
- "type":"structure",
4100
- "members":{
4101
- },
4102
- "exception":true
4103
- },
4104
- "TipsDivergenceExceededException":{
4105
- "type":"structure",
4106
- "members":{
4107
- },
4108
- "exception":true
4109
- },
4110
- "Title":{
4111
- "type":"string",
4112
- "max":150
4113
- },
4114
- "TitleRequiredException":{
4115
- "type":"structure",
4116
- "members":{
4117
- },
4118
- "exception":true
4119
- },
4120
- "TooManyTagsException":{
4121
- "type":"structure",
4122
- "members":{
4123
- },
4124
- "exception":true
4125
- },
4126
- "UntagResourceInput":{
4127
- "type":"structure",
4128
- "required":[
4129
- "resourceArn",
4130
- "tagKeys"
4131
- ],
4132
- "members":{
4133
- "resourceArn":{"shape":"ResourceArn"},
4134
- "tagKeys":{"shape":"TagKeysList"}
4135
- }
4136
- },
4137
- "UpdateCommentInput":{
4138
- "type":"structure",
4139
- "required":[
4140
- "commentId",
4141
- "content"
4142
- ],
4143
- "members":{
4144
- "commentId":{"shape":"CommentId"},
4145
- "content":{"shape":"Content"}
4146
- }
4147
- },
4148
- "UpdateCommentOutput":{
4149
- "type":"structure",
4150
- "members":{
4151
- "comment":{"shape":"Comment"}
4152
- }
4153
- },
4154
- "UpdateDefaultBranchInput":{
4155
- "type":"structure",
4156
- "required":[
4157
- "repositoryName",
4158
- "defaultBranchName"
4159
- ],
4160
- "members":{
4161
- "repositoryName":{"shape":"RepositoryName"},
4162
- "defaultBranchName":{"shape":"BranchName"}
4163
- }
4164
- },
4165
- "UpdatePullRequestDescriptionInput":{
4166
- "type":"structure",
4167
- "required":[
4168
- "pullRequestId",
4169
- "description"
4170
- ],
4171
- "members":{
4172
- "pullRequestId":{"shape":"PullRequestId"},
4173
- "description":{"shape":"Description"}
4174
- }
4175
- },
4176
- "UpdatePullRequestDescriptionOutput":{
4177
- "type":"structure",
4178
- "required":["pullRequest"],
4179
- "members":{
4180
- "pullRequest":{"shape":"PullRequest"}
4181
- }
4182
- },
4183
- "UpdatePullRequestStatusInput":{
4184
- "type":"structure",
4185
- "required":[
4186
- "pullRequestId",
4187
- "pullRequestStatus"
4188
- ],
4189
- "members":{
4190
- "pullRequestId":{"shape":"PullRequestId"},
4191
- "pullRequestStatus":{"shape":"PullRequestStatusEnum"}
4192
- }
4193
- },
4194
- "UpdatePullRequestStatusOutput":{
4195
- "type":"structure",
4196
- "required":["pullRequest"],
4197
- "members":{
4198
- "pullRequest":{"shape":"PullRequest"}
4199
- }
4200
- },
4201
- "UpdatePullRequestTitleInput":{
4202
- "type":"structure",
4203
- "required":[
4204
- "pullRequestId",
4205
- "title"
4206
- ],
4207
- "members":{
4208
- "pullRequestId":{"shape":"PullRequestId"},
4209
- "title":{"shape":"Title"}
4210
- }
4211
- },
4212
- "UpdatePullRequestTitleOutput":{
4213
- "type":"structure",
4214
- "required":["pullRequest"],
4215
- "members":{
4216
- "pullRequest":{"shape":"PullRequest"}
4217
- }
4218
- },
4219
- "UpdateRepositoryDescriptionInput":{
4220
- "type":"structure",
4221
- "required":["repositoryName"],
4222
- "members":{
4223
- "repositoryName":{"shape":"RepositoryName"},
4224
- "repositoryDescription":{"shape":"RepositoryDescription"}
4225
- }
4226
- },
4227
- "UpdateRepositoryNameInput":{
4228
- "type":"structure",
4229
- "required":[
4230
- "oldName",
4231
- "newName"
4232
- ],
4233
- "members":{
4234
- "oldName":{"shape":"RepositoryName"},
4235
- "newName":{"shape":"RepositoryName"}
4236
- }
4237
- },
4238
- "UserInfo":{
4239
- "type":"structure",
4240
- "members":{
4241
- "name":{"shape":"Name"},
4242
- "email":{"shape":"Email"},
4243
- "date":{"shape":"Date"}
4244
- }
4245
- },
4246
- "blob":{"type":"blob"}
4247
- }
4248
- }