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,5 +0,0 @@
1
- {
2
- "version": "1.0",
3
- "examples": {
4
- }
5
- }
@@ -1,4 +0,0 @@
1
- {
2
- "pagination": {
3
- }
4
- }
@@ -1,2902 +0,0 @@
1
- {
2
- "version":"2.0",
3
- "metadata":{
4
- "apiVersion":"2018-05-01",
5
- "endpointPrefix":"chime",
6
- "protocol":"rest-json",
7
- "serviceFullName":"Amazon Chime",
8
- "serviceId":"Chime",
9
- "signatureVersion":"v4",
10
- "uid":"chime-2018-05-01"
11
- },
12
- "operations":{
13
- "AssociatePhoneNumberWithUser":{
14
- "name":"AssociatePhoneNumberWithUser",
15
- "http":{
16
- "method":"POST",
17
- "requestUri":"/accounts/{accountId}/users/{userId}?operation=associate-phone-number",
18
- "responseCode":200
19
- },
20
- "input":{"shape":"AssociatePhoneNumberWithUserRequest"},
21
- "output":{"shape":"AssociatePhoneNumberWithUserResponse"},
22
- "errors":[
23
- {"shape":"UnauthorizedClientException"},
24
- {"shape":"NotFoundException"},
25
- {"shape":"ForbiddenException"},
26
- {"shape":"BadRequestException"},
27
- {"shape":"ThrottledClientException"},
28
- {"shape":"ServiceUnavailableException"},
29
- {"shape":"ServiceFailureException"}
30
- ]
31
- },
32
- "AssociatePhoneNumbersWithVoiceConnector":{
33
- "name":"AssociatePhoneNumbersWithVoiceConnector",
34
- "http":{
35
- "method":"POST",
36
- "requestUri":"/voice-connectors/{voiceConnectorId}?operation=associate-phone-numbers",
37
- "responseCode":200
38
- },
39
- "input":{"shape":"AssociatePhoneNumbersWithVoiceConnectorRequest"},
40
- "output":{"shape":"AssociatePhoneNumbersWithVoiceConnectorResponse"},
41
- "errors":[
42
- {"shape":"UnauthorizedClientException"},
43
- {"shape":"NotFoundException"},
44
- {"shape":"ForbiddenException"},
45
- {"shape":"BadRequestException"},
46
- {"shape":"ThrottledClientException"},
47
- {"shape":"ServiceUnavailableException"},
48
- {"shape":"ServiceFailureException"}
49
- ]
50
- },
51
- "BatchDeletePhoneNumber":{
52
- "name":"BatchDeletePhoneNumber",
53
- "http":{
54
- "method":"POST",
55
- "requestUri":"/phone-numbers?operation=batch-delete",
56
- "responseCode":200
57
- },
58
- "input":{"shape":"BatchDeletePhoneNumberRequest"},
59
- "output":{"shape":"BatchDeletePhoneNumberResponse"},
60
- "errors":[
61
- {"shape":"UnauthorizedClientException"},
62
- {"shape":"NotFoundException"},
63
- {"shape":"ForbiddenException"},
64
- {"shape":"BadRequestException"},
65
- {"shape":"ThrottledClientException"},
66
- {"shape":"ServiceUnavailableException"},
67
- {"shape":"ServiceFailureException"}
68
- ]
69
- },
70
- "BatchSuspendUser":{
71
- "name":"BatchSuspendUser",
72
- "http":{
73
- "method":"POST",
74
- "requestUri":"/accounts/{accountId}/users?operation=suspend",
75
- "responseCode":200
76
- },
77
- "input":{"shape":"BatchSuspendUserRequest"},
78
- "output":{"shape":"BatchSuspendUserResponse"},
79
- "errors":[
80
- {"shape":"UnauthorizedClientException"},
81
- {"shape":"NotFoundException"},
82
- {"shape":"ForbiddenException"},
83
- {"shape":"BadRequestException"},
84
- {"shape":"ThrottledClientException"},
85
- {"shape":"ServiceUnavailableException"},
86
- {"shape":"ServiceFailureException"}
87
- ]
88
- },
89
- "BatchUnsuspendUser":{
90
- "name":"BatchUnsuspendUser",
91
- "http":{
92
- "method":"POST",
93
- "requestUri":"/accounts/{accountId}/users?operation=unsuspend",
94
- "responseCode":200
95
- },
96
- "input":{"shape":"BatchUnsuspendUserRequest"},
97
- "output":{"shape":"BatchUnsuspendUserResponse"},
98
- "errors":[
99
- {"shape":"UnauthorizedClientException"},
100
- {"shape":"NotFoundException"},
101
- {"shape":"ForbiddenException"},
102
- {"shape":"BadRequestException"},
103
- {"shape":"ThrottledClientException"},
104
- {"shape":"ServiceUnavailableException"},
105
- {"shape":"ServiceFailureException"}
106
- ]
107
- },
108
- "BatchUpdatePhoneNumber":{
109
- "name":"BatchUpdatePhoneNumber",
110
- "http":{
111
- "method":"POST",
112
- "requestUri":"/phone-numbers?operation=batch-update",
113
- "responseCode":200
114
- },
115
- "input":{"shape":"BatchUpdatePhoneNumberRequest"},
116
- "output":{"shape":"BatchUpdatePhoneNumberResponse"},
117
- "errors":[
118
- {"shape":"UnauthorizedClientException"},
119
- {"shape":"NotFoundException"},
120
- {"shape":"ForbiddenException"},
121
- {"shape":"BadRequestException"},
122
- {"shape":"ThrottledClientException"},
123
- {"shape":"ServiceUnavailableException"},
124
- {"shape":"ServiceFailureException"}
125
- ]
126
- },
127
- "BatchUpdateUser":{
128
- "name":"BatchUpdateUser",
129
- "http":{
130
- "method":"POST",
131
- "requestUri":"/accounts/{accountId}/users",
132
- "responseCode":200
133
- },
134
- "input":{"shape":"BatchUpdateUserRequest"},
135
- "output":{"shape":"BatchUpdateUserResponse"},
136
- "errors":[
137
- {"shape":"UnauthorizedClientException"},
138
- {"shape":"NotFoundException"},
139
- {"shape":"ForbiddenException"},
140
- {"shape":"BadRequestException"},
141
- {"shape":"ThrottledClientException"},
142
- {"shape":"ServiceUnavailableException"},
143
- {"shape":"ServiceFailureException"}
144
- ]
145
- },
146
- "CreateAccount":{
147
- "name":"CreateAccount",
148
- "http":{
149
- "method":"POST",
150
- "requestUri":"/accounts",
151
- "responseCode":201
152
- },
153
- "input":{"shape":"CreateAccountRequest"},
154
- "output":{"shape":"CreateAccountResponse"},
155
- "errors":[
156
- {"shape":"UnauthorizedClientException"},
157
- {"shape":"NotFoundException"},
158
- {"shape":"ForbiddenException"},
159
- {"shape":"BadRequestException"},
160
- {"shape":"ThrottledClientException"},
161
- {"shape":"ServiceUnavailableException"},
162
- {"shape":"ServiceFailureException"}
163
- ]
164
- },
165
- "CreateBot":{
166
- "name":"CreateBot",
167
- "http":{
168
- "method":"POST",
169
- "requestUri":"/accounts/{accountId}/bots",
170
- "responseCode":201
171
- },
172
- "input":{"shape":"CreateBotRequest"},
173
- "output":{"shape":"CreateBotResponse"},
174
- "errors":[
175
- {"shape":"ServiceUnavailableException"},
176
- {"shape":"ServiceFailureException"},
177
- {"shape":"ForbiddenException"},
178
- {"shape":"BadRequestException"},
179
- {"shape":"UnauthorizedClientException"},
180
- {"shape":"ResourceLimitExceededException"},
181
- {"shape":"NotFoundException"}
182
- ]
183
- },
184
- "CreatePhoneNumberOrder":{
185
- "name":"CreatePhoneNumberOrder",
186
- "http":{
187
- "method":"POST",
188
- "requestUri":"/phone-number-orders",
189
- "responseCode":201
190
- },
191
- "input":{"shape":"CreatePhoneNumberOrderRequest"},
192
- "output":{"shape":"CreatePhoneNumberOrderResponse"},
193
- "errors":[
194
- {"shape":"UnauthorizedClientException"},
195
- {"shape":"ForbiddenException"},
196
- {"shape":"BadRequestException"},
197
- {"shape":"ThrottledClientException"},
198
- {"shape":"ServiceUnavailableException"},
199
- {"shape":"ServiceFailureException"}
200
- ]
201
- },
202
- "CreateVoiceConnector":{
203
- "name":"CreateVoiceConnector",
204
- "http":{
205
- "method":"POST",
206
- "requestUri":"/voice-connectors",
207
- "responseCode":201
208
- },
209
- "input":{"shape":"CreateVoiceConnectorRequest"},
210
- "output":{"shape":"CreateVoiceConnectorResponse"},
211
- "errors":[
212
- {"shape":"UnauthorizedClientException"},
213
- {"shape":"ForbiddenException"},
214
- {"shape":"BadRequestException"},
215
- {"shape":"ThrottledClientException"},
216
- {"shape":"ServiceUnavailableException"},
217
- {"shape":"ServiceFailureException"}
218
- ]
219
- },
220
- "DeleteAccount":{
221
- "name":"DeleteAccount",
222
- "http":{
223
- "method":"DELETE",
224
- "requestUri":"/accounts/{accountId}",
225
- "responseCode":204
226
- },
227
- "input":{"shape":"DeleteAccountRequest"},
228
- "output":{"shape":"DeleteAccountResponse"},
229
- "errors":[
230
- {"shape":"UnauthorizedClientException"},
231
- {"shape":"NotFoundException"},
232
- {"shape":"ForbiddenException"},
233
- {"shape":"BadRequestException"},
234
- {"shape":"ThrottledClientException"},
235
- {"shape":"UnprocessableEntityException"},
236
- {"shape":"ServiceUnavailableException"},
237
- {"shape":"ServiceFailureException"}
238
- ]
239
- },
240
- "DeleteEventsConfiguration":{
241
- "name":"DeleteEventsConfiguration",
242
- "http":{
243
- "method":"DELETE",
244
- "requestUri":"/accounts/{accountId}/bots/{botId}/events-configuration",
245
- "responseCode":204
246
- },
247
- "input":{"shape":"DeleteEventsConfigurationRequest"},
248
- "errors":[
249
- {"shape":"ServiceUnavailableException"},
250
- {"shape":"ServiceFailureException"},
251
- {"shape":"ForbiddenException"},
252
- {"shape":"BadRequestException"},
253
- {"shape":"UnauthorizedClientException"},
254
- {"shape":"ResourceLimitExceededException"}
255
- ]
256
- },
257
- "DeletePhoneNumber":{
258
- "name":"DeletePhoneNumber",
259
- "http":{
260
- "method":"DELETE",
261
- "requestUri":"/phone-numbers/{phoneNumberId}",
262
- "responseCode":204
263
- },
264
- "input":{"shape":"DeletePhoneNumberRequest"},
265
- "errors":[
266
- {"shape":"UnauthorizedClientException"},
267
- {"shape":"NotFoundException"},
268
- {"shape":"ForbiddenException"},
269
- {"shape":"BadRequestException"},
270
- {"shape":"ThrottledClientException"},
271
- {"shape":"ServiceUnavailableException"},
272
- {"shape":"ServiceFailureException"}
273
- ]
274
- },
275
- "DeleteVoiceConnector":{
276
- "name":"DeleteVoiceConnector",
277
- "http":{
278
- "method":"DELETE",
279
- "requestUri":"/voice-connectors/{voiceConnectorId}",
280
- "responseCode":204
281
- },
282
- "input":{"shape":"DeleteVoiceConnectorRequest"},
283
- "errors":[
284
- {"shape":"UnauthorizedClientException"},
285
- {"shape":"NotFoundException"},
286
- {"shape":"ForbiddenException"},
287
- {"shape":"BadRequestException"},
288
- {"shape":"ThrottledClientException"},
289
- {"shape":"ServiceUnavailableException"},
290
- {"shape":"ServiceFailureException"}
291
- ]
292
- },
293
- "DeleteVoiceConnectorOrigination":{
294
- "name":"DeleteVoiceConnectorOrigination",
295
- "http":{
296
- "method":"DELETE",
297
- "requestUri":"/voice-connectors/{voiceConnectorId}/origination",
298
- "responseCode":204
299
- },
300
- "input":{"shape":"DeleteVoiceConnectorOriginationRequest"},
301
- "errors":[
302
- {"shape":"UnauthorizedClientException"},
303
- {"shape":"NotFoundException"},
304
- {"shape":"ForbiddenException"},
305
- {"shape":"BadRequestException"},
306
- {"shape":"ThrottledClientException"},
307
- {"shape":"ServiceUnavailableException"},
308
- {"shape":"ServiceFailureException"}
309
- ]
310
- },
311
- "DeleteVoiceConnectorTermination":{
312
- "name":"DeleteVoiceConnectorTermination",
313
- "http":{
314
- "method":"DELETE",
315
- "requestUri":"/voice-connectors/{voiceConnectorId}/termination",
316
- "responseCode":204
317
- },
318
- "input":{"shape":"DeleteVoiceConnectorTerminationRequest"},
319
- "errors":[
320
- {"shape":"UnauthorizedClientException"},
321
- {"shape":"NotFoundException"},
322
- {"shape":"ForbiddenException"},
323
- {"shape":"BadRequestException"},
324
- {"shape":"ThrottledClientException"},
325
- {"shape":"ServiceUnavailableException"},
326
- {"shape":"ServiceFailureException"}
327
- ]
328
- },
329
- "DeleteVoiceConnectorTerminationCredentials":{
330
- "name":"DeleteVoiceConnectorTerminationCredentials",
331
- "http":{
332
- "method":"POST",
333
- "requestUri":"/voice-connectors/{voiceConnectorId}/termination/credentials?operation=delete",
334
- "responseCode":204
335
- },
336
- "input":{"shape":"DeleteVoiceConnectorTerminationCredentialsRequest"},
337
- "errors":[
338
- {"shape":"UnauthorizedClientException"},
339
- {"shape":"NotFoundException"},
340
- {"shape":"ForbiddenException"},
341
- {"shape":"BadRequestException"},
342
- {"shape":"ThrottledClientException"},
343
- {"shape":"ServiceUnavailableException"},
344
- {"shape":"ServiceFailureException"}
345
- ]
346
- },
347
- "DisassociatePhoneNumberFromUser":{
348
- "name":"DisassociatePhoneNumberFromUser",
349
- "http":{
350
- "method":"POST",
351
- "requestUri":"/accounts/{accountId}/users/{userId}?operation=disassociate-phone-number",
352
- "responseCode":200
353
- },
354
- "input":{"shape":"DisassociatePhoneNumberFromUserRequest"},
355
- "output":{"shape":"DisassociatePhoneNumberFromUserResponse"},
356
- "errors":[
357
- {"shape":"UnauthorizedClientException"},
358
- {"shape":"NotFoundException"},
359
- {"shape":"ForbiddenException"},
360
- {"shape":"BadRequestException"},
361
- {"shape":"ThrottledClientException"},
362
- {"shape":"ServiceUnavailableException"},
363
- {"shape":"ServiceFailureException"}
364
- ]
365
- },
366
- "DisassociatePhoneNumbersFromVoiceConnector":{
367
- "name":"DisassociatePhoneNumbersFromVoiceConnector",
368
- "http":{
369
- "method":"POST",
370
- "requestUri":"/voice-connectors/{voiceConnectorId}?operation=disassociate-phone-numbers",
371
- "responseCode":200
372
- },
373
- "input":{"shape":"DisassociatePhoneNumbersFromVoiceConnectorRequest"},
374
- "output":{"shape":"DisassociatePhoneNumbersFromVoiceConnectorResponse"},
375
- "errors":[
376
- {"shape":"UnauthorizedClientException"},
377
- {"shape":"NotFoundException"},
378
- {"shape":"ForbiddenException"},
379
- {"shape":"BadRequestException"},
380
- {"shape":"ThrottledClientException"},
381
- {"shape":"ServiceUnavailableException"},
382
- {"shape":"ServiceFailureException"}
383
- ]
384
- },
385
- "GetAccount":{
386
- "name":"GetAccount",
387
- "http":{
388
- "method":"GET",
389
- "requestUri":"/accounts/{accountId}"
390
- },
391
- "input":{"shape":"GetAccountRequest"},
392
- "output":{"shape":"GetAccountResponse"},
393
- "errors":[
394
- {"shape":"UnauthorizedClientException"},
395
- {"shape":"NotFoundException"},
396
- {"shape":"ForbiddenException"},
397
- {"shape":"BadRequestException"},
398
- {"shape":"ThrottledClientException"},
399
- {"shape":"ServiceUnavailableException"},
400
- {"shape":"ServiceFailureException"}
401
- ]
402
- },
403
- "GetAccountSettings":{
404
- "name":"GetAccountSettings",
405
- "http":{
406
- "method":"GET",
407
- "requestUri":"/accounts/{accountId}/settings"
408
- },
409
- "input":{"shape":"GetAccountSettingsRequest"},
410
- "output":{"shape":"GetAccountSettingsResponse"},
411
- "errors":[
412
- {"shape":"UnauthorizedClientException"},
413
- {"shape":"NotFoundException"},
414
- {"shape":"BadRequestException"},
415
- {"shape":"ForbiddenException"},
416
- {"shape":"ThrottledClientException"},
417
- {"shape":"ServiceUnavailableException"},
418
- {"shape":"ServiceFailureException"}
419
- ]
420
- },
421
- "GetBot":{
422
- "name":"GetBot",
423
- "http":{
424
- "method":"GET",
425
- "requestUri":"/accounts/{accountId}/bots/{botId}",
426
- "responseCode":200
427
- },
428
- "input":{"shape":"GetBotRequest"},
429
- "output":{"shape":"GetBotResponse"},
430
- "errors":[
431
- {"shape":"ServiceUnavailableException"},
432
- {"shape":"ServiceFailureException"},
433
- {"shape":"ForbiddenException"},
434
- {"shape":"UnauthorizedClientException"},
435
- {"shape":"NotFoundException"},
436
- {"shape":"BadRequestException"}
437
- ]
438
- },
439
- "GetEventsConfiguration":{
440
- "name":"GetEventsConfiguration",
441
- "http":{
442
- "method":"GET",
443
- "requestUri":"/accounts/{accountId}/bots/{botId}/events-configuration",
444
- "responseCode":200
445
- },
446
- "input":{"shape":"GetEventsConfigurationRequest"},
447
- "output":{"shape":"GetEventsConfigurationResponse"},
448
- "errors":[
449
- {"shape":"ServiceUnavailableException"},
450
- {"shape":"ServiceFailureException"},
451
- {"shape":"ForbiddenException"},
452
- {"shape":"BadRequestException"},
453
- {"shape":"UnauthorizedClientException"},
454
- {"shape":"ResourceLimitExceededException"},
455
- {"shape":"NotFoundException"}
456
- ]
457
- },
458
- "GetGlobalSettings":{
459
- "name":"GetGlobalSettings",
460
- "http":{
461
- "method":"GET",
462
- "requestUri":"/settings",
463
- "responseCode":200
464
- },
465
- "output":{"shape":"GetGlobalSettingsResponse"},
466
- "errors":[
467
- {"shape":"UnauthorizedClientException"},
468
- {"shape":"ForbiddenException"},
469
- {"shape":"BadRequestException"},
470
- {"shape":"ThrottledClientException"},
471
- {"shape":"ServiceUnavailableException"},
472
- {"shape":"ServiceFailureException"}
473
- ]
474
- },
475
- "GetPhoneNumber":{
476
- "name":"GetPhoneNumber",
477
- "http":{
478
- "method":"GET",
479
- "requestUri":"/phone-numbers/{phoneNumberId}"
480
- },
481
- "input":{"shape":"GetPhoneNumberRequest"},
482
- "output":{"shape":"GetPhoneNumberResponse"},
483
- "errors":[
484
- {"shape":"UnauthorizedClientException"},
485
- {"shape":"NotFoundException"},
486
- {"shape":"ForbiddenException"},
487
- {"shape":"BadRequestException"},
488
- {"shape":"ThrottledClientException"},
489
- {"shape":"ServiceUnavailableException"},
490
- {"shape":"ServiceFailureException"}
491
- ]
492
- },
493
- "GetPhoneNumberOrder":{
494
- "name":"GetPhoneNumberOrder",
495
- "http":{
496
- "method":"GET",
497
- "requestUri":"/phone-number-orders/{phoneNumberOrderId}",
498
- "responseCode":200
499
- },
500
- "input":{"shape":"GetPhoneNumberOrderRequest"},
501
- "output":{"shape":"GetPhoneNumberOrderResponse"},
502
- "errors":[
503
- {"shape":"UnauthorizedClientException"},
504
- {"shape":"NotFoundException"},
505
- {"shape":"ForbiddenException"},
506
- {"shape":"BadRequestException"},
507
- {"shape":"ThrottledClientException"},
508
- {"shape":"ServiceUnavailableException"},
509
- {"shape":"ServiceFailureException"}
510
- ]
511
- },
512
- "GetUser":{
513
- "name":"GetUser",
514
- "http":{
515
- "method":"GET",
516
- "requestUri":"/accounts/{accountId}/users/{userId}",
517
- "responseCode":200
518
- },
519
- "input":{"shape":"GetUserRequest"},
520
- "output":{"shape":"GetUserResponse"},
521
- "errors":[
522
- {"shape":"UnauthorizedClientException"},
523
- {"shape":"NotFoundException"},
524
- {"shape":"ForbiddenException"},
525
- {"shape":"BadRequestException"},
526
- {"shape":"ThrottledClientException"},
527
- {"shape":"ServiceUnavailableException"},
528
- {"shape":"ServiceFailureException"}
529
- ]
530
- },
531
- "GetUserSettings":{
532
- "name":"GetUserSettings",
533
- "http":{
534
- "method":"GET",
535
- "requestUri":"/accounts/{accountId}/users/{userId}/settings",
536
- "responseCode":200
537
- },
538
- "input":{"shape":"GetUserSettingsRequest"},
539
- "output":{"shape":"GetUserSettingsResponse"},
540
- "errors":[
541
- {"shape":"UnauthorizedClientException"},
542
- {"shape":"NotFoundException"},
543
- {"shape":"ForbiddenException"},
544
- {"shape":"BadRequestException"},
545
- {"shape":"ThrottledClientException"},
546
- {"shape":"ServiceUnavailableException"},
547
- {"shape":"ServiceFailureException"}
548
- ]
549
- },
550
- "GetVoiceConnector":{
551
- "name":"GetVoiceConnector",
552
- "http":{
553
- "method":"GET",
554
- "requestUri":"/voice-connectors/{voiceConnectorId}",
555
- "responseCode":200
556
- },
557
- "input":{"shape":"GetVoiceConnectorRequest"},
558
- "output":{"shape":"GetVoiceConnectorResponse"},
559
- "errors":[
560
- {"shape":"UnauthorizedClientException"},
561
- {"shape":"NotFoundException"},
562
- {"shape":"ForbiddenException"},
563
- {"shape":"BadRequestException"},
564
- {"shape":"ThrottledClientException"},
565
- {"shape":"ServiceUnavailableException"},
566
- {"shape":"ServiceFailureException"}
567
- ]
568
- },
569
- "GetVoiceConnectorOrigination":{
570
- "name":"GetVoiceConnectorOrigination",
571
- "http":{
572
- "method":"GET",
573
- "requestUri":"/voice-connectors/{voiceConnectorId}/origination",
574
- "responseCode":200
575
- },
576
- "input":{"shape":"GetVoiceConnectorOriginationRequest"},
577
- "output":{"shape":"GetVoiceConnectorOriginationResponse"},
578
- "errors":[
579
- {"shape":"UnauthorizedClientException"},
580
- {"shape":"NotFoundException"},
581
- {"shape":"ForbiddenException"},
582
- {"shape":"BadRequestException"},
583
- {"shape":"ThrottledClientException"},
584
- {"shape":"ServiceUnavailableException"},
585
- {"shape":"ServiceFailureException"}
586
- ]
587
- },
588
- "GetVoiceConnectorTermination":{
589
- "name":"GetVoiceConnectorTermination",
590
- "http":{
591
- "method":"GET",
592
- "requestUri":"/voice-connectors/{voiceConnectorId}/termination",
593
- "responseCode":200
594
- },
595
- "input":{"shape":"GetVoiceConnectorTerminationRequest"},
596
- "output":{"shape":"GetVoiceConnectorTerminationResponse"},
597
- "errors":[
598
- {"shape":"UnauthorizedClientException"},
599
- {"shape":"NotFoundException"},
600
- {"shape":"ForbiddenException"},
601
- {"shape":"BadRequestException"},
602
- {"shape":"ThrottledClientException"},
603
- {"shape":"ServiceUnavailableException"},
604
- {"shape":"ServiceFailureException"}
605
- ]
606
- },
607
- "GetVoiceConnectorTerminationHealth":{
608
- "name":"GetVoiceConnectorTerminationHealth",
609
- "http":{
610
- "method":"GET",
611
- "requestUri":"/voice-connectors/{voiceConnectorId}/termination/health",
612
- "responseCode":200
613
- },
614
- "input":{"shape":"GetVoiceConnectorTerminationHealthRequest"},
615
- "output":{"shape":"GetVoiceConnectorTerminationHealthResponse"},
616
- "errors":[
617
- {"shape":"UnauthorizedClientException"},
618
- {"shape":"NotFoundException"},
619
- {"shape":"ForbiddenException"},
620
- {"shape":"BadRequestException"},
621
- {"shape":"ThrottledClientException"},
622
- {"shape":"ServiceUnavailableException"},
623
- {"shape":"ServiceFailureException"}
624
- ]
625
- },
626
- "InviteUsers":{
627
- "name":"InviteUsers",
628
- "http":{
629
- "method":"POST",
630
- "requestUri":"/accounts/{accountId}/users?operation=add",
631
- "responseCode":201
632
- },
633
- "input":{"shape":"InviteUsersRequest"},
634
- "output":{"shape":"InviteUsersResponse"},
635
- "errors":[
636
- {"shape":"UnauthorizedClientException"},
637
- {"shape":"NotFoundException"},
638
- {"shape":"ForbiddenException"},
639
- {"shape":"BadRequestException"},
640
- {"shape":"ThrottledClientException"},
641
- {"shape":"ServiceUnavailableException"},
642
- {"shape":"ServiceFailureException"}
643
- ]
644
- },
645
- "ListAccounts":{
646
- "name":"ListAccounts",
647
- "http":{
648
- "method":"GET",
649
- "requestUri":"/accounts"
650
- },
651
- "input":{"shape":"ListAccountsRequest"},
652
- "output":{"shape":"ListAccountsResponse"},
653
- "errors":[
654
- {"shape":"UnauthorizedClientException"},
655
- {"shape":"NotFoundException"},
656
- {"shape":"ForbiddenException"},
657
- {"shape":"BadRequestException"},
658
- {"shape":"ThrottledClientException"},
659
- {"shape":"ServiceUnavailableException"},
660
- {"shape":"ServiceFailureException"}
661
- ]
662
- },
663
- "ListBots":{
664
- "name":"ListBots",
665
- "http":{
666
- "method":"GET",
667
- "requestUri":"/accounts/{accountId}/bots",
668
- "responseCode":200
669
- },
670
- "input":{"shape":"ListBotsRequest"},
671
- "output":{"shape":"ListBotsResponse"},
672
- "errors":[
673
- {"shape":"ServiceUnavailableException"},
674
- {"shape":"ServiceFailureException"},
675
- {"shape":"ForbiddenException"},
676
- {"shape":"UnauthorizedClientException"},
677
- {"shape":"BadRequestException"},
678
- {"shape":"NotFoundException"}
679
- ]
680
- },
681
- "ListPhoneNumberOrders":{
682
- "name":"ListPhoneNumberOrders",
683
- "http":{
684
- "method":"GET",
685
- "requestUri":"/phone-number-orders",
686
- "responseCode":200
687
- },
688
- "input":{"shape":"ListPhoneNumberOrdersRequest"},
689
- "output":{"shape":"ListPhoneNumberOrdersResponse"},
690
- "errors":[
691
- {"shape":"UnauthorizedClientException"},
692
- {"shape":"ForbiddenException"},
693
- {"shape":"BadRequestException"},
694
- {"shape":"ThrottledClientException"},
695
- {"shape":"ServiceUnavailableException"},
696
- {"shape":"ServiceFailureException"}
697
- ]
698
- },
699
- "ListPhoneNumbers":{
700
- "name":"ListPhoneNumbers",
701
- "http":{
702
- "method":"GET",
703
- "requestUri":"/phone-numbers"
704
- },
705
- "input":{"shape":"ListPhoneNumbersRequest"},
706
- "output":{"shape":"ListPhoneNumbersResponse"},
707
- "errors":[
708
- {"shape":"UnauthorizedClientException"},
709
- {"shape":"ForbiddenException"},
710
- {"shape":"BadRequestException"},
711
- {"shape":"ThrottledClientException"},
712
- {"shape":"ServiceUnavailableException"},
713
- {"shape":"ServiceFailureException"}
714
- ]
715
- },
716
- "ListUsers":{
717
- "name":"ListUsers",
718
- "http":{
719
- "method":"GET",
720
- "requestUri":"/accounts/{accountId}/users",
721
- "responseCode":200
722
- },
723
- "input":{"shape":"ListUsersRequest"},
724
- "output":{"shape":"ListUsersResponse"},
725
- "errors":[
726
- {"shape":"UnauthorizedClientException"},
727
- {"shape":"NotFoundException"},
728
- {"shape":"ForbiddenException"},
729
- {"shape":"BadRequestException"},
730
- {"shape":"ThrottledClientException"},
731
- {"shape":"ServiceUnavailableException"},
732
- {"shape":"ServiceFailureException"}
733
- ]
734
- },
735
- "ListVoiceConnectorTerminationCredentials":{
736
- "name":"ListVoiceConnectorTerminationCredentials",
737
- "http":{
738
- "method":"GET",
739
- "requestUri":"/voice-connectors/{voiceConnectorId}/termination/credentials",
740
- "responseCode":200
741
- },
742
- "input":{"shape":"ListVoiceConnectorTerminationCredentialsRequest"},
743
- "output":{"shape":"ListVoiceConnectorTerminationCredentialsResponse"},
744
- "errors":[
745
- {"shape":"UnauthorizedClientException"},
746
- {"shape":"NotFoundException"},
747
- {"shape":"ForbiddenException"},
748
- {"shape":"BadRequestException"},
749
- {"shape":"ThrottledClientException"},
750
- {"shape":"ServiceUnavailableException"},
751
- {"shape":"ServiceFailureException"}
752
- ]
753
- },
754
- "ListVoiceConnectors":{
755
- "name":"ListVoiceConnectors",
756
- "http":{
757
- "method":"GET",
758
- "requestUri":"/voice-connectors",
759
- "responseCode":200
760
- },
761
- "input":{"shape":"ListVoiceConnectorsRequest"},
762
- "output":{"shape":"ListVoiceConnectorsResponse"},
763
- "errors":[
764
- {"shape":"UnauthorizedClientException"},
765
- {"shape":"ForbiddenException"},
766
- {"shape":"BadRequestException"},
767
- {"shape":"ThrottledClientException"},
768
- {"shape":"ServiceUnavailableException"},
769
- {"shape":"ServiceFailureException"}
770
- ]
771
- },
772
- "LogoutUser":{
773
- "name":"LogoutUser",
774
- "http":{
775
- "method":"POST",
776
- "requestUri":"/accounts/{accountId}/users/{userId}?operation=logout",
777
- "responseCode":204
778
- },
779
- "input":{"shape":"LogoutUserRequest"},
780
- "output":{"shape":"LogoutUserResponse"},
781
- "errors":[
782
- {"shape":"UnauthorizedClientException"},
783
- {"shape":"NotFoundException"},
784
- {"shape":"ForbiddenException"},
785
- {"shape":"BadRequestException"},
786
- {"shape":"ThrottledClientException"},
787
- {"shape":"ServiceUnavailableException"},
788
- {"shape":"ServiceFailureException"}
789
- ]
790
- },
791
- "PutEventsConfiguration":{
792
- "name":"PutEventsConfiguration",
793
- "http":{
794
- "method":"PUT",
795
- "requestUri":"/accounts/{accountId}/bots/{botId}/events-configuration",
796
- "responseCode":201
797
- },
798
- "input":{"shape":"PutEventsConfigurationRequest"},
799
- "output":{"shape":"PutEventsConfigurationResponse"},
800
- "errors":[
801
- {"shape":"ServiceUnavailableException"},
802
- {"shape":"ServiceFailureException"},
803
- {"shape":"ForbiddenException"},
804
- {"shape":"BadRequestException"},
805
- {"shape":"UnauthorizedClientException"},
806
- {"shape":"ResourceLimitExceededException"},
807
- {"shape":"NotFoundException"}
808
- ]
809
- },
810
- "PutVoiceConnectorOrigination":{
811
- "name":"PutVoiceConnectorOrigination",
812
- "http":{
813
- "method":"PUT",
814
- "requestUri":"/voice-connectors/{voiceConnectorId}/origination",
815
- "responseCode":200
816
- },
817
- "input":{"shape":"PutVoiceConnectorOriginationRequest"},
818
- "output":{"shape":"PutVoiceConnectorOriginationResponse"},
819
- "errors":[
820
- {"shape":"UnauthorizedClientException"},
821
- {"shape":"NotFoundException"},
822
- {"shape":"ForbiddenException"},
823
- {"shape":"BadRequestException"},
824
- {"shape":"ThrottledClientException"},
825
- {"shape":"ServiceUnavailableException"},
826
- {"shape":"ServiceFailureException"}
827
- ]
828
- },
829
- "PutVoiceConnectorTermination":{
830
- "name":"PutVoiceConnectorTermination",
831
- "http":{
832
- "method":"PUT",
833
- "requestUri":"/voice-connectors/{voiceConnectorId}/termination",
834
- "responseCode":200
835
- },
836
- "input":{"shape":"PutVoiceConnectorTerminationRequest"},
837
- "output":{"shape":"PutVoiceConnectorTerminationResponse"},
838
- "errors":[
839
- {"shape":"UnauthorizedClientException"},
840
- {"shape":"NotFoundException"},
841
- {"shape":"ForbiddenException"},
842
- {"shape":"BadRequestException"},
843
- {"shape":"ThrottledClientException"},
844
- {"shape":"ServiceUnavailableException"},
845
- {"shape":"ServiceFailureException"}
846
- ]
847
- },
848
- "PutVoiceConnectorTerminationCredentials":{
849
- "name":"PutVoiceConnectorTerminationCredentials",
850
- "http":{
851
- "method":"POST",
852
- "requestUri":"/voice-connectors/{voiceConnectorId}/termination/credentials?operation=put",
853
- "responseCode":204
854
- },
855
- "input":{"shape":"PutVoiceConnectorTerminationCredentialsRequest"},
856
- "errors":[
857
- {"shape":"UnauthorizedClientException"},
858
- {"shape":"NotFoundException"},
859
- {"shape":"ForbiddenException"},
860
- {"shape":"BadRequestException"},
861
- {"shape":"ThrottledClientException"},
862
- {"shape":"ServiceUnavailableException"},
863
- {"shape":"ServiceFailureException"}
864
- ]
865
- },
866
- "RegenerateSecurityToken":{
867
- "name":"RegenerateSecurityToken",
868
- "http":{
869
- "method":"POST",
870
- "requestUri":"/accounts/{accountId}/bots/{botId}?operation=regenerate-security-token",
871
- "responseCode":200
872
- },
873
- "input":{"shape":"RegenerateSecurityTokenRequest"},
874
- "output":{"shape":"RegenerateSecurityTokenResponse"},
875
- "errors":[
876
- {"shape":"ServiceUnavailableException"},
877
- {"shape":"ServiceFailureException"},
878
- {"shape":"ForbiddenException"},
879
- {"shape":"BadRequestException"},
880
- {"shape":"UnauthorizedClientException"},
881
- {"shape":"NotFoundException"}
882
- ]
883
- },
884
- "ResetPersonalPIN":{
885
- "name":"ResetPersonalPIN",
886
- "http":{
887
- "method":"POST",
888
- "requestUri":"/accounts/{accountId}/users/{userId}?operation=reset-personal-pin",
889
- "responseCode":200
890
- },
891
- "input":{"shape":"ResetPersonalPINRequest"},
892
- "output":{"shape":"ResetPersonalPINResponse"},
893
- "errors":[
894
- {"shape":"UnauthorizedClientException"},
895
- {"shape":"NotFoundException"},
896
- {"shape":"ForbiddenException"},
897
- {"shape":"BadRequestException"},
898
- {"shape":"ThrottledClientException"},
899
- {"shape":"ServiceUnavailableException"},
900
- {"shape":"ServiceFailureException"}
901
- ]
902
- },
903
- "RestorePhoneNumber":{
904
- "name":"RestorePhoneNumber",
905
- "http":{
906
- "method":"POST",
907
- "requestUri":"/phone-numbers/{phoneNumberId}?operation=restore",
908
- "responseCode":200
909
- },
910
- "input":{"shape":"RestorePhoneNumberRequest"},
911
- "output":{"shape":"RestorePhoneNumberResponse"},
912
- "errors":[
913
- {"shape":"UnauthorizedClientException"},
914
- {"shape":"NotFoundException"},
915
- {"shape":"ForbiddenException"},
916
- {"shape":"BadRequestException"},
917
- {"shape":"ThrottledClientException"},
918
- {"shape":"ServiceUnavailableException"},
919
- {"shape":"ServiceFailureException"}
920
- ]
921
- },
922
- "SearchAvailablePhoneNumbers":{
923
- "name":"SearchAvailablePhoneNumbers",
924
- "http":{
925
- "method":"GET",
926
- "requestUri":"/search?type=phone-numbers"
927
- },
928
- "input":{"shape":"SearchAvailablePhoneNumbersRequest"},
929
- "output":{"shape":"SearchAvailablePhoneNumbersResponse"},
930
- "errors":[
931
- {"shape":"UnauthorizedClientException"},
932
- {"shape":"ForbiddenException"},
933
- {"shape":"BadRequestException"},
934
- {"shape":"ThrottledClientException"},
935
- {"shape":"ServiceUnavailableException"},
936
- {"shape":"ServiceFailureException"}
937
- ]
938
- },
939
- "UpdateAccount":{
940
- "name":"UpdateAccount",
941
- "http":{
942
- "method":"POST",
943
- "requestUri":"/accounts/{accountId}",
944
- "responseCode":200
945
- },
946
- "input":{"shape":"UpdateAccountRequest"},
947
- "output":{"shape":"UpdateAccountResponse"},
948
- "errors":[
949
- {"shape":"UnauthorizedClientException"},
950
- {"shape":"NotFoundException"},
951
- {"shape":"ForbiddenException"},
952
- {"shape":"BadRequestException"},
953
- {"shape":"ThrottledClientException"},
954
- {"shape":"ServiceUnavailableException"},
955
- {"shape":"ServiceFailureException"}
956
- ]
957
- },
958
- "UpdateAccountSettings":{
959
- "name":"UpdateAccountSettings",
960
- "http":{
961
- "method":"PUT",
962
- "requestUri":"/accounts/{accountId}/settings",
963
- "responseCode":204
964
- },
965
- "input":{"shape":"UpdateAccountSettingsRequest"},
966
- "output":{"shape":"UpdateAccountSettingsResponse"},
967
- "errors":[
968
- {"shape":"UnauthorizedClientException"},
969
- {"shape":"NotFoundException"},
970
- {"shape":"BadRequestException"},
971
- {"shape":"ForbiddenException"},
972
- {"shape":"ConflictException"},
973
- {"shape":"ThrottledClientException"},
974
- {"shape":"ServiceUnavailableException"},
975
- {"shape":"ServiceFailureException"}
976
- ]
977
- },
978
- "UpdateBot":{
979
- "name":"UpdateBot",
980
- "http":{
981
- "method":"POST",
982
- "requestUri":"/accounts/{accountId}/bots/{botId}",
983
- "responseCode":200
984
- },
985
- "input":{"shape":"UpdateBotRequest"},
986
- "output":{"shape":"UpdateBotResponse"},
987
- "errors":[
988
- {"shape":"ServiceUnavailableException"},
989
- {"shape":"ServiceFailureException"},
990
- {"shape":"ForbiddenException"},
991
- {"shape":"BadRequestException"},
992
- {"shape":"UnauthorizedClientException"},
993
- {"shape":"NotFoundException"}
994
- ]
995
- },
996
- "UpdateGlobalSettings":{
997
- "name":"UpdateGlobalSettings",
998
- "http":{
999
- "method":"PUT",
1000
- "requestUri":"/settings",
1001
- "responseCode":204
1002
- },
1003
- "input":{"shape":"UpdateGlobalSettingsRequest"},
1004
- "errors":[
1005
- {"shape":"UnauthorizedClientException"},
1006
- {"shape":"ForbiddenException"},
1007
- {"shape":"BadRequestException"},
1008
- {"shape":"ThrottledClientException"},
1009
- {"shape":"ServiceUnavailableException"},
1010
- {"shape":"ServiceFailureException"}
1011
- ]
1012
- },
1013
- "UpdatePhoneNumber":{
1014
- "name":"UpdatePhoneNumber",
1015
- "http":{
1016
- "method":"POST",
1017
- "requestUri":"/phone-numbers/{phoneNumberId}",
1018
- "responseCode":200
1019
- },
1020
- "input":{"shape":"UpdatePhoneNumberRequest"},
1021
- "output":{"shape":"UpdatePhoneNumberResponse"},
1022
- "errors":[
1023
- {"shape":"UnauthorizedClientException"},
1024
- {"shape":"NotFoundException"},
1025
- {"shape":"ForbiddenException"},
1026
- {"shape":"BadRequestException"},
1027
- {"shape":"ThrottledClientException"},
1028
- {"shape":"ServiceUnavailableException"},
1029
- {"shape":"ServiceFailureException"}
1030
- ]
1031
- },
1032
- "UpdateUser":{
1033
- "name":"UpdateUser",
1034
- "http":{
1035
- "method":"POST",
1036
- "requestUri":"/accounts/{accountId}/users/{userId}",
1037
- "responseCode":200
1038
- },
1039
- "input":{"shape":"UpdateUserRequest"},
1040
- "output":{"shape":"UpdateUserResponse"},
1041
- "errors":[
1042
- {"shape":"UnauthorizedClientException"},
1043
- {"shape":"NotFoundException"},
1044
- {"shape":"ForbiddenException"},
1045
- {"shape":"BadRequestException"},
1046
- {"shape":"ThrottledClientException"},
1047
- {"shape":"ServiceUnavailableException"},
1048
- {"shape":"ServiceFailureException"}
1049
- ]
1050
- },
1051
- "UpdateUserSettings":{
1052
- "name":"UpdateUserSettings",
1053
- "http":{
1054
- "method":"PUT",
1055
- "requestUri":"/accounts/{accountId}/users/{userId}/settings",
1056
- "responseCode":204
1057
- },
1058
- "input":{"shape":"UpdateUserSettingsRequest"},
1059
- "errors":[
1060
- {"shape":"UnauthorizedClientException"},
1061
- {"shape":"NotFoundException"},
1062
- {"shape":"ForbiddenException"},
1063
- {"shape":"BadRequestException"},
1064
- {"shape":"ThrottledClientException"},
1065
- {"shape":"ServiceUnavailableException"},
1066
- {"shape":"ServiceFailureException"}
1067
- ]
1068
- },
1069
- "UpdateVoiceConnector":{
1070
- "name":"UpdateVoiceConnector",
1071
- "http":{
1072
- "method":"PUT",
1073
- "requestUri":"/voice-connectors/{voiceConnectorId}",
1074
- "responseCode":200
1075
- },
1076
- "input":{"shape":"UpdateVoiceConnectorRequest"},
1077
- "output":{"shape":"UpdateVoiceConnectorResponse"},
1078
- "errors":[
1079
- {"shape":"UnauthorizedClientException"},
1080
- {"shape":"NotFoundException"},
1081
- {"shape":"ForbiddenException"},
1082
- {"shape":"BadRequestException"},
1083
- {"shape":"ThrottledClientException"},
1084
- {"shape":"ServiceUnavailableException"},
1085
- {"shape":"ServiceFailureException"}
1086
- ]
1087
- }
1088
- },
1089
- "shapes":{
1090
- "Account":{
1091
- "type":"structure",
1092
- "required":[
1093
- "AwsAccountId",
1094
- "AccountId",
1095
- "Name"
1096
- ],
1097
- "members":{
1098
- "AwsAccountId":{"shape":"String"},
1099
- "AccountId":{"shape":"String"},
1100
- "Name":{"shape":"String"},
1101
- "AccountType":{"shape":"AccountType"},
1102
- "CreatedTimestamp":{"shape":"Iso8601Timestamp"},
1103
- "DefaultLicense":{"shape":"License"},
1104
- "SupportedLicenses":{"shape":"LicenseList"}
1105
- }
1106
- },
1107
- "AccountList":{
1108
- "type":"list",
1109
- "member":{"shape":"Account"}
1110
- },
1111
- "AccountName":{
1112
- "type":"string",
1113
- "max":100,
1114
- "min":1,
1115
- "pattern":".*\\S.*"
1116
- },
1117
- "AccountSettings":{
1118
- "type":"structure",
1119
- "members":{
1120
- "DisableRemoteControl":{"shape":"Boolean"},
1121
- "EnableDialOut":{"shape":"Boolean"}
1122
- }
1123
- },
1124
- "AccountType":{
1125
- "type":"string",
1126
- "enum":[
1127
- "Team",
1128
- "EnterpriseDirectory",
1129
- "EnterpriseLWA",
1130
- "EnterpriseOIDC"
1131
- ]
1132
- },
1133
- "AssociatePhoneNumberWithUserRequest":{
1134
- "type":"structure",
1135
- "required":[
1136
- "AccountId",
1137
- "UserId",
1138
- "E164PhoneNumber"
1139
- ],
1140
- "members":{
1141
- "AccountId":{
1142
- "shape":"String",
1143
- "location":"uri",
1144
- "locationName":"accountId"
1145
- },
1146
- "UserId":{
1147
- "shape":"String",
1148
- "location":"uri",
1149
- "locationName":"userId"
1150
- },
1151
- "E164PhoneNumber":{"shape":"E164PhoneNumber"}
1152
- }
1153
- },
1154
- "AssociatePhoneNumberWithUserResponse":{
1155
- "type":"structure",
1156
- "members":{
1157
- }
1158
- },
1159
- "AssociatePhoneNumbersWithVoiceConnectorRequest":{
1160
- "type":"structure",
1161
- "required":["VoiceConnectorId"],
1162
- "members":{
1163
- "VoiceConnectorId":{
1164
- "shape":"NonEmptyString",
1165
- "location":"uri",
1166
- "locationName":"voiceConnectorId"
1167
- },
1168
- "E164PhoneNumbers":{"shape":"E164PhoneNumberList"}
1169
- }
1170
- },
1171
- "AssociatePhoneNumbersWithVoiceConnectorResponse":{
1172
- "type":"structure",
1173
- "members":{
1174
- "PhoneNumberErrors":{"shape":"PhoneNumberErrorList"}
1175
- }
1176
- },
1177
- "BadRequestException":{
1178
- "type":"structure",
1179
- "members":{
1180
- "Code":{"shape":"ErrorCode"},
1181
- "Message":{"shape":"String"}
1182
- },
1183
- "error":{"httpStatusCode":400},
1184
- "exception":true
1185
- },
1186
- "BatchDeletePhoneNumberRequest":{
1187
- "type":"structure",
1188
- "required":["PhoneNumberIds"],
1189
- "members":{
1190
- "PhoneNumberIds":{"shape":"NonEmptyStringList"}
1191
- }
1192
- },
1193
- "BatchDeletePhoneNumberResponse":{
1194
- "type":"structure",
1195
- "members":{
1196
- "PhoneNumberErrors":{"shape":"PhoneNumberErrorList"}
1197
- }
1198
- },
1199
- "BatchSuspendUserRequest":{
1200
- "type":"structure",
1201
- "required":[
1202
- "AccountId",
1203
- "UserIdList"
1204
- ],
1205
- "members":{
1206
- "AccountId":{
1207
- "shape":"NonEmptyString",
1208
- "location":"uri",
1209
- "locationName":"accountId"
1210
- },
1211
- "UserIdList":{"shape":"UserIdList"}
1212
- }
1213
- },
1214
- "BatchSuspendUserResponse":{
1215
- "type":"structure",
1216
- "members":{
1217
- "UserErrors":{"shape":"UserErrorList"}
1218
- }
1219
- },
1220
- "BatchUnsuspendUserRequest":{
1221
- "type":"structure",
1222
- "required":[
1223
- "AccountId",
1224
- "UserIdList"
1225
- ],
1226
- "members":{
1227
- "AccountId":{
1228
- "shape":"NonEmptyString",
1229
- "location":"uri",
1230
- "locationName":"accountId"
1231
- },
1232
- "UserIdList":{"shape":"UserIdList"}
1233
- }
1234
- },
1235
- "BatchUnsuspendUserResponse":{
1236
- "type":"structure",
1237
- "members":{
1238
- "UserErrors":{"shape":"UserErrorList"}
1239
- }
1240
- },
1241
- "BatchUpdatePhoneNumberRequest":{
1242
- "type":"structure",
1243
- "required":["UpdatePhoneNumberRequestItems"],
1244
- "members":{
1245
- "UpdatePhoneNumberRequestItems":{"shape":"UpdatePhoneNumberRequestItemList"}
1246
- }
1247
- },
1248
- "BatchUpdatePhoneNumberResponse":{
1249
- "type":"structure",
1250
- "members":{
1251
- "PhoneNumberErrors":{"shape":"PhoneNumberErrorList"}
1252
- }
1253
- },
1254
- "BatchUpdateUserRequest":{
1255
- "type":"structure",
1256
- "required":[
1257
- "AccountId",
1258
- "UpdateUserRequestItems"
1259
- ],
1260
- "members":{
1261
- "AccountId":{
1262
- "shape":"NonEmptyString",
1263
- "location":"uri",
1264
- "locationName":"accountId"
1265
- },
1266
- "UpdateUserRequestItems":{"shape":"UpdateUserRequestItemList"}
1267
- }
1268
- },
1269
- "BatchUpdateUserResponse":{
1270
- "type":"structure",
1271
- "members":{
1272
- "UserErrors":{"shape":"UserErrorList"}
1273
- }
1274
- },
1275
- "Boolean":{"type":"boolean"},
1276
- "Bot":{
1277
- "type":"structure",
1278
- "members":{
1279
- "BotId":{"shape":"String"},
1280
- "UserId":{"shape":"String"},
1281
- "DisplayName":{"shape":"SensitiveString"},
1282
- "BotType":{"shape":"BotType"},
1283
- "Disabled":{"shape":"NullableBoolean"},
1284
- "CreatedTimestamp":{"shape":"Iso8601Timestamp"},
1285
- "UpdatedTimestamp":{"shape":"Iso8601Timestamp"},
1286
- "BotEmail":{"shape":"SensitiveString"},
1287
- "SecurityToken":{"shape":"SensitiveString"}
1288
- }
1289
- },
1290
- "BotList":{
1291
- "type":"list",
1292
- "member":{"shape":"Bot"}
1293
- },
1294
- "BotType":{
1295
- "type":"string",
1296
- "enum":["ChatBot"]
1297
- },
1298
- "BusinessCallingSettings":{
1299
- "type":"structure",
1300
- "members":{
1301
- "CdrBucket":{
1302
- "shape":"String",
1303
- "box":true
1304
- }
1305
- }
1306
- },
1307
- "CallingRegion":{"type":"string"},
1308
- "CallingRegionList":{
1309
- "type":"list",
1310
- "member":{"shape":"CallingRegion"}
1311
- },
1312
- "ConflictException":{
1313
- "type":"structure",
1314
- "members":{
1315
- "Code":{"shape":"ErrorCode"},
1316
- "Message":{"shape":"String"}
1317
- },
1318
- "error":{"httpStatusCode":409},
1319
- "exception":true
1320
- },
1321
- "CpsLimit":{
1322
- "type":"integer",
1323
- "min":1
1324
- },
1325
- "CreateAccountRequest":{
1326
- "type":"structure",
1327
- "required":["Name"],
1328
- "members":{
1329
- "Name":{"shape":"AccountName"}
1330
- }
1331
- },
1332
- "CreateAccountResponse":{
1333
- "type":"structure",
1334
- "members":{
1335
- "Account":{"shape":"Account"}
1336
- }
1337
- },
1338
- "CreateBotRequest":{
1339
- "type":"structure",
1340
- "required":[
1341
- "DisplayName",
1342
- "AccountId"
1343
- ],
1344
- "members":{
1345
- "AccountId":{
1346
- "shape":"NonEmptyString",
1347
- "location":"uri",
1348
- "locationName":"accountId"
1349
- },
1350
- "DisplayName":{"shape":"SensitiveString"},
1351
- "Domain":{"shape":"NonEmptyString"}
1352
- }
1353
- },
1354
- "CreateBotResponse":{
1355
- "type":"structure",
1356
- "members":{
1357
- "Bot":{"shape":"Bot"}
1358
- }
1359
- },
1360
- "CreatePhoneNumberOrderRequest":{
1361
- "type":"structure",
1362
- "required":[
1363
- "ProductType",
1364
- "E164PhoneNumbers"
1365
- ],
1366
- "members":{
1367
- "ProductType":{"shape":"PhoneNumberProductType"},
1368
- "E164PhoneNumbers":{"shape":"E164PhoneNumberList"}
1369
- }
1370
- },
1371
- "CreatePhoneNumberOrderResponse":{
1372
- "type":"structure",
1373
- "members":{
1374
- "PhoneNumberOrder":{"shape":"PhoneNumberOrder"}
1375
- }
1376
- },
1377
- "CreateVoiceConnectorRequest":{
1378
- "type":"structure",
1379
- "required":[
1380
- "Name",
1381
- "RequireEncryption"
1382
- ],
1383
- "members":{
1384
- "Name":{"shape":"VoiceConnectorName"},
1385
- "RequireEncryption":{"shape":"Boolean"}
1386
- }
1387
- },
1388
- "CreateVoiceConnectorResponse":{
1389
- "type":"structure",
1390
- "members":{
1391
- "VoiceConnector":{"shape":"VoiceConnector"}
1392
- }
1393
- },
1394
- "Credential":{
1395
- "type":"structure",
1396
- "members":{
1397
- "Username":{"shape":"SensitiveString"},
1398
- "Password":{"shape":"SensitiveString"}
1399
- }
1400
- },
1401
- "CredentialList":{
1402
- "type":"list",
1403
- "member":{"shape":"Credential"}
1404
- },
1405
- "DeleteAccountRequest":{
1406
- "type":"structure",
1407
- "required":["AccountId"],
1408
- "members":{
1409
- "AccountId":{
1410
- "shape":"NonEmptyString",
1411
- "location":"uri",
1412
- "locationName":"accountId"
1413
- }
1414
- }
1415
- },
1416
- "DeleteAccountResponse":{
1417
- "type":"structure",
1418
- "members":{
1419
- }
1420
- },
1421
- "DeleteEventsConfigurationRequest":{
1422
- "type":"structure",
1423
- "required":[
1424
- "AccountId",
1425
- "BotId"
1426
- ],
1427
- "members":{
1428
- "AccountId":{
1429
- "shape":"NonEmptyString",
1430
- "location":"uri",
1431
- "locationName":"accountId"
1432
- },
1433
- "BotId":{
1434
- "shape":"NonEmptyString",
1435
- "location":"uri",
1436
- "locationName":"botId"
1437
- }
1438
- }
1439
- },
1440
- "DeletePhoneNumberRequest":{
1441
- "type":"structure",
1442
- "required":["PhoneNumberId"],
1443
- "members":{
1444
- "PhoneNumberId":{
1445
- "shape":"String",
1446
- "location":"uri",
1447
- "locationName":"phoneNumberId"
1448
- }
1449
- }
1450
- },
1451
- "DeleteVoiceConnectorOriginationRequest":{
1452
- "type":"structure",
1453
- "required":["VoiceConnectorId"],
1454
- "members":{
1455
- "VoiceConnectorId":{
1456
- "shape":"NonEmptyString",
1457
- "location":"uri",
1458
- "locationName":"voiceConnectorId"
1459
- }
1460
- }
1461
- },
1462
- "DeleteVoiceConnectorRequest":{
1463
- "type":"structure",
1464
- "required":["VoiceConnectorId"],
1465
- "members":{
1466
- "VoiceConnectorId":{
1467
- "shape":"NonEmptyString",
1468
- "location":"uri",
1469
- "locationName":"voiceConnectorId"
1470
- }
1471
- }
1472
- },
1473
- "DeleteVoiceConnectorTerminationCredentialsRequest":{
1474
- "type":"structure",
1475
- "required":["VoiceConnectorId"],
1476
- "members":{
1477
- "VoiceConnectorId":{
1478
- "shape":"NonEmptyString",
1479
- "location":"uri",
1480
- "locationName":"voiceConnectorId"
1481
- },
1482
- "Usernames":{"shape":"SensitiveStringList"}
1483
- }
1484
- },
1485
- "DeleteVoiceConnectorTerminationRequest":{
1486
- "type":"structure",
1487
- "required":["VoiceConnectorId"],
1488
- "members":{
1489
- "VoiceConnectorId":{
1490
- "shape":"NonEmptyString",
1491
- "location":"uri",
1492
- "locationName":"voiceConnectorId"
1493
- }
1494
- }
1495
- },
1496
- "DisassociatePhoneNumberFromUserRequest":{
1497
- "type":"structure",
1498
- "required":[
1499
- "AccountId",
1500
- "UserId"
1501
- ],
1502
- "members":{
1503
- "AccountId":{
1504
- "shape":"String",
1505
- "location":"uri",
1506
- "locationName":"accountId"
1507
- },
1508
- "UserId":{
1509
- "shape":"String",
1510
- "location":"uri",
1511
- "locationName":"userId"
1512
- }
1513
- }
1514
- },
1515
- "DisassociatePhoneNumberFromUserResponse":{
1516
- "type":"structure",
1517
- "members":{
1518
- }
1519
- },
1520
- "DisassociatePhoneNumbersFromVoiceConnectorRequest":{
1521
- "type":"structure",
1522
- "required":["VoiceConnectorId"],
1523
- "members":{
1524
- "VoiceConnectorId":{
1525
- "shape":"NonEmptyString",
1526
- "location":"uri",
1527
- "locationName":"voiceConnectorId"
1528
- },
1529
- "E164PhoneNumbers":{"shape":"E164PhoneNumberList"}
1530
- }
1531
- },
1532
- "DisassociatePhoneNumbersFromVoiceConnectorResponse":{
1533
- "type":"structure",
1534
- "members":{
1535
- "PhoneNumberErrors":{"shape":"PhoneNumberErrorList"}
1536
- }
1537
- },
1538
- "E164PhoneNumber":{
1539
- "type":"string",
1540
- "pattern":"^\\+?[1-9]\\d{1,14}$",
1541
- "sensitive":true
1542
- },
1543
- "E164PhoneNumberList":{
1544
- "type":"list",
1545
- "member":{"shape":"E164PhoneNumber"}
1546
- },
1547
- "EmailAddress":{
1548
- "type":"string",
1549
- "pattern":".+@.+\\..+",
1550
- "sensitive":true
1551
- },
1552
- "EmailStatus":{
1553
- "type":"string",
1554
- "enum":[
1555
- "NotSent",
1556
- "Sent",
1557
- "Failed"
1558
- ]
1559
- },
1560
- "ErrorCode":{
1561
- "type":"string",
1562
- "enum":[
1563
- "Unauthorized",
1564
- "Forbidden",
1565
- "NotFound",
1566
- "BadRequest",
1567
- "Conflict",
1568
- "ServiceFailure",
1569
- "ServiceUnavailable",
1570
- "Unprocessable",
1571
- "Throttled",
1572
- "PreconditionFailed"
1573
- ]
1574
- },
1575
- "EventsConfiguration":{
1576
- "type":"structure",
1577
- "members":{
1578
- "BotId":{"shape":"String"},
1579
- "OutboundEventsHTTPSEndpoint":{"shape":"SensitiveString"},
1580
- "LambdaFunctionArn":{"shape":"SensitiveString"}
1581
- }
1582
- },
1583
- "ForbiddenException":{
1584
- "type":"structure",
1585
- "members":{
1586
- "Code":{"shape":"ErrorCode"},
1587
- "Message":{"shape":"String"}
1588
- },
1589
- "error":{"httpStatusCode":403},
1590
- "exception":true
1591
- },
1592
- "GetAccountRequest":{
1593
- "type":"structure",
1594
- "required":["AccountId"],
1595
- "members":{
1596
- "AccountId":{
1597
- "shape":"NonEmptyString",
1598
- "location":"uri",
1599
- "locationName":"accountId"
1600
- }
1601
- }
1602
- },
1603
- "GetAccountResponse":{
1604
- "type":"structure",
1605
- "members":{
1606
- "Account":{"shape":"Account"}
1607
- }
1608
- },
1609
- "GetAccountSettingsRequest":{
1610
- "type":"structure",
1611
- "required":["AccountId"],
1612
- "members":{
1613
- "AccountId":{
1614
- "shape":"NonEmptyString",
1615
- "location":"uri",
1616
- "locationName":"accountId"
1617
- }
1618
- }
1619
- },
1620
- "GetAccountSettingsResponse":{
1621
- "type":"structure",
1622
- "members":{
1623
- "AccountSettings":{"shape":"AccountSettings"}
1624
- }
1625
- },
1626
- "GetBotRequest":{
1627
- "type":"structure",
1628
- "required":[
1629
- "AccountId",
1630
- "BotId"
1631
- ],
1632
- "members":{
1633
- "AccountId":{
1634
- "shape":"NonEmptyString",
1635
- "location":"uri",
1636
- "locationName":"accountId"
1637
- },
1638
- "BotId":{
1639
- "shape":"NonEmptyString",
1640
- "location":"uri",
1641
- "locationName":"botId"
1642
- }
1643
- }
1644
- },
1645
- "GetBotResponse":{
1646
- "type":"structure",
1647
- "members":{
1648
- "Bot":{"shape":"Bot"}
1649
- }
1650
- },
1651
- "GetEventsConfigurationRequest":{
1652
- "type":"structure",
1653
- "required":[
1654
- "AccountId",
1655
- "BotId"
1656
- ],
1657
- "members":{
1658
- "AccountId":{
1659
- "shape":"NonEmptyString",
1660
- "location":"uri",
1661
- "locationName":"accountId"
1662
- },
1663
- "BotId":{
1664
- "shape":"NonEmptyString",
1665
- "location":"uri",
1666
- "locationName":"botId"
1667
- }
1668
- }
1669
- },
1670
- "GetEventsConfigurationResponse":{
1671
- "type":"structure",
1672
- "members":{
1673
- "EventsConfiguration":{"shape":"EventsConfiguration"}
1674
- }
1675
- },
1676
- "GetGlobalSettingsResponse":{
1677
- "type":"structure",
1678
- "members":{
1679
- "BusinessCalling":{"shape":"BusinessCallingSettings"},
1680
- "VoiceConnector":{"shape":"VoiceConnectorSettings"}
1681
- }
1682
- },
1683
- "GetPhoneNumberOrderRequest":{
1684
- "type":"structure",
1685
- "required":["PhoneNumberOrderId"],
1686
- "members":{
1687
- "PhoneNumberOrderId":{
1688
- "shape":"GuidString",
1689
- "location":"uri",
1690
- "locationName":"phoneNumberOrderId"
1691
- }
1692
- }
1693
- },
1694
- "GetPhoneNumberOrderResponse":{
1695
- "type":"structure",
1696
- "members":{
1697
- "PhoneNumberOrder":{"shape":"PhoneNumberOrder"}
1698
- }
1699
- },
1700
- "GetPhoneNumberRequest":{
1701
- "type":"structure",
1702
- "required":["PhoneNumberId"],
1703
- "members":{
1704
- "PhoneNumberId":{
1705
- "shape":"String",
1706
- "location":"uri",
1707
- "locationName":"phoneNumberId"
1708
- }
1709
- }
1710
- },
1711
- "GetPhoneNumberResponse":{
1712
- "type":"structure",
1713
- "members":{
1714
- "PhoneNumber":{"shape":"PhoneNumber"}
1715
- }
1716
- },
1717
- "GetUserRequest":{
1718
- "type":"structure",
1719
- "required":[
1720
- "AccountId",
1721
- "UserId"
1722
- ],
1723
- "members":{
1724
- "AccountId":{
1725
- "shape":"NonEmptyString",
1726
- "location":"uri",
1727
- "locationName":"accountId"
1728
- },
1729
- "UserId":{
1730
- "shape":"NonEmptyString",
1731
- "location":"uri",
1732
- "locationName":"userId"
1733
- }
1734
- }
1735
- },
1736
- "GetUserResponse":{
1737
- "type":"structure",
1738
- "members":{
1739
- "User":{"shape":"User"}
1740
- }
1741
- },
1742
- "GetUserSettingsRequest":{
1743
- "type":"structure",
1744
- "required":[
1745
- "AccountId",
1746
- "UserId"
1747
- ],
1748
- "members":{
1749
- "AccountId":{
1750
- "shape":"String",
1751
- "location":"uri",
1752
- "locationName":"accountId"
1753
- },
1754
- "UserId":{
1755
- "shape":"String",
1756
- "location":"uri",
1757
- "locationName":"userId"
1758
- }
1759
- }
1760
- },
1761
- "GetUserSettingsResponse":{
1762
- "type":"structure",
1763
- "members":{
1764
- "UserSettings":{"shape":"UserSettings"}
1765
- }
1766
- },
1767
- "GetVoiceConnectorOriginationRequest":{
1768
- "type":"structure",
1769
- "required":["VoiceConnectorId"],
1770
- "members":{
1771
- "VoiceConnectorId":{
1772
- "shape":"NonEmptyString",
1773
- "location":"uri",
1774
- "locationName":"voiceConnectorId"
1775
- }
1776
- }
1777
- },
1778
- "GetVoiceConnectorOriginationResponse":{
1779
- "type":"structure",
1780
- "members":{
1781
- "Origination":{"shape":"Origination"}
1782
- }
1783
- },
1784
- "GetVoiceConnectorRequest":{
1785
- "type":"structure",
1786
- "required":["VoiceConnectorId"],
1787
- "members":{
1788
- "VoiceConnectorId":{
1789
- "shape":"NonEmptyString",
1790
- "location":"uri",
1791
- "locationName":"voiceConnectorId"
1792
- }
1793
- }
1794
- },
1795
- "GetVoiceConnectorResponse":{
1796
- "type":"structure",
1797
- "members":{
1798
- "VoiceConnector":{"shape":"VoiceConnector"}
1799
- }
1800
- },
1801
- "GetVoiceConnectorTerminationHealthRequest":{
1802
- "type":"structure",
1803
- "required":["VoiceConnectorId"],
1804
- "members":{
1805
- "VoiceConnectorId":{
1806
- "shape":"NonEmptyString",
1807
- "location":"uri",
1808
- "locationName":"voiceConnectorId"
1809
- }
1810
- }
1811
- },
1812
- "GetVoiceConnectorTerminationHealthResponse":{
1813
- "type":"structure",
1814
- "members":{
1815
- "TerminationHealth":{"shape":"TerminationHealth"}
1816
- }
1817
- },
1818
- "GetVoiceConnectorTerminationRequest":{
1819
- "type":"structure",
1820
- "required":["VoiceConnectorId"],
1821
- "members":{
1822
- "VoiceConnectorId":{
1823
- "shape":"NonEmptyString",
1824
- "location":"uri",
1825
- "locationName":"voiceConnectorId"
1826
- }
1827
- }
1828
- },
1829
- "GetVoiceConnectorTerminationResponse":{
1830
- "type":"structure",
1831
- "members":{
1832
- "Termination":{"shape":"Termination"}
1833
- }
1834
- },
1835
- "GuidString":{
1836
- "type":"string",
1837
- "pattern":"[a-fA-F0-9]{8}(?:-[a-fA-F0-9]{4}){3}-[a-fA-F0-9]{12}"
1838
- },
1839
- "Invite":{
1840
- "type":"structure",
1841
- "members":{
1842
- "InviteId":{"shape":"String"},
1843
- "Status":{"shape":"InviteStatus"},
1844
- "EmailAddress":{"shape":"EmailAddress"},
1845
- "EmailStatus":{"shape":"EmailStatus"}
1846
- }
1847
- },
1848
- "InviteList":{
1849
- "type":"list",
1850
- "member":{"shape":"Invite"}
1851
- },
1852
- "InviteStatus":{
1853
- "type":"string",
1854
- "enum":[
1855
- "Pending",
1856
- "Accepted",
1857
- "Failed"
1858
- ]
1859
- },
1860
- "InviteUsersRequest":{
1861
- "type":"structure",
1862
- "required":[
1863
- "AccountId",
1864
- "UserEmailList"
1865
- ],
1866
- "members":{
1867
- "AccountId":{
1868
- "shape":"NonEmptyString",
1869
- "location":"uri",
1870
- "locationName":"accountId"
1871
- },
1872
- "UserEmailList":{"shape":"UserEmailList"}
1873
- }
1874
- },
1875
- "InviteUsersResponse":{
1876
- "type":"structure",
1877
- "members":{
1878
- "Invites":{"shape":"InviteList"}
1879
- }
1880
- },
1881
- "Iso8601Timestamp":{
1882
- "type":"timestamp",
1883
- "timestampFormat":"iso8601"
1884
- },
1885
- "License":{
1886
- "type":"string",
1887
- "enum":[
1888
- "Basic",
1889
- "Plus",
1890
- "Pro",
1891
- "ProTrial"
1892
- ]
1893
- },
1894
- "LicenseList":{
1895
- "type":"list",
1896
- "member":{"shape":"License"}
1897
- },
1898
- "ListAccountsRequest":{
1899
- "type":"structure",
1900
- "members":{
1901
- "Name":{
1902
- "shape":"AccountName",
1903
- "location":"querystring",
1904
- "locationName":"name"
1905
- },
1906
- "UserEmail":{
1907
- "shape":"EmailAddress",
1908
- "location":"querystring",
1909
- "locationName":"user-email"
1910
- },
1911
- "NextToken":{
1912
- "shape":"String",
1913
- "location":"querystring",
1914
- "locationName":"next-token"
1915
- },
1916
- "MaxResults":{
1917
- "shape":"ProfileServiceMaxResults",
1918
- "location":"querystring",
1919
- "locationName":"max-results"
1920
- }
1921
- }
1922
- },
1923
- "ListAccountsResponse":{
1924
- "type":"structure",
1925
- "members":{
1926
- "Accounts":{"shape":"AccountList"},
1927
- "NextToken":{"shape":"String"}
1928
- }
1929
- },
1930
- "ListBotsRequest":{
1931
- "type":"structure",
1932
- "required":["AccountId"],
1933
- "members":{
1934
- "AccountId":{
1935
- "shape":"NonEmptyString",
1936
- "location":"uri",
1937
- "locationName":"accountId"
1938
- },
1939
- "MaxResults":{
1940
- "shape":"ResultMax",
1941
- "location":"querystring",
1942
- "locationName":"max-results"
1943
- },
1944
- "NextToken":{
1945
- "shape":"String",
1946
- "location":"querystring",
1947
- "locationName":"next-token"
1948
- }
1949
- }
1950
- },
1951
- "ListBotsResponse":{
1952
- "type":"structure",
1953
- "members":{
1954
- "Bots":{"shape":"BotList"},
1955
- "NextToken":{"shape":"String"}
1956
- }
1957
- },
1958
- "ListPhoneNumberOrdersRequest":{
1959
- "type":"structure",
1960
- "members":{
1961
- "NextToken":{
1962
- "shape":"String",
1963
- "location":"querystring",
1964
- "locationName":"next-token"
1965
- },
1966
- "MaxResults":{
1967
- "shape":"ResultMax",
1968
- "location":"querystring",
1969
- "locationName":"max-results"
1970
- }
1971
- }
1972
- },
1973
- "ListPhoneNumberOrdersResponse":{
1974
- "type":"structure",
1975
- "members":{
1976
- "PhoneNumberOrders":{"shape":"PhoneNumberOrderList"},
1977
- "NextToken":{"shape":"String"}
1978
- }
1979
- },
1980
- "ListPhoneNumbersRequest":{
1981
- "type":"structure",
1982
- "members":{
1983
- "Status":{
1984
- "shape":"PhoneNumberStatus",
1985
- "location":"querystring",
1986
- "locationName":"status"
1987
- },
1988
- "ProductType":{
1989
- "shape":"PhoneNumberProductType",
1990
- "location":"querystring",
1991
- "locationName":"product-type"
1992
- },
1993
- "FilterName":{
1994
- "shape":"PhoneNumberAssociationName",
1995
- "location":"querystring",
1996
- "locationName":"filter-name"
1997
- },
1998
- "FilterValue":{
1999
- "shape":"String",
2000
- "location":"querystring",
2001
- "locationName":"filter-value"
2002
- },
2003
- "MaxResults":{
2004
- "shape":"ResultMax",
2005
- "location":"querystring",
2006
- "locationName":"max-results"
2007
- },
2008
- "NextToken":{
2009
- "shape":"String",
2010
- "location":"querystring",
2011
- "locationName":"next-token"
2012
- }
2013
- }
2014
- },
2015
- "ListPhoneNumbersResponse":{
2016
- "type":"structure",
2017
- "members":{
2018
- "PhoneNumbers":{"shape":"PhoneNumberList"},
2019
- "NextToken":{"shape":"String"}
2020
- }
2021
- },
2022
- "ListUsersRequest":{
2023
- "type":"structure",
2024
- "required":["AccountId"],
2025
- "members":{
2026
- "AccountId":{
2027
- "shape":"NonEmptyString",
2028
- "location":"uri",
2029
- "locationName":"accountId"
2030
- },
2031
- "UserEmail":{
2032
- "shape":"EmailAddress",
2033
- "location":"querystring",
2034
- "locationName":"user-email"
2035
- },
2036
- "MaxResults":{
2037
- "shape":"ProfileServiceMaxResults",
2038
- "location":"querystring",
2039
- "locationName":"max-results"
2040
- },
2041
- "NextToken":{
2042
- "shape":"String",
2043
- "location":"querystring",
2044
- "locationName":"next-token"
2045
- }
2046
- }
2047
- },
2048
- "ListUsersResponse":{
2049
- "type":"structure",
2050
- "members":{
2051
- "Users":{"shape":"UserList"},
2052
- "NextToken":{"shape":"String"}
2053
- }
2054
- },
2055
- "ListVoiceConnectorTerminationCredentialsRequest":{
2056
- "type":"structure",
2057
- "required":["VoiceConnectorId"],
2058
- "members":{
2059
- "VoiceConnectorId":{
2060
- "shape":"NonEmptyString",
2061
- "location":"uri",
2062
- "locationName":"voiceConnectorId"
2063
- }
2064
- }
2065
- },
2066
- "ListVoiceConnectorTerminationCredentialsResponse":{
2067
- "type":"structure",
2068
- "members":{
2069
- "Usernames":{"shape":"SensitiveStringList"}
2070
- }
2071
- },
2072
- "ListVoiceConnectorsRequest":{
2073
- "type":"structure",
2074
- "members":{
2075
- "NextToken":{
2076
- "shape":"String",
2077
- "location":"querystring",
2078
- "locationName":"next-token"
2079
- },
2080
- "MaxResults":{
2081
- "shape":"ResultMax",
2082
- "location":"querystring",
2083
- "locationName":"max-results"
2084
- }
2085
- }
2086
- },
2087
- "ListVoiceConnectorsResponse":{
2088
- "type":"structure",
2089
- "members":{
2090
- "VoiceConnectors":{"shape":"VoiceConnectorList"},
2091
- "NextToken":{"shape":"String"}
2092
- }
2093
- },
2094
- "LogoutUserRequest":{
2095
- "type":"structure",
2096
- "required":[
2097
- "AccountId",
2098
- "UserId"
2099
- ],
2100
- "members":{
2101
- "AccountId":{
2102
- "shape":"NonEmptyString",
2103
- "location":"uri",
2104
- "locationName":"accountId"
2105
- },
2106
- "UserId":{
2107
- "shape":"NonEmptyString",
2108
- "location":"uri",
2109
- "locationName":"userId"
2110
- }
2111
- }
2112
- },
2113
- "LogoutUserResponse":{
2114
- "type":"structure",
2115
- "members":{
2116
- }
2117
- },
2118
- "NonEmptyString":{
2119
- "type":"string",
2120
- "pattern":".*\\S.*"
2121
- },
2122
- "NonEmptyStringList":{
2123
- "type":"list",
2124
- "member":{"shape":"String"},
2125
- "min":1
2126
- },
2127
- "NotFoundException":{
2128
- "type":"structure",
2129
- "members":{
2130
- "Code":{"shape":"ErrorCode"},
2131
- "Message":{"shape":"String"}
2132
- },
2133
- "error":{"httpStatusCode":404},
2134
- "exception":true
2135
- },
2136
- "NullableBoolean":{"type":"boolean"},
2137
- "OrderedPhoneNumber":{
2138
- "type":"structure",
2139
- "members":{
2140
- "E164PhoneNumber":{"shape":"E164PhoneNumber"},
2141
- "Status":{"shape":"OrderedPhoneNumberStatus"}
2142
- }
2143
- },
2144
- "OrderedPhoneNumberList":{
2145
- "type":"list",
2146
- "member":{"shape":"OrderedPhoneNumber"}
2147
- },
2148
- "OrderedPhoneNumberStatus":{
2149
- "type":"string",
2150
- "enum":[
2151
- "Processing",
2152
- "Acquired",
2153
- "Failed"
2154
- ]
2155
- },
2156
- "Origination":{
2157
- "type":"structure",
2158
- "members":{
2159
- "Routes":{"shape":"OriginationRouteList"},
2160
- "Disabled":{"shape":"Boolean"}
2161
- }
2162
- },
2163
- "OriginationRoute":{
2164
- "type":"structure",
2165
- "members":{
2166
- "Host":{"shape":"String"},
2167
- "Port":{"shape":"Port"},
2168
- "Protocol":{"shape":"OriginationRouteProtocol"},
2169
- "Priority":{"shape":"OriginationRoutePriority"},
2170
- "Weight":{"shape":"OriginationRouteWeight"}
2171
- }
2172
- },
2173
- "OriginationRouteList":{
2174
- "type":"list",
2175
- "member":{"shape":"OriginationRoute"}
2176
- },
2177
- "OriginationRoutePriority":{
2178
- "type":"integer",
2179
- "max":100,
2180
- "min":1
2181
- },
2182
- "OriginationRouteProtocol":{
2183
- "type":"string",
2184
- "enum":[
2185
- "TCP",
2186
- "UDP"
2187
- ]
2188
- },
2189
- "OriginationRouteWeight":{
2190
- "type":"integer",
2191
- "max":100,
2192
- "min":1
2193
- },
2194
- "PhoneNumber":{
2195
- "type":"structure",
2196
- "members":{
2197
- "PhoneNumberId":{"shape":"String"},
2198
- "E164PhoneNumber":{"shape":"E164PhoneNumber"},
2199
- "Type":{"shape":"PhoneNumberType"},
2200
- "ProductType":{"shape":"PhoneNumberProductType"},
2201
- "Status":{"shape":"PhoneNumberStatus"},
2202
- "Capabilities":{"shape":"PhoneNumberCapabilities"},
2203
- "Associations":{"shape":"PhoneNumberAssociationList"},
2204
- "CreatedTimestamp":{"shape":"Iso8601Timestamp"},
2205
- "UpdatedTimestamp":{"shape":"Iso8601Timestamp"},
2206
- "DeletionTimestamp":{"shape":"Iso8601Timestamp"}
2207
- }
2208
- },
2209
- "PhoneNumberAssociation":{
2210
- "type":"structure",
2211
- "members":{
2212
- "Value":{"shape":"String"},
2213
- "Name":{"shape":"PhoneNumberAssociationName"},
2214
- "AssociatedTimestamp":{"shape":"Iso8601Timestamp"}
2215
- }
2216
- },
2217
- "PhoneNumberAssociationList":{
2218
- "type":"list",
2219
- "member":{"shape":"PhoneNumberAssociation"}
2220
- },
2221
- "PhoneNumberAssociationName":{
2222
- "type":"string",
2223
- "enum":[
2224
- "AccountId",
2225
- "UserId",
2226
- "VoiceConnectorId"
2227
- ]
2228
- },
2229
- "PhoneNumberCapabilities":{
2230
- "type":"structure",
2231
- "members":{
2232
- "InboundCall":{"shape":"NullableBoolean"},
2233
- "OutboundCall":{"shape":"NullableBoolean"},
2234
- "InboundSMS":{"shape":"NullableBoolean"},
2235
- "OutboundSMS":{"shape":"NullableBoolean"},
2236
- "InboundMMS":{"shape":"NullableBoolean"},
2237
- "OutboundMMS":{"shape":"NullableBoolean"}
2238
- }
2239
- },
2240
- "PhoneNumberError":{
2241
- "type":"structure",
2242
- "members":{
2243
- "PhoneNumberId":{"shape":"NonEmptyString"},
2244
- "ErrorCode":{"shape":"ErrorCode"},
2245
- "ErrorMessage":{"shape":"String"}
2246
- }
2247
- },
2248
- "PhoneNumberErrorList":{
2249
- "type":"list",
2250
- "member":{"shape":"PhoneNumberError"}
2251
- },
2252
- "PhoneNumberList":{
2253
- "type":"list",
2254
- "member":{"shape":"PhoneNumber"}
2255
- },
2256
- "PhoneNumberMaxResults":{
2257
- "type":"integer",
2258
- "max":500,
2259
- "min":1
2260
- },
2261
- "PhoneNumberOrder":{
2262
- "type":"structure",
2263
- "members":{
2264
- "PhoneNumberOrderId":{"shape":"GuidString"},
2265
- "ProductType":{"shape":"PhoneNumberProductType"},
2266
- "Status":{"shape":"PhoneNumberOrderStatus"},
2267
- "OrderedPhoneNumbers":{"shape":"OrderedPhoneNumberList"},
2268
- "CreatedTimestamp":{"shape":"Iso8601Timestamp"},
2269
- "UpdatedTimestamp":{"shape":"Iso8601Timestamp"}
2270
- }
2271
- },
2272
- "PhoneNumberOrderList":{
2273
- "type":"list",
2274
- "member":{"shape":"PhoneNumberOrder"}
2275
- },
2276
- "PhoneNumberOrderStatus":{
2277
- "type":"string",
2278
- "enum":[
2279
- "Processing",
2280
- "Successful",
2281
- "Failed",
2282
- "Partial"
2283
- ]
2284
- },
2285
- "PhoneNumberProductType":{
2286
- "type":"string",
2287
- "enum":[
2288
- "BusinessCalling",
2289
- "VoiceConnector"
2290
- ]
2291
- },
2292
- "PhoneNumberStatus":{
2293
- "type":"string",
2294
- "enum":[
2295
- "AcquireInProgress",
2296
- "AcquireFailed",
2297
- "Unassigned",
2298
- "Assigned",
2299
- "ReleaseInProgress",
2300
- "DeleteInProgress",
2301
- "ReleaseFailed",
2302
- "DeleteFailed"
2303
- ]
2304
- },
2305
- "PhoneNumberType":{
2306
- "type":"string",
2307
- "enum":[
2308
- "Local",
2309
- "TollFree"
2310
- ]
2311
- },
2312
- "Port":{
2313
- "type":"integer",
2314
- "max":65535,
2315
- "min":0
2316
- },
2317
- "ProfileServiceMaxResults":{
2318
- "type":"integer",
2319
- "max":200,
2320
- "min":1
2321
- },
2322
- "PutEventsConfigurationRequest":{
2323
- "type":"structure",
2324
- "required":[
2325
- "AccountId",
2326
- "BotId"
2327
- ],
2328
- "members":{
2329
- "AccountId":{
2330
- "shape":"NonEmptyString",
2331
- "location":"uri",
2332
- "locationName":"accountId"
2333
- },
2334
- "BotId":{
2335
- "shape":"NonEmptyString",
2336
- "location":"uri",
2337
- "locationName":"botId"
2338
- },
2339
- "OutboundEventsHTTPSEndpoint":{"shape":"SensitiveString"},
2340
- "LambdaFunctionArn":{"shape":"SensitiveString"}
2341
- }
2342
- },
2343
- "PutEventsConfigurationResponse":{
2344
- "type":"structure",
2345
- "members":{
2346
- "EventsConfiguration":{"shape":"EventsConfiguration"}
2347
- }
2348
- },
2349
- "PutVoiceConnectorOriginationRequest":{
2350
- "type":"structure",
2351
- "required":[
2352
- "VoiceConnectorId",
2353
- "Origination"
2354
- ],
2355
- "members":{
2356
- "VoiceConnectorId":{
2357
- "shape":"NonEmptyString",
2358
- "location":"uri",
2359
- "locationName":"voiceConnectorId"
2360
- },
2361
- "Origination":{"shape":"Origination"}
2362
- }
2363
- },
2364
- "PutVoiceConnectorOriginationResponse":{
2365
- "type":"structure",
2366
- "members":{
2367
- "Origination":{"shape":"Origination"}
2368
- }
2369
- },
2370
- "PutVoiceConnectorTerminationCredentialsRequest":{
2371
- "type":"structure",
2372
- "required":["VoiceConnectorId"],
2373
- "members":{
2374
- "VoiceConnectorId":{
2375
- "shape":"NonEmptyString",
2376
- "location":"uri",
2377
- "locationName":"voiceConnectorId"
2378
- },
2379
- "Credentials":{"shape":"CredentialList"}
2380
- }
2381
- },
2382
- "PutVoiceConnectorTerminationRequest":{
2383
- "type":"structure",
2384
- "required":[
2385
- "VoiceConnectorId",
2386
- "Termination"
2387
- ],
2388
- "members":{
2389
- "VoiceConnectorId":{
2390
- "shape":"NonEmptyString",
2391
- "location":"uri",
2392
- "locationName":"voiceConnectorId"
2393
- },
2394
- "Termination":{"shape":"Termination"}
2395
- }
2396
- },
2397
- "PutVoiceConnectorTerminationResponse":{
2398
- "type":"structure",
2399
- "members":{
2400
- "Termination":{"shape":"Termination"}
2401
- }
2402
- },
2403
- "RegenerateSecurityTokenRequest":{
2404
- "type":"structure",
2405
- "required":[
2406
- "AccountId",
2407
- "BotId"
2408
- ],
2409
- "members":{
2410
- "AccountId":{
2411
- "shape":"NonEmptyString",
2412
- "location":"uri",
2413
- "locationName":"accountId"
2414
- },
2415
- "BotId":{
2416
- "shape":"NonEmptyString",
2417
- "location":"uri",
2418
- "locationName":"botId"
2419
- }
2420
- }
2421
- },
2422
- "RegenerateSecurityTokenResponse":{
2423
- "type":"structure",
2424
- "members":{
2425
- "Bot":{"shape":"Bot"}
2426
- }
2427
- },
2428
- "RegistrationStatus":{
2429
- "type":"string",
2430
- "enum":[
2431
- "Unregistered",
2432
- "Registered",
2433
- "Suspended"
2434
- ]
2435
- },
2436
- "ResetPersonalPINRequest":{
2437
- "type":"structure",
2438
- "required":[
2439
- "AccountId",
2440
- "UserId"
2441
- ],
2442
- "members":{
2443
- "AccountId":{
2444
- "shape":"NonEmptyString",
2445
- "location":"uri",
2446
- "locationName":"accountId"
2447
- },
2448
- "UserId":{
2449
- "shape":"NonEmptyString",
2450
- "location":"uri",
2451
- "locationName":"userId"
2452
- }
2453
- }
2454
- },
2455
- "ResetPersonalPINResponse":{
2456
- "type":"structure",
2457
- "members":{
2458
- "User":{"shape":"User"}
2459
- }
2460
- },
2461
- "ResourceLimitExceededException":{
2462
- "type":"structure",
2463
- "members":{
2464
- "Code":{"shape":"ErrorCode"},
2465
- "Message":{"shape":"String"}
2466
- },
2467
- "error":{"httpStatusCode":400},
2468
- "exception":true
2469
- },
2470
- "RestorePhoneNumberRequest":{
2471
- "type":"structure",
2472
- "required":["PhoneNumberId"],
2473
- "members":{
2474
- "PhoneNumberId":{
2475
- "shape":"NonEmptyString",
2476
- "location":"uri",
2477
- "locationName":"phoneNumberId"
2478
- }
2479
- }
2480
- },
2481
- "RestorePhoneNumberResponse":{
2482
- "type":"structure",
2483
- "members":{
2484
- "PhoneNumber":{"shape":"PhoneNumber"}
2485
- }
2486
- },
2487
- "ResultMax":{
2488
- "type":"integer",
2489
- "max":99,
2490
- "min":1
2491
- },
2492
- "SearchAvailablePhoneNumbersRequest":{
2493
- "type":"structure",
2494
- "members":{
2495
- "AreaCode":{
2496
- "shape":"String",
2497
- "location":"querystring",
2498
- "locationName":"area-code"
2499
- },
2500
- "City":{
2501
- "shape":"String",
2502
- "location":"querystring",
2503
- "locationName":"city"
2504
- },
2505
- "Country":{
2506
- "shape":"String",
2507
- "location":"querystring",
2508
- "locationName":"country"
2509
- },
2510
- "State":{
2511
- "shape":"String",
2512
- "location":"querystring",
2513
- "locationName":"state"
2514
- },
2515
- "TollFreePrefix":{
2516
- "shape":"TollFreePrefix",
2517
- "location":"querystring",
2518
- "locationName":"toll-free-prefix"
2519
- },
2520
- "MaxResults":{
2521
- "shape":"PhoneNumberMaxResults",
2522
- "location":"querystring",
2523
- "locationName":"max-results"
2524
- },
2525
- "NextToken":{
2526
- "shape":"String",
2527
- "location":"querystring",
2528
- "locationName":"next-token"
2529
- }
2530
- }
2531
- },
2532
- "SearchAvailablePhoneNumbersResponse":{
2533
- "type":"structure",
2534
- "members":{
2535
- "E164PhoneNumbers":{"shape":"E164PhoneNumberList"}
2536
- }
2537
- },
2538
- "SensitiveString":{
2539
- "type":"string",
2540
- "sensitive":true
2541
- },
2542
- "SensitiveStringList":{
2543
- "type":"list",
2544
- "member":{"shape":"SensitiveString"}
2545
- },
2546
- "ServiceFailureException":{
2547
- "type":"structure",
2548
- "members":{
2549
- "Code":{"shape":"ErrorCode"},
2550
- "Message":{"shape":"String"}
2551
- },
2552
- "error":{"httpStatusCode":500},
2553
- "exception":true,
2554
- "fault":true
2555
- },
2556
- "ServiceUnavailableException":{
2557
- "type":"structure",
2558
- "members":{
2559
- "Code":{"shape":"ErrorCode"},
2560
- "Message":{"shape":"String"}
2561
- },
2562
- "error":{"httpStatusCode":503},
2563
- "exception":true,
2564
- "fault":true
2565
- },
2566
- "String":{"type":"string"},
2567
- "StringList":{
2568
- "type":"list",
2569
- "member":{"shape":"String"}
2570
- },
2571
- "TelephonySettings":{
2572
- "type":"structure",
2573
- "required":[
2574
- "InboundCalling",
2575
- "OutboundCalling",
2576
- "SMS"
2577
- ],
2578
- "members":{
2579
- "InboundCalling":{"shape":"Boolean"},
2580
- "OutboundCalling":{"shape":"Boolean"},
2581
- "SMS":{"shape":"Boolean"}
2582
- }
2583
- },
2584
- "Termination":{
2585
- "type":"structure",
2586
- "members":{
2587
- "CpsLimit":{"shape":"CpsLimit"},
2588
- "DefaultPhoneNumber":{"shape":"E164PhoneNumber"},
2589
- "CallingRegions":{"shape":"CallingRegionList"},
2590
- "CidrAllowedList":{"shape":"StringList"},
2591
- "Disabled":{"shape":"Boolean"}
2592
- }
2593
- },
2594
- "TerminationHealth":{
2595
- "type":"structure",
2596
- "members":{
2597
- "Timestamp":{"shape":"Iso8601Timestamp"},
2598
- "Source":{"shape":"String"}
2599
- }
2600
- },
2601
- "ThrottledClientException":{
2602
- "type":"structure",
2603
- "members":{
2604
- "Code":{"shape":"ErrorCode"},
2605
- "Message":{"shape":"String"}
2606
- },
2607
- "error":{"httpStatusCode":429},
2608
- "exception":true
2609
- },
2610
- "TollFreePrefix":{
2611
- "type":"string",
2612
- "max":3,
2613
- "min":3,
2614
- "pattern":"^8(00|33|44|55|66|77|88)$"
2615
- },
2616
- "UnauthorizedClientException":{
2617
- "type":"structure",
2618
- "members":{
2619
- "Code":{"shape":"ErrorCode"},
2620
- "Message":{"shape":"String"}
2621
- },
2622
- "error":{"httpStatusCode":401},
2623
- "exception":true
2624
- },
2625
- "UnprocessableEntityException":{
2626
- "type":"structure",
2627
- "members":{
2628
- "Code":{"shape":"ErrorCode"},
2629
- "Message":{"shape":"String"}
2630
- },
2631
- "error":{"httpStatusCode":422},
2632
- "exception":true
2633
- },
2634
- "UpdateAccountRequest":{
2635
- "type":"structure",
2636
- "required":["AccountId"],
2637
- "members":{
2638
- "AccountId":{
2639
- "shape":"NonEmptyString",
2640
- "location":"uri",
2641
- "locationName":"accountId"
2642
- },
2643
- "Name":{"shape":"AccountName"}
2644
- }
2645
- },
2646
- "UpdateAccountResponse":{
2647
- "type":"structure",
2648
- "members":{
2649
- "Account":{"shape":"Account"}
2650
- }
2651
- },
2652
- "UpdateAccountSettingsRequest":{
2653
- "type":"structure",
2654
- "required":[
2655
- "AccountId",
2656
- "AccountSettings"
2657
- ],
2658
- "members":{
2659
- "AccountId":{
2660
- "shape":"NonEmptyString",
2661
- "location":"uri",
2662
- "locationName":"accountId"
2663
- },
2664
- "AccountSettings":{"shape":"AccountSettings"}
2665
- }
2666
- },
2667
- "UpdateAccountSettingsResponse":{
2668
- "type":"structure",
2669
- "members":{
2670
- }
2671
- },
2672
- "UpdateBotRequest":{
2673
- "type":"structure",
2674
- "required":[
2675
- "AccountId",
2676
- "BotId"
2677
- ],
2678
- "members":{
2679
- "AccountId":{
2680
- "shape":"NonEmptyString",
2681
- "location":"uri",
2682
- "locationName":"accountId"
2683
- },
2684
- "BotId":{
2685
- "shape":"NonEmptyString",
2686
- "location":"uri",
2687
- "locationName":"botId"
2688
- },
2689
- "Disabled":{"shape":"NullableBoolean"}
2690
- }
2691
- },
2692
- "UpdateBotResponse":{
2693
- "type":"structure",
2694
- "members":{
2695
- "Bot":{"shape":"Bot"}
2696
- }
2697
- },
2698
- "UpdateGlobalSettingsRequest":{
2699
- "type":"structure",
2700
- "required":[
2701
- "BusinessCalling",
2702
- "VoiceConnector"
2703
- ],
2704
- "members":{
2705
- "BusinessCalling":{"shape":"BusinessCallingSettings"},
2706
- "VoiceConnector":{"shape":"VoiceConnectorSettings"}
2707
- }
2708
- },
2709
- "UpdatePhoneNumberRequest":{
2710
- "type":"structure",
2711
- "required":["PhoneNumberId"],
2712
- "members":{
2713
- "PhoneNumberId":{
2714
- "shape":"String",
2715
- "location":"uri",
2716
- "locationName":"phoneNumberId"
2717
- },
2718
- "ProductType":{"shape":"PhoneNumberProductType"}
2719
- }
2720
- },
2721
- "UpdatePhoneNumberRequestItem":{
2722
- "type":"structure",
2723
- "required":["PhoneNumberId"],
2724
- "members":{
2725
- "PhoneNumberId":{"shape":"NonEmptyString"},
2726
- "ProductType":{"shape":"PhoneNumberProductType"}
2727
- }
2728
- },
2729
- "UpdatePhoneNumberRequestItemList":{
2730
- "type":"list",
2731
- "member":{"shape":"UpdatePhoneNumberRequestItem"}
2732
- },
2733
- "UpdatePhoneNumberResponse":{
2734
- "type":"structure",
2735
- "members":{
2736
- "PhoneNumber":{"shape":"PhoneNumber"}
2737
- }
2738
- },
2739
- "UpdateUserRequest":{
2740
- "type":"structure",
2741
- "required":[
2742
- "AccountId",
2743
- "UserId"
2744
- ],
2745
- "members":{
2746
- "AccountId":{
2747
- "shape":"NonEmptyString",
2748
- "location":"uri",
2749
- "locationName":"accountId"
2750
- },
2751
- "UserId":{
2752
- "shape":"NonEmptyString",
2753
- "location":"uri",
2754
- "locationName":"userId"
2755
- },
2756
- "LicenseType":{"shape":"License"}
2757
- }
2758
- },
2759
- "UpdateUserRequestItem":{
2760
- "type":"structure",
2761
- "required":["UserId"],
2762
- "members":{
2763
- "UserId":{"shape":"NonEmptyString"},
2764
- "LicenseType":{"shape":"License"}
2765
- }
2766
- },
2767
- "UpdateUserRequestItemList":{
2768
- "type":"list",
2769
- "member":{"shape":"UpdateUserRequestItem"},
2770
- "max":20
2771
- },
2772
- "UpdateUserResponse":{
2773
- "type":"structure",
2774
- "members":{
2775
- "User":{"shape":"User"}
2776
- }
2777
- },
2778
- "UpdateUserSettingsRequest":{
2779
- "type":"structure",
2780
- "required":[
2781
- "AccountId",
2782
- "UserId",
2783
- "UserSettings"
2784
- ],
2785
- "members":{
2786
- "AccountId":{
2787
- "shape":"String",
2788
- "location":"uri",
2789
- "locationName":"accountId"
2790
- },
2791
- "UserId":{
2792
- "shape":"String",
2793
- "location":"uri",
2794
- "locationName":"userId"
2795
- },
2796
- "UserSettings":{"shape":"UserSettings"}
2797
- }
2798
- },
2799
- "UpdateVoiceConnectorRequest":{
2800
- "type":"structure",
2801
- "required":[
2802
- "VoiceConnectorId",
2803
- "Name",
2804
- "RequireEncryption"
2805
- ],
2806
- "members":{
2807
- "VoiceConnectorId":{
2808
- "shape":"NonEmptyString",
2809
- "location":"uri",
2810
- "locationName":"voiceConnectorId"
2811
- },
2812
- "Name":{"shape":"VoiceConnectorName"},
2813
- "RequireEncryption":{"shape":"Boolean"}
2814
- }
2815
- },
2816
- "UpdateVoiceConnectorResponse":{
2817
- "type":"structure",
2818
- "members":{
2819
- "VoiceConnector":{"shape":"VoiceConnector"}
2820
- }
2821
- },
2822
- "User":{
2823
- "type":"structure",
2824
- "required":["UserId"],
2825
- "members":{
2826
- "UserId":{"shape":"String"},
2827
- "AccountId":{"shape":"String"},
2828
- "PrimaryEmail":{"shape":"EmailAddress"},
2829
- "PrimaryProvisionedNumber":{"shape":"SensitiveString"},
2830
- "DisplayName":{"shape":"SensitiveString"},
2831
- "LicenseType":{"shape":"License"},
2832
- "UserRegistrationStatus":{"shape":"RegistrationStatus"},
2833
- "UserInvitationStatus":{"shape":"InviteStatus"},
2834
- "RegisteredOn":{"shape":"Iso8601Timestamp"},
2835
- "InvitedOn":{"shape":"Iso8601Timestamp"},
2836
- "PersonalPIN":{"shape":"String"}
2837
- }
2838
- },
2839
- "UserEmailList":{
2840
- "type":"list",
2841
- "member":{"shape":"EmailAddress"},
2842
- "max":50
2843
- },
2844
- "UserError":{
2845
- "type":"structure",
2846
- "members":{
2847
- "UserId":{"shape":"NonEmptyString"},
2848
- "ErrorCode":{"shape":"ErrorCode"},
2849
- "ErrorMessage":{"shape":"String"}
2850
- }
2851
- },
2852
- "UserErrorList":{
2853
- "type":"list",
2854
- "member":{"shape":"UserError"}
2855
- },
2856
- "UserIdList":{
2857
- "type":"list",
2858
- "member":{"shape":"NonEmptyString"},
2859
- "max":50
2860
- },
2861
- "UserList":{
2862
- "type":"list",
2863
- "member":{"shape":"User"}
2864
- },
2865
- "UserSettings":{
2866
- "type":"structure",
2867
- "required":["Telephony"],
2868
- "members":{
2869
- "Telephony":{"shape":"TelephonySettings"}
2870
- }
2871
- },
2872
- "VoiceConnector":{
2873
- "type":"structure",
2874
- "members":{
2875
- "VoiceConnectorId":{"shape":"NonEmptyString"},
2876
- "Name":{"shape":"VoiceConnectorName"},
2877
- "OutboundHostName":{"shape":"String"},
2878
- "RequireEncryption":{"shape":"Boolean"},
2879
- "CreatedTimestamp":{"shape":"Iso8601Timestamp"},
2880
- "UpdatedTimestamp":{"shape":"Iso8601Timestamp"}
2881
- }
2882
- },
2883
- "VoiceConnectorList":{
2884
- "type":"list",
2885
- "member":{"shape":"VoiceConnector"}
2886
- },
2887
- "VoiceConnectorName":{
2888
- "type":"string",
2889
- "max":256,
2890
- "min":1
2891
- },
2892
- "VoiceConnectorSettings":{
2893
- "type":"structure",
2894
- "members":{
2895
- "CdrBucket":{
2896
- "shape":"String",
2897
- "box":true
2898
- }
2899
- }
2900
- }
2901
- }
2902
- }