aws-sdk-core 2.11.398 → 3.76.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (1204) hide show
  1. checksums.yaml +4 -4
  2. data/VERSION +1 -0
  3. data/lib/aws-sdk-core.rb +84 -560
  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 +0 -29
  17. data/lib/aws-sdk-core/credential_provider_chain.rb +41 -14
  18. data/lib/aws-sdk-core/deprecations.rb +16 -10
  19. data/lib/aws-sdk-core/endpoint_cache.rb +14 -11
  20. data/lib/aws-sdk-core/errors.rb +123 -22
  21. data/lib/aws-sdk-core/event_emitter.rb +62 -0
  22. data/lib/aws-sdk-core/ini_parser.rb +1 -0
  23. data/lib/aws-sdk-core/instance_profile_credentials.rb +4 -3
  24. data/lib/aws-sdk-core/json.rb +9 -10
  25. data/lib/aws-sdk-core/json/builder.rb +4 -2
  26. data/lib/aws-sdk-core/json/error_handler.rb +19 -2
  27. data/lib/aws-sdk-core/json/handler.rb +22 -3
  28. data/lib/aws-sdk-core/json/parser.rb +1 -1
  29. data/lib/aws-sdk-core/log/param_filter.rb +4 -3
  30. data/lib/aws-sdk-core/pageable_response.rb +1 -0
  31. data/lib/aws-sdk-core/pager.rb +30 -25
  32. data/lib/aws-sdk-core/param_converter.rb +3 -3
  33. data/lib/aws-sdk-core/param_validator.rb +60 -26
  34. data/lib/aws-sdk-core/plugins/api_key.rb +52 -0
  35. data/lib/aws-sdk-core/plugins/apig_authorizer_token.rb +30 -0
  36. data/lib/aws-sdk-core/plugins/apig_credentials_configuration.rb +34 -0
  37. data/lib/aws-sdk-core/plugins/apig_user_agent.rb +37 -0
  38. data/lib/aws-sdk-core/plugins/client_metrics_plugin.rb +280 -0
  39. data/lib/aws-sdk-core/plugins/client_metrics_send_plugin.rb +84 -0
  40. data/lib/aws-sdk-core/plugins/credentials_configuration.rb +62 -0
  41. data/lib/aws-sdk-core/plugins/endpoint_discovery.rb +43 -50
  42. data/lib/aws-sdk-core/plugins/endpoint_pattern.rb +9 -8
  43. data/lib/aws-sdk-core/plugins/event_stream_configuration.rb +30 -0
  44. data/lib/aws-sdk-core/plugins/global_configuration.rb +19 -10
  45. data/lib/aws-sdk-core/plugins/idempotency_token.rb +1 -2
  46. data/lib/aws-sdk-core/plugins/invocation_id.rb +33 -0
  47. data/lib/aws-sdk-core/plugins/logging.rb +18 -18
  48. data/lib/aws-sdk-core/plugins/param_converter.rb +9 -5
  49. data/lib/aws-sdk-core/plugins/param_validator.rb +8 -5
  50. data/lib/aws-sdk-core/plugins/protocols/api_gateway.rb +10 -0
  51. data/lib/aws-sdk-core/plugins/protocols/ec2.rb +2 -1
  52. data/lib/aws-sdk-core/plugins/protocols/json_rpc.rb +13 -12
  53. data/lib/aws-sdk-core/plugins/protocols/query.rb +2 -2
  54. data/lib/aws-sdk-core/plugins/regional_endpoint.rb +24 -16
  55. data/lib/aws-sdk-core/plugins/response_paging.rb +5 -18
  56. data/lib/aws-sdk-core/plugins/retry_errors.rb +81 -25
  57. data/lib/aws-sdk-core/plugins/signature_v2.rb +51 -0
  58. data/lib/aws-sdk-core/plugins/signature_v4.rb +141 -0
  59. data/lib/aws-sdk-core/plugins/stub_responses.rb +35 -18
  60. data/lib/aws-sdk-core/plugins/transfer_encoding.rb +53 -0
  61. data/lib/aws-sdk-core/plugins/user_agent.rb +23 -6
  62. data/lib/aws-sdk-core/process_credentials.rb +80 -0
  63. data/lib/aws-sdk-core/query.rb +5 -0
  64. data/lib/aws-sdk-core/query/ec2_param_builder.rb +9 -3
  65. data/lib/aws-sdk-core/query/handler.rb +20 -16
  66. data/lib/aws-sdk-core/query/param_builder.rb +10 -4
  67. data/lib/aws-sdk-core/refreshing_credentials.rb +1 -1
  68. data/lib/aws-sdk-core/resources/collection.rb +121 -0
  69. data/lib/aws-sdk-core/rest.rb +10 -0
  70. data/lib/aws-sdk-core/rest/handler.rb +1 -0
  71. data/lib/aws-sdk-core/rest/request/builder.rb +2 -1
  72. data/lib/aws-sdk-core/rest/request/endpoint.rb +3 -3
  73. data/lib/aws-sdk-core/rest/request/headers.rb +11 -1
  74. data/lib/aws-sdk-core/rest/request/querystring_builder.rb +13 -0
  75. data/lib/aws-sdk-core/rest/response/body.rb +14 -1
  76. data/lib/aws-sdk-core/rest/response/headers.rb +2 -0
  77. data/lib/aws-sdk-core/rest/response/parser.rb +18 -14
  78. data/lib/aws-sdk-core/shared_config.rb +172 -15
  79. data/lib/aws-sdk-core/shared_credentials.rb +2 -0
  80. data/lib/aws-sdk-core/structure.rb +22 -13
  81. data/lib/aws-sdk-core/stubbing/data_applicator.rb +1 -1
  82. data/lib/aws-sdk-core/stubbing/empty_stub.rb +10 -3
  83. data/lib/aws-sdk-core/stubbing/protocols/api_gateway.rb +8 -0
  84. data/lib/aws-sdk-core/stubbing/protocols/ec2.rb +1 -1
  85. data/lib/aws-sdk-core/stubbing/protocols/rest.rb +92 -0
  86. data/lib/aws-sdk-core/stubbing/protocols/rest_json.rb +5 -1
  87. data/lib/aws-sdk-core/stubbing/protocols/rest_xml.rb +9 -5
  88. data/lib/aws-sdk-core/stubbing/stub_data.rb +16 -3
  89. data/lib/aws-sdk-core/util.rb +66 -0
  90. data/lib/aws-sdk-core/waiters.rb +3 -0
  91. data/lib/aws-sdk-core/waiters/poller.rb +5 -9
  92. data/lib/aws-sdk-core/waiters/waiter.rb +1 -0
  93. data/lib/aws-sdk-core/xml.rb +9 -0
  94. data/lib/aws-sdk-core/xml/builder.rb +11 -5
  95. data/lib/aws-sdk-core/xml/error_handler.rb +27 -5
  96. data/lib/aws-sdk-core/xml/parser.rb +1 -11
  97. data/lib/aws-sdk-core/xml/parser/frame.rb +6 -6
  98. data/lib/aws-sdk-sts.rb +45 -0
  99. data/lib/aws-sdk-sts/client.rb +1840 -0
  100. data/lib/aws-sdk-sts/client_api.rb +320 -0
  101. data/lib/aws-sdk-sts/customizations.rb +0 -0
  102. data/lib/aws-sdk-sts/errors.rb +142 -0
  103. data/lib/aws-sdk-sts/plugins/sts_regional_endpoints.rb +32 -0
  104. data/lib/aws-sdk-sts/resource.rb +23 -0
  105. data/lib/aws-sdk-sts/types.rb +1312 -0
  106. data/lib/seahorse.rb +60 -60
  107. data/lib/seahorse/client/async_base.rb +50 -0
  108. data/lib/seahorse/client/async_response.rb +62 -0
  109. data/lib/seahorse/client/base.rb +5 -9
  110. data/lib/seahorse/client/configuration.rb +4 -2
  111. data/lib/seahorse/client/h2/connection.rb +244 -0
  112. data/lib/seahorse/client/h2/handler.rb +151 -0
  113. data/lib/seahorse/client/handler_list_entry.rb +2 -2
  114. data/lib/seahorse/client/http/async_response.rb +42 -0
  115. data/lib/seahorse/client/http/response.rb +10 -5
  116. data/lib/seahorse/client/logging/formatter.rb +2 -0
  117. data/lib/seahorse/client/logging/handler.rb +2 -0
  118. data/lib/seahorse/client/net_http/connection_pool.rb +16 -4
  119. data/lib/seahorse/client/net_http/handler.rb +5 -0
  120. data/lib/seahorse/client/net_http/patches.rb +9 -1
  121. data/lib/seahorse/client/networking_error.rb +28 -0
  122. data/lib/seahorse/client/plugin.rb +66 -6
  123. data/lib/seahorse/client/plugins/content_length.rb +7 -2
  124. data/lib/seahorse/client/plugins/endpoint.rb +14 -10
  125. data/lib/seahorse/client/plugins/h2.rb +64 -0
  126. data/lib/seahorse/client/plugins/logging.rb +17 -19
  127. data/lib/seahorse/client/plugins/net_http.rb +23 -15
  128. data/lib/seahorse/client/plugins/raise_response_errors.rb +4 -4
  129. data/lib/seahorse/client/plugins/response_target.rb +10 -1
  130. data/lib/seahorse/client/request_context.rb +5 -0
  131. data/lib/seahorse/model/api.rb +33 -0
  132. data/lib/seahorse/model/authorizer.rb +21 -0
  133. data/lib/seahorse/model/operation.rb +11 -0
  134. data/lib/seahorse/model/shapes.rb +44 -2
  135. data/lib/seahorse/util.rb +1 -22
  136. metadata +98 -1077
  137. data/apis/AWSMigrationHub/2017-05-31/api-2.json +0 -838
  138. data/apis/AWSMigrationHub/2017-05-31/examples-1.json +0 -5
  139. data/apis/AWSMigrationHub/2017-05-31/paginators-1.json +0 -4
  140. data/apis/acm-pca/2017-08-22/api-2.json +0 -1091
  141. data/apis/acm-pca/2017-08-22/examples-1.json +0 -5
  142. data/apis/acm-pca/2017-08-22/paginators-1.json +0 -22
  143. data/apis/acm-pca/2017-08-22/waiters-2.json +0 -61
  144. data/apis/acm/2015-12-08/api-2.json +0 -843
  145. data/apis/acm/2015-12-08/examples-1.json +0 -5
  146. data/apis/acm/2015-12-08/paginators-1.json +0 -10
  147. data/apis/acm/2015-12-08/smoke.json +0 -18
  148. data/apis/acm/2015-12-08/waiters-2.json +0 -35
  149. data/apis/alexaforbusiness/2017-11-09/api-2.json +0 -4003
  150. data/apis/alexaforbusiness/2017-11-09/examples-1.json +0 -5
  151. data/apis/alexaforbusiness/2017-11-09/paginators-1.json +0 -94
  152. data/apis/amplify/2017-07-25/api-2.json +0 -2171
  153. data/apis/amplify/2017-07-25/examples-1.json +0 -5
  154. data/apis/amplify/2017-07-25/paginators-1.json +0 -4
  155. data/apis/apigateway/2015-07-09/api-2.json +0 -5384
  156. data/apis/apigateway/2015-07-09/examples-1.json +0 -5
  157. data/apis/apigateway/2015-07-09/paginators-1.json +0 -76
  158. data/apis/apigateway/2015-07-09/smoke.json +0 -20
  159. data/apis/apigatewaymanagementapi/2018-11-29/api-2.json +0 -192
  160. data/apis/apigatewaymanagementapi/2018-11-29/paginators-1.json +0 -3
  161. data/apis/apigatewayv2/2018-11-29/api-2.json +0 -5773
  162. data/apis/apigatewayv2/2018-11-29/paginators-1.json +0 -3
  163. data/apis/application-autoscaling/2016-02-06/api-2.json +0 -779
  164. data/apis/application-autoscaling/2016-02-06/examples-1.json +0 -384
  165. data/apis/application-autoscaling/2016-02-06/paginators-1.json +0 -28
  166. data/apis/application-autoscaling/2016-02-06/smoke.json +0 -13
  167. data/apis/application-insights/2018-11-25/api-2.json +0 -721
  168. data/apis/application-insights/2018-11-25/examples-1.json +0 -5
  169. data/apis/application-insights/2018-11-25/paginators-1.json +0 -19
  170. data/apis/appmesh/2018-10-01/api-2.json +0 -1972
  171. data/apis/appmesh/2018-10-01/examples-1.json +0 -4
  172. data/apis/appmesh/2018-10-01/paginators-1.json +0 -28
  173. data/apis/appmesh/2019-01-25/api-2.json +0 -3424
  174. data/apis/appmesh/2019-01-25/examples-1.json +0 -4
  175. data/apis/appmesh/2019-01-25/paginators-1.json +0 -40
  176. data/apis/appstream/2016-12-01/api-2.json +0 -2356
  177. data/apis/appstream/2016-12-01/examples-1.json +0 -5
  178. data/apis/appstream/2016-12-01/paginators-1.json +0 -14
  179. data/apis/appstream/2016-12-01/smoke.json +0 -11
  180. data/apis/appstream/2016-12-01/waiters-2.json +0 -55
  181. data/apis/appsync/2017-07-25/api-2.json +0 -2003
  182. data/apis/appsync/2017-07-25/examples-1.json +0 -5
  183. data/apis/appsync/2017-07-25/paginators-1.json +0 -4
  184. data/apis/athena/2017-05-18/api-2.json +0 -985
  185. data/apis/athena/2017-05-18/examples-1.json +0 -5
  186. data/apis/athena/2017-05-18/paginators-1.json +0 -24
  187. data/apis/athena/2017-05-18/smoke.json +0 -11
  188. data/apis/autoscaling-plans/2018-01-06/api-2.json +0 -659
  189. data/apis/autoscaling-plans/2018-01-06/examples-1.json +0 -5
  190. data/apis/autoscaling-plans/2018-01-06/paginators-1.json +0 -4
  191. data/apis/autoscaling/2011-01-01/api-2.json +0 -2455
  192. data/apis/autoscaling/2011-01-01/examples-1.json +0 -1396
  193. data/apis/autoscaling/2011-01-01/paginators-1.json +0 -52
  194. data/apis/autoscaling/2011-01-01/resources-1.json +0 -1624
  195. data/apis/autoscaling/2011-01-01/smoke.json +0 -20
  196. data/apis/autoscaling/2011-01-01/waiters-2.json +0 -62
  197. data/apis/backup/2018-11-15/api-2.json +0 -2150
  198. data/apis/backup/2018-11-15/examples-1.json +0 -5
  199. data/apis/backup/2018-11-15/paginators-1.json +0 -59
  200. data/apis/batch/2016-08-10/api-2.json +0 -1137
  201. data/apis/batch/2016-08-10/examples-1.json +0 -589
  202. data/apis/batch/2016-08-10/paginators-1.json +0 -28
  203. data/apis/batch/2016-08-10/smoke.json +0 -11
  204. data/apis/budgets/2016-10-20/api-2.json +0 -830
  205. data/apis/budgets/2016-10-20/examples-1.json +0 -5
  206. data/apis/budgets/2016-10-20/paginators-1.json +0 -4
  207. data/apis/ce/2017-10-25/api-2.json +0 -1385
  208. data/apis/ce/2017-10-25/examples-1.json +0 -5
  209. data/apis/ce/2017-10-25/paginators-1.json +0 -14
  210. data/apis/chime/2018-05-01/api-2.json +0 -3499
  211. data/apis/chime/2018-05-01/examples-1.json +0 -5
  212. data/apis/chime/2018-05-01/paginators-1.json +0 -39
  213. data/apis/cloud9/2017-09-23/api-2.json +0 -549
  214. data/apis/cloud9/2017-09-23/examples-1.json +0 -315
  215. data/apis/cloud9/2017-09-23/paginators-1.json +0 -14
  216. data/apis/clouddirectory/2016-05-10/api-2.json +0 -4244
  217. data/apis/clouddirectory/2016-05-10/examples-1.json +0 -5
  218. data/apis/clouddirectory/2016-05-10/paginators-1.json +0 -94
  219. data/apis/clouddirectory/2017-01-11/api-2.json +0 -4321
  220. data/apis/clouddirectory/2017-01-11/examples-1.json +0 -5
  221. data/apis/clouddirectory/2017-01-11/paginators-1.json +0 -99
  222. data/apis/cloudformation/2010-05-15/api-2.json +0 -2752
  223. data/apis/cloudformation/2010-05-15/examples-1.json +0 -5
  224. data/apis/cloudformation/2010-05-15/paginators-1.json +0 -42
  225. data/apis/cloudformation/2010-05-15/resources-1.json +0 -211
  226. data/apis/cloudformation/2010-05-15/smoke.json +0 -19
  227. data/apis/cloudformation/2010-05-15/waiters-2.json +0 -237
  228. data/apis/cloudfront/2016-01-28/api-2.json +0 -2219
  229. data/apis/cloudfront/2016-01-28/examples-1.json +0 -5
  230. data/apis/cloudfront/2016-01-28/paginators-1.json +0 -32
  231. data/apis/cloudfront/2016-01-28/waiters-2.json +0 -47
  232. data/apis/cloudfront/2016-08-01/api-2.json +0 -2548
  233. data/apis/cloudfront/2016-08-01/examples-1.json +0 -5
  234. data/apis/cloudfront/2016-08-01/paginators-1.json +0 -32
  235. data/apis/cloudfront/2016-08-01/waiters-2.json +0 -47
  236. data/apis/cloudfront/2016-08-20/api-2.json +0 -2586
  237. data/apis/cloudfront/2016-08-20/paginators-1.json +0 -32
  238. data/apis/cloudfront/2016-08-20/waiters-2.json +0 -47
  239. data/apis/cloudfront/2016-09-07/api-2.json +0 -2596
  240. data/apis/cloudfront/2016-09-07/examples-1.json +0 -5
  241. data/apis/cloudfront/2016-09-07/paginators-1.json +0 -32
  242. data/apis/cloudfront/2016-09-07/waiters-2.json +0 -47
  243. data/apis/cloudfront/2016-09-29/api-2.json +0 -2599
  244. data/apis/cloudfront/2016-09-29/examples-1.json +0 -5
  245. data/apis/cloudfront/2016-09-29/paginators-1.json +0 -32
  246. data/apis/cloudfront/2016-09-29/waiters-2.json +0 -47
  247. data/apis/cloudfront/2016-11-25/api-2.json +0 -2665
  248. data/apis/cloudfront/2016-11-25/examples-1.json +0 -5
  249. data/apis/cloudfront/2016-11-25/paginators-1.json +0 -32
  250. data/apis/cloudfront/2016-11-25/waiters-2.json +0 -47
  251. data/apis/cloudfront/2017-03-25/api-2.json +0 -2726
  252. data/apis/cloudfront/2017-03-25/examples-1.json +0 -83
  253. data/apis/cloudfront/2017-03-25/paginators-1.json +0 -32
  254. data/apis/cloudfront/2017-03-25/waiters-2.json +0 -47
  255. data/apis/cloudfront/2017-10-30/api-2.json +0 -3906
  256. data/apis/cloudfront/2017-10-30/examples-1.json +0 -5
  257. data/apis/cloudfront/2017-10-30/paginators-1.json +0 -32
  258. data/apis/cloudfront/2017-10-30/smoke.json +0 -20
  259. data/apis/cloudfront/2017-10-30/waiters-2.json +0 -47
  260. data/apis/cloudfront/2018-06-18/api-2.json +0 -3907
  261. data/apis/cloudfront/2018-06-18/examples-1.json +0 -5
  262. data/apis/cloudfront/2018-06-18/paginators-1.json +0 -32
  263. data/apis/cloudfront/2018-06-18/smoke.json +0 -20
  264. data/apis/cloudfront/2018-06-18/waiters-2.json +0 -47
  265. data/apis/cloudfront/2018-11-05/api-2.json +0 -4004
  266. data/apis/cloudfront/2018-11-05/examples-1.json +0 -5
  267. data/apis/cloudfront/2018-11-05/paginators-1.json +0 -32
  268. data/apis/cloudfront/2018-11-05/smoke.json +0 -20
  269. data/apis/cloudfront/2018-11-05/waiters-2.json +0 -47
  270. data/apis/cloudfront/2019-03-26/api-2.json +0 -4032
  271. data/apis/cloudfront/2019-03-26/examples-1.json +0 -5
  272. data/apis/cloudfront/2019-03-26/paginators-1.json +0 -32
  273. data/apis/cloudfront/2019-03-26/smoke.json +0 -20
  274. data/apis/cloudfront/2019-03-26/waiters-2.json +0 -47
  275. data/apis/cloudhsm/2014-05-30/api-2.json +0 -879
  276. data/apis/cloudhsm/2014-05-30/examples-1.json +0 -5
  277. data/apis/cloudhsm/2014-05-30/paginators-1.json +0 -4
  278. data/apis/cloudhsmv2/2017-04-28/api-2.json +0 -718
  279. data/apis/cloudhsmv2/2017-04-28/examples-1.json +0 -5
  280. data/apis/cloudhsmv2/2017-04-28/paginators-1.json +0 -19
  281. data/apis/cloudhsmv2/2017-04-28/smoke.json +0 -18
  282. data/apis/cloudsearch/2013-01-01/api-2.json +0 -1529
  283. data/apis/cloudsearch/2013-01-01/examples-1.json +0 -5
  284. data/apis/cloudsearch/2013-01-01/paginators-1.json +0 -19
  285. data/apis/cloudsearch/2013-01-01/smoke.json +0 -18
  286. data/apis/cloudsearchdomain/2013-01-01/api-2.json +0 -374
  287. data/apis/cloudsearchdomain/2013-01-01/examples-1.json +0 -5
  288. data/apis/cloudtrail/2013-11-01/api-2.json +0 -1048
  289. data/apis/cloudtrail/2013-11-01/examples-1.json +0 -5
  290. data/apis/cloudtrail/2013-11-01/paginators-1.json +0 -28
  291. data/apis/cloudtrail/2013-11-01/smoke.json +0 -18
  292. data/apis/codebuild/2016-10-06/api-2.json +0 -1290
  293. data/apis/codebuild/2016-10-06/examples-1.json +0 -281
  294. data/apis/codebuild/2016-10-06/paginators-1.json +0 -4
  295. data/apis/codebuild/2016-10-06/smoke.json +0 -11
  296. data/apis/codecommit/2015-04-13/api-2.json +0 -4248
  297. data/apis/codecommit/2015-04-13/examples-1.json +0 -5
  298. data/apis/codecommit/2015-04-13/paginators-1.json +0 -49
  299. data/apis/codecommit/2015-04-13/smoke.json +0 -18
  300. data/apis/codedeploy/2014-10-06/api-2.json +0 -3224
  301. data/apis/codedeploy/2014-10-06/examples-1.json +0 -5
  302. data/apis/codedeploy/2014-10-06/paginators-1.json +0 -34
  303. data/apis/codedeploy/2014-10-06/smoke.json +0 -18
  304. data/apis/codedeploy/2014-10-06/waiters-2.json +0 -30
  305. data/apis/codepipeline/2015-07-09/api-2.json +0 -2441
  306. data/apis/codepipeline/2015-07-09/examples-1.json +0 -5
  307. data/apis/codepipeline/2015-07-09/paginators-1.json +0 -38
  308. data/apis/codepipeline/2015-07-09/smoke.json +0 -18
  309. data/apis/codestar-notifications/2019-10-15/api-2.json +0 -724
  310. data/apis/codestar-notifications/2019-10-15/examples-1.json +0 -5
  311. data/apis/codestar-notifications/2019-10-15/paginators-1.json +0 -22
  312. data/apis/codestar/2017-04-19/api-2.json +0 -1033
  313. data/apis/codestar/2017-04-19/examples-1.json +0 -5
  314. data/apis/codestar/2017-04-19/paginators-1.json +0 -4
  315. data/apis/codestar/2017-04-19/smoke.json +0 -11
  316. data/apis/cognito-identity/2014-06-30/api-2.json +0 -1062
  317. data/apis/cognito-identity/2014-06-30/examples-1.json +0 -5
  318. data/apis/cognito-identity/2014-06-30/paginators-1.json +0 -4
  319. data/apis/cognito-idp/2016-04-18/api-2.json +0 -5387
  320. data/apis/cognito-idp/2016-04-18/examples-1.json +0 -5
  321. data/apis/cognito-idp/2016-04-18/paginators-1.json +0 -58
  322. data/apis/cognito-idp/2016-04-18/smoke.json +0 -20
  323. data/apis/cognito-sync/2014-06-30/api-2.json +0 -1875
  324. data/apis/comprehend/2017-11-27/api-2.json +0 -2367
  325. data/apis/comprehend/2017-11-27/examples-1.json +0 -5
  326. data/apis/comprehend/2017-11-27/paginators-1.json +0 -44
  327. data/apis/comprehendmedical/2018-10-30/api-2.json +0 -681
  328. data/apis/comprehendmedical/2018-10-30/examples-1.json +0 -5
  329. data/apis/comprehendmedical/2018-10-30/paginators-1.json +0 -4
  330. data/apis/config/2014-11-12/api-2.json +0 -3496
  331. data/apis/config/2014-11-12/examples-1.json +0 -5
  332. data/apis/config/2014-11-12/paginators-1.json +0 -21
  333. data/apis/config/2014-11-12/smoke.json +0 -19
  334. data/apis/connect/2017-08-08/api-2.json +0 -2048
  335. data/apis/connect/2017-08-08/examples-1.json +0 -5
  336. data/apis/connect/2017-08-08/paginators-1.json +0 -62
  337. data/apis/cur/2017-01-06/api-2.json +0 -277
  338. data/apis/cur/2017-01-06/examples-1.json +0 -102
  339. data/apis/cur/2017-01-06/paginators-1.json +0 -9
  340. data/apis/cur/2017-01-06/smoke.json +0 -11
  341. data/apis/dataexchange/2017-07-25/api-2.json +0 -2263
  342. data/apis/dataexchange/2017-07-25/paginators-1.json +0 -28
  343. data/apis/datapipeline/2012-10-29/api-2.json +0 -1168
  344. data/apis/datapipeline/2012-10-29/paginators-1.json +0 -26
  345. data/apis/datasync/2018-11-09/api-2.json +0 -1337
  346. data/apis/datasync/2018-11-09/examples-1.json +0 -5
  347. data/apis/datasync/2018-11-09/paginators-1.json +0 -29
  348. data/apis/dax/2017-04-19/api-2.json +0 -1140
  349. data/apis/dax/2017-04-19/examples-1.json +0 -5
  350. data/apis/dax/2017-04-19/paginators-1.json +0 -4
  351. data/apis/devicefarm/2015-06-23/api-2.json +0 -3197
  352. data/apis/devicefarm/2015-06-23/examples-1.json +0 -1242
  353. data/apis/devicefarm/2015-06-23/paginators-1.json +0 -77
  354. data/apis/devicefarm/2015-06-23/smoke.json +0 -18
  355. data/apis/directconnect/2012-10-25/api-2.json +0 -2074
  356. data/apis/directconnect/2012-10-25/examples-1.json +0 -5
  357. data/apis/directconnect/2012-10-25/paginators-1.json +0 -22
  358. data/apis/directconnect/2012-10-25/smoke.json +0 -18
  359. data/apis/discovery/2015-11-01/api-2.json +0 -1334
  360. data/apis/discovery/2015-11-01/examples-1.json +0 -5
  361. data/apis/discovery/2015-11-01/paginators-1.json +0 -14
  362. data/apis/discovery/2015-11-01/smoke.json +0 -11
  363. data/apis/dlm/2018-01-12/api-2.json +0 -609
  364. data/apis/dlm/2018-01-12/examples-1.json +0 -5
  365. data/apis/dlm/2018-01-12/paginators-1.json +0 -4
  366. data/apis/dms/2016-01-01/api-2.json +0 -2296
  367. data/apis/dms/2016-01-01/examples-1.json +0 -1074
  368. data/apis/dms/2016-01-01/paginators-1.json +0 -79
  369. data/apis/dms/2016-01-01/smoke.json +0 -18
  370. data/apis/dms/2016-01-01/waiters-2.json +0 -336
  371. data/apis/docdb/2014-10-31/api-2.json +0 -2534
  372. data/apis/docdb/2014-10-31/examples-1.json +0 -5
  373. data/apis/docdb/2014-10-31/paginators-1.json +0 -43
  374. data/apis/docdb/2014-10-31/smoke.json +0 -18
  375. data/apis/docdb/2014-10-31/waiters-2.json +0 -90
  376. data/apis/ds/2015-04-16/api-2.json +0 -2634
  377. data/apis/ds/2015-04-16/examples-1.json +0 -5
  378. data/apis/ds/2015-04-16/paginators-1.json +0 -9
  379. data/apis/ds/2015-04-16/smoke.json +0 -20
  380. data/apis/dynamodb/2011-12-05/api-2.json +0 -818
  381. data/apis/dynamodb/2011-12-05/examples-1.json +0 -5
  382. data/apis/dynamodb/2011-12-05/paginators-1.json +0 -26
  383. data/apis/dynamodb/2011-12-05/smoke.json +0 -20
  384. data/apis/dynamodb/2011-12-05/waiters-2.json +0 -35
  385. data/apis/dynamodb/2012-08-10/api-2.json +0 -2812
  386. data/apis/dynamodb/2012-08-10/examples-1.json +0 -631
  387. data/apis/dynamodb/2012-08-10/paginators-1.json +0 -26
  388. data/apis/dynamodb/2012-08-10/resources-1.json +0 -136
  389. data/apis/dynamodb/2012-08-10/smoke.json +0 -20
  390. data/apis/dynamodb/2012-08-10/waiters-2.json +0 -35
  391. data/apis/ec2-instance-connect/2018-04-02/api-2.json +0 -119
  392. data/apis/ec2-instance-connect/2018-04-02/examples-1.json +0 -34
  393. data/apis/ec2-instance-connect/2018-04-02/paginators-1.json +0 -4
  394. data/apis/ec2/2015-10-01/api-2.json +0 -13760
  395. data/apis/ec2/2015-10-01/examples-1.json +0 -5
  396. data/apis/ec2/2015-10-01/paginators-1.json +0 -138
  397. data/apis/ec2/2015-10-01/resources-1.json +0 -2582
  398. data/apis/ec2/2015-10-01/waiters-2.json +0 -593
  399. data/apis/ec2/2016-04-01/api-2.json +0 -14191
  400. data/apis/ec2/2016-04-01/examples-1.json +0 -3729
  401. data/apis/ec2/2016-04-01/paginators-1.json +0 -138
  402. data/apis/ec2/2016-04-01/resources-1.json +0 -2582
  403. data/apis/ec2/2016-04-01/waiters-2.json +0 -593
  404. data/apis/ec2/2016-09-15/api-2.json +0 -14415
  405. data/apis/ec2/2016-09-15/examples-1.json +0 -3740
  406. data/apis/ec2/2016-09-15/paginators-1.json +0 -138
  407. data/apis/ec2/2016-09-15/resources-1.json +0 -2582
  408. data/apis/ec2/2016-09-15/waiters-2.json +0 -593
  409. data/apis/ec2/2016-11-15/api-2.json +0 -25611
  410. data/apis/ec2/2016-11-15/examples-1.json +0 -5048
  411. data/apis/ec2/2016-11-15/paginators-1.json +0 -450
  412. data/apis/ec2/2016-11-15/resources-1.json +0 -2582
  413. data/apis/ec2/2016-11-15/smoke.json +0 -20
  414. data/apis/ec2/2016-11-15/waiters-2.json +0 -622
  415. data/apis/ecr/2015-09-21/api-2.json +0 -1615
  416. data/apis/ecr/2015-09-21/examples-1.json +0 -215
  417. data/apis/ecr/2015-09-21/paginators-1.json +0 -48
  418. data/apis/ecr/2015-09-21/smoke.json +0 -18
  419. data/apis/ecs/2014-11-13/api-2.json +0 -2902
  420. data/apis/ecs/2014-11-13/examples-1.json +0 -1137
  421. data/apis/ecs/2014-11-13/paginators-1.json +0 -40
  422. data/apis/ecs/2014-11-13/smoke.json +0 -18
  423. data/apis/ecs/2014-11-13/waiters-2.json +0 -93
  424. data/apis/eks/2017-11-01/api-2.json +0 -750
  425. data/apis/eks/2017-11-01/examples-1.json +0 -114
  426. data/apis/eks/2017-11-01/paginators-1.json +0 -16
  427. data/apis/eks/2017-11-01/waiters-2.json +0 -54
  428. data/apis/elasticache/2015-02-02/api-2.json +0 -3301
  429. data/apis/elasticache/2015-02-02/examples-1.json +0 -3149
  430. data/apis/elasticache/2015-02-02/paginators-1.json +0 -88
  431. data/apis/elasticache/2015-02-02/smoke.json +0 -18
  432. data/apis/elasticache/2015-02-02/waiters-2.json +0 -143
  433. data/apis/elasticbeanstalk/2010-12-01/api-2.json +0 -2492
  434. data/apis/elasticbeanstalk/2010-12-01/examples-1.json +0 -1109
  435. data/apis/elasticbeanstalk/2010-12-01/paginators-1.json +0 -25
  436. data/apis/elasticbeanstalk/2010-12-01/smoke.json +0 -18
  437. data/apis/elasticfilesystem/2015-02-01/api-2.json +0 -897
  438. data/apis/elasticfilesystem/2015-02-01/examples-1.json +0 -291
  439. data/apis/elasticfilesystem/2015-02-01/paginators-1.json +0 -4
  440. data/apis/elasticfilesystem/2015-02-01/smoke.json +0 -18
  441. data/apis/elasticloadbalancing/2012-06-01/api-2.json +0 -1642
  442. data/apis/elasticloadbalancing/2012-06-01/examples-1.json +0 -1036
  443. data/apis/elasticloadbalancing/2012-06-01/paginators-1.json +0 -18
  444. data/apis/elasticloadbalancing/2012-06-01/smoke.json +0 -20
  445. data/apis/elasticloadbalancing/2012-06-01/waiters-2.json +0 -54
  446. data/apis/elasticloadbalancingv2/2015-12-01/api-2.json +0 -2299
  447. data/apis/elasticloadbalancingv2/2015-12-01/examples-1.json +0 -1384
  448. data/apis/elasticloadbalancingv2/2015-12-01/paginators-1.json +0 -19
  449. data/apis/elasticloadbalancingv2/2015-12-01/smoke.json +0 -20
  450. data/apis/elasticloadbalancingv2/2015-12-01/waiters-2.json +0 -100
  451. data/apis/elasticmapreduce/2009-03-31/api-2.json +0 -2187
  452. data/apis/elasticmapreduce/2009-03-31/examples-1.json +0 -5
  453. data/apis/elasticmapreduce/2009-03-31/paginators-1.json +0 -42
  454. data/apis/elasticmapreduce/2009-03-31/smoke.json +0 -18
  455. data/apis/elasticmapreduce/2009-03-31/waiters-2.json +0 -86
  456. data/apis/elastictranscoder/2012-09-25/api-2.json +0 -1484
  457. data/apis/elastictranscoder/2012-09-25/examples-1.json +0 -5
  458. data/apis/elastictranscoder/2012-09-25/paginators-1.json +0 -24
  459. data/apis/elastictranscoder/2012-09-25/smoke.json +0 -18
  460. data/apis/elastictranscoder/2012-09-25/waiters-2.json +0 -30
  461. data/apis/email/2010-12-01/api-2.json +0 -3182
  462. data/apis/email/2010-12-01/examples-1.json +0 -1021
  463. data/apis/email/2010-12-01/paginators-1.json +0 -18
  464. data/apis/email/2010-12-01/smoke.json +0 -18
  465. data/apis/email/2010-12-01/waiters-2.json +0 -18
  466. data/apis/entitlement.marketplace/2017-01-11/api-2.json +0 -128
  467. data/apis/entitlement.marketplace/2017-01-11/examples-1.json +0 -5
  468. data/apis/entitlement.marketplace/2017-01-11/paginators-1.json +0 -4
  469. data/apis/es/2015-01-01/api-2.json +0 -1572
  470. data/apis/es/2015-01-01/examples-1.json +0 -5
  471. data/apis/es/2015-01-01/paginators-1.json +0 -29
  472. data/apis/es/2015-01-01/smoke.json +0 -18
  473. data/apis/eventbridge/2015-10-07/api-2.json +0 -1462
  474. data/apis/eventbridge/2015-10-07/examples-1.json +0 -5
  475. data/apis/eventbridge/2015-10-07/paginators-1.json +0 -4
  476. data/apis/eventbridge/2015-10-07/smoke.json +0 -18
  477. data/apis/events/2015-10-07/api-2.json +0 -1462
  478. data/apis/events/2015-10-07/examples-1.json +0 -5
  479. data/apis/events/2015-10-07/paginators-1.json +0 -4
  480. data/apis/events/2015-10-07/smoke.json +0 -18
  481. data/apis/firehose/2015-08-04/api-2.json +0 -1383
  482. data/apis/firehose/2015-08-04/examples-1.json +0 -5
  483. data/apis/firehose/2015-08-04/paginators-1.json +0 -4
  484. data/apis/firehose/2015-08-04/smoke.json +0 -18
  485. data/apis/fms/2018-01-01/api-2.json +0 -701
  486. data/apis/fms/2018-01-01/examples-1.json +0 -5
  487. data/apis/fms/2018-01-01/paginators-1.json +0 -22
  488. data/apis/forecast/2018-06-26/api-2.json +0 -1373
  489. data/apis/forecast/2018-06-26/examples-1.json +0 -5
  490. data/apis/forecast/2018-06-26/paginators-1.json +0 -40
  491. data/apis/forecastquery/2018-06-26/api-2.json +0 -154
  492. data/apis/forecastquery/2018-06-26/examples-1.json +0 -5
  493. data/apis/forecastquery/2018-06-26/paginators-1.json +0 -4
  494. data/apis/fsx/2018-03-01/api-2.json +0 -1050
  495. data/apis/fsx/2018-03-01/examples-1.json +0 -384
  496. data/apis/fsx/2018-03-01/paginators-1.json +0 -14
  497. data/apis/gamelift/2015-10-01/api-2.json +0 -3495
  498. data/apis/gamelift/2015-10-01/examples-1.json +0 -5
  499. data/apis/gamelift/2015-10-01/paginators-1.json +0 -4
  500. data/apis/gamelift/2015-10-01/smoke.json +0 -18
  501. data/apis/glacier/2012-06-01/api-2.json +0 -1906
  502. data/apis/glacier/2012-06-01/examples-1.json +0 -806
  503. data/apis/glacier/2012-06-01/paginators-1.json +0 -28
  504. data/apis/glacier/2012-06-01/resources-1.json +0 -563
  505. data/apis/glacier/2012-06-01/smoke.json +0 -18
  506. data/apis/glacier/2012-06-01/waiters-2.json +0 -39
  507. data/apis/globalaccelerator/2018-08-08/api-2.json +0 -818
  508. data/apis/globalaccelerator/2018-08-08/examples-1.json +0 -5
  509. data/apis/globalaccelerator/2018-08-08/paginators-1.json +0 -4
  510. data/apis/glue/2017-03-31/api-2.json +0 -6297
  511. data/apis/glue/2017-03-31/examples-1.json +0 -5
  512. data/apis/glue/2017-03-31/paginators-1.json +0 -120
  513. data/apis/glue/2017-03-31/smoke.json +0 -11
  514. data/apis/greengrass/2017-06-07/api-2.json +0 -5106
  515. data/apis/groundstation/2019-05-23/api-2.json +0 -2059
  516. data/apis/groundstation/2019-05-23/examples-1.json +0 -4
  517. data/apis/groundstation/2019-05-23/paginators-1.json +0 -40
  518. data/apis/guardduty/2017-11-28/api-2.json +0 -3206
  519. data/apis/guardduty/2017-11-28/examples-1.json +0 -5
  520. data/apis/guardduty/2017-11-28/paginators-1.json +0 -46
  521. data/apis/health/2016-08-04/api-2.json +0 -554
  522. data/apis/health/2016-08-04/examples-1.json +0 -5
  523. data/apis/health/2016-08-04/paginators-1.json +0 -31
  524. data/apis/health/2016-08-04/smoke.json +0 -11
  525. data/apis/iam/2010-05-08/api-2.json +0 -5778
  526. data/apis/iam/2010-05-08/examples-1.json +0 -1572
  527. data/apis/iam/2010-05-08/paginators-1.json +0 -198
  528. data/apis/iam/2010-05-08/resources-1.json +0 -1740
  529. data/apis/iam/2010-05-08/smoke.json +0 -18
  530. data/apis/iam/2010-05-08/waiters-2.json +0 -73
  531. data/apis/importexport/2010-06-01/api-2.json +0 -667
  532. data/apis/importexport/2010-06-01/paginators-1.json +0 -11
  533. data/apis/inspector/2016-02-16/api-2.json +0 -2387
  534. data/apis/inspector/2016-02-16/examples-1.json +0 -1148
  535. data/apis/inspector/2016-02-16/paginators-1.json +0 -54
  536. data/apis/inspector/2016-02-16/smoke.json +0 -18
  537. data/apis/iot-data/2015-05-28/api-2.json +0 -264
  538. data/apis/iot-jobs-data/2017-09-29/api-2.json +0 -348
  539. data/apis/iot-jobs-data/2017-09-29/examples-1.json +0 -5
  540. data/apis/iot-jobs-data/2017-09-29/paginators-1.json +0 -4
  541. data/apis/iot/2015-05-28/api-2.json +0 -9829
  542. data/apis/iot/2015-05-28/examples-1.json +0 -5
  543. data/apis/iot/2015-05-28/paginators-1.json +0 -4
  544. data/apis/iot/2015-05-28/smoke.json +0 -18
  545. data/apis/iot1click-devices/2018-05-14/api-2.json +0 -902
  546. data/apis/iot1click-projects/2018-05-14/api-2.json +0 -883
  547. data/apis/iot1click-projects/2018-05-14/examples-1.json +0 -5
  548. data/apis/iot1click-projects/2018-05-14/paginators-1.json +0 -16
  549. data/apis/iotanalytics/2017-11-27/api-2.json +0 -2223
  550. data/apis/iotanalytics/2017-11-27/examples-1.json +0 -5
  551. data/apis/iotanalytics/2017-11-27/paginators-1.json +0 -29
  552. data/apis/iotevents-data/2018-10-23/api-2.json +0 -454
  553. data/apis/iotevents-data/2018-10-23/examples-1.json +0 -5
  554. data/apis/iotevents-data/2018-10-23/paginators-1.json +0 -4
  555. data/apis/iotevents/2018-07-27/api-2.json +0 -1144
  556. data/apis/iotevents/2018-07-27/examples-1.json +0 -5
  557. data/apis/iotevents/2018-07-27/paginators-1.json +0 -4
  558. data/apis/iotthingsgraph/2018-09-06/api-2.json +0 -1581
  559. data/apis/iotthingsgraph/2018-09-06/examples-1.json +0 -5
  560. data/apis/iotthingsgraph/2018-09-06/paginators-1.json +0 -64
  561. data/apis/kafka/2018-11-14/api-2.json +0 -1950
  562. data/apis/kafka/2018-11-14/paginators-1.json +0 -34
  563. data/apis/kinesis-video-archived-media/2017-09-30/api-2.json +0 -418
  564. data/apis/kinesis-video-archived-media/2017-09-30/examples-1.json +0 -5
  565. data/apis/kinesis-video-archived-media/2017-09-30/paginators-1.json +0 -10
  566. data/apis/kinesis-video-media/2017-09-30/api-2.json +0 -160
  567. data/apis/kinesis-video-media/2017-09-30/examples-1.json +0 -5
  568. data/apis/kinesis-video-media/2017-09-30/paginators-1.json +0 -4
  569. data/apis/kinesis/2013-12-02/api-2.json +0 -1409
  570. data/apis/kinesis/2013-12-02/examples-1.json +0 -5
  571. data/apis/kinesis/2013-12-02/paginators-1.json +0 -23
  572. data/apis/kinesis/2013-12-02/smoke.json +0 -18
  573. data/apis/kinesis/2013-12-02/waiters-2.json +0 -30
  574. data/apis/kinesisanalytics/2015-08-14/api-2.json +0 -1510
  575. data/apis/kinesisanalytics/2015-08-14/examples-1.json +0 -5
  576. data/apis/kinesisanalytics/2015-08-14/paginators-1.json +0 -4
  577. data/apis/kinesisanalyticsv2/2018-05-23/api-2.json +0 -2121
  578. data/apis/kinesisanalyticsv2/2018-05-23/examples-1.json +0 -5
  579. data/apis/kinesisanalyticsv2/2018-05-23/paginators-1.json +0 -4
  580. data/apis/kinesisvideo/2017-09-30/api-2.json +0 -553
  581. data/apis/kinesisvideo/2017-09-30/examples-1.json +0 -5
  582. data/apis/kinesisvideo/2017-09-30/paginators-1.json +0 -10
  583. data/apis/kms/2014-11-01/api-2.json +0 -1834
  584. data/apis/kms/2014-11-01/examples-1.json +0 -906
  585. data/apis/kms/2014-11-01/paginators-1.json +0 -32
  586. data/apis/kms/2014-11-01/smoke.json +0 -19
  587. data/apis/lakeformation/2017-03-31/api-2.json +0 -708
  588. data/apis/lakeformation/2017-03-31/examples-1.json +0 -5
  589. data/apis/lakeformation/2017-03-31/paginators-1.json +0 -19
  590. data/apis/lambda/2014-11-11/api-2.json +0 -668
  591. data/apis/lambda/2014-11-11/paginators-1.json +0 -16
  592. data/apis/lambda/2015-03-31/api-2.json +0 -2353
  593. data/apis/lambda/2015-03-31/examples-1.json +0 -614
  594. data/apis/lambda/2015-03-31/paginators-1.json +0 -40
  595. data/apis/lambda/2015-03-31/smoke.json +0 -18
  596. data/apis/lambda/2015-03-31/waiters-2.json +0 -22
  597. data/apis/lex-models/2017-04-19/api-2.json +0 -2261
  598. data/apis/lex-models/2017-04-19/examples-1.json +0 -758
  599. data/apis/lex-models/2017-04-19/paginators-1.json +0 -54
  600. data/apis/license-manager/2018-08-01/api-2.json +0 -780
  601. data/apis/license-manager/2018-08-01/examples-1.json +0 -5
  602. data/apis/license-manager/2018-08-01/paginators-1.json +0 -4
  603. data/apis/lightsail/2016-11-28/api-2.json +0 -5015
  604. data/apis/lightsail/2016-11-28/examples-1.json +0 -5
  605. data/apis/lightsail/2016-11-28/paginators-1.json +0 -4
  606. data/apis/lightsail/2016-11-28/smoke.json +0 -11
  607. data/apis/logs/2014-03-28/api-2.json +0 -1701
  608. data/apis/logs/2014-03-28/examples-1.json +0 -5
  609. data/apis/logs/2014-03-28/paginators-1.json +0 -49
  610. data/apis/logs/2014-03-28/smoke.json +0 -19
  611. data/apis/machinelearning/2014-12-12/api-2.json +0 -1978
  612. data/apis/machinelearning/2014-12-12/examples-1.json +0 -5
  613. data/apis/machinelearning/2014-12-12/paginators-1.json +0 -28
  614. data/apis/machinelearning/2014-12-12/waiters-2.json +0 -81
  615. data/apis/macie/2017-12-19/api-2.json +0 -365
  616. data/apis/macie/2017-12-19/examples-1.json +0 -5
  617. data/apis/macie/2017-12-19/paginators-1.json +0 -14
  618. data/apis/managedblockchain/2018-09-24/api-2.json +0 -1363
  619. data/apis/managedblockchain/2018-09-24/examples-1.json +0 -5
  620. data/apis/managedblockchain/2018-09-24/paginators-1.json +0 -34
  621. data/apis/marketplace-catalog/2018-09-17/api-2.json +0 -550
  622. data/apis/marketplace-catalog/2018-09-17/examples-1.json +0 -5
  623. data/apis/marketplace-catalog/2018-09-17/paginators-1.json +0 -14
  624. data/apis/marketplacecommerceanalytics/2015-07-01/api-2.json +0 -176
  625. data/apis/marketplacecommerceanalytics/2015-07-01/examples-1.json +0 -5
  626. data/apis/marketplacecommerceanalytics/2015-07-01/paginators-1.json +0 -4
  627. data/apis/marketplacecommerceanalytics/2015-07-01/smoke.json +0 -17
  628. data/apis/mediaconnect/2018-11-14/api-2.json +0 -1901
  629. data/apis/mediaconnect/2018-11-14/paginators-1.json +0 -16
  630. data/apis/mediaconvert/2017-08-29/api-2.json +0 -8350
  631. data/apis/mediaconvert/2017-08-29/paginators-1.json +0 -34
  632. data/apis/medialive/2017-10-14/api-2.json +0 -9023
  633. data/apis/medialive/2017-10-14/paginators-1.json +0 -40
  634. data/apis/medialive/2017-10-14/waiters-2.json +0 -111
  635. data/apis/mediapackage-vod/2018-11-07/api-2.json +0 -1498
  636. data/apis/mediapackage-vod/2018-11-07/paginators-1.json +0 -22
  637. data/apis/mediapackage/2017-10-12/api-2.json +0 -2467
  638. data/apis/mediapackage/2017-10-12/paginators-1.json +0 -22
  639. data/apis/mediastore-data/2017-09-01/api-2.json +0 -406
  640. data/apis/mediastore-data/2017-09-01/examples-1.json +0 -5
  641. data/apis/mediastore-data/2017-09-01/paginators-1.json +0 -9
  642. data/apis/mediastore/2017-09-01/api-2.json +0 -735
  643. data/apis/mediastore/2017-09-01/examples-1.json +0 -5
  644. data/apis/mediastore/2017-09-01/paginators-1.json +0 -9
  645. data/apis/mediatailor/2018-04-23/api-2.json +0 -524
  646. data/apis/mediatailor/2018-04-23/paginators-1.json +0 -3
  647. data/apis/meteringmarketplace/2016-01-14/api-2.json +0 -345
  648. data/apis/meteringmarketplace/2016-01-14/examples-1.json +0 -5
  649. data/apis/meteringmarketplace/2016-01-14/paginators-1.json +0 -4
  650. data/apis/mobile/2017-07-01/api-2.json +0 -551
  651. data/apis/mobile/2017-07-01/examples-1.json +0 -5
  652. data/apis/mobile/2017-07-01/paginators-1.json +0 -14
  653. data/apis/monitoring/2010-08-01/api-2.json +0 -1526
  654. data/apis/monitoring/2010-08-01/examples-1.json +0 -5
  655. data/apis/monitoring/2010-08-01/paginators-1.json +0 -38
  656. data/apis/monitoring/2010-08-01/resources-1.json +0 -346
  657. data/apis/monitoring/2010-08-01/smoke.json +0 -22
  658. data/apis/monitoring/2010-08-01/waiters-2.json +0 -18
  659. data/apis/mq/2017-11-27/api-2.json +0 -2538
  660. data/apis/mq/2017-11-27/paginators-1.json +0 -3
  661. data/apis/mturk-requester/2017-01-17/api-2.json +0 -1696
  662. data/apis/mturk-requester/2017-01-17/examples-1.json +0 -5
  663. data/apis/mturk-requester/2017-01-17/paginators-1.json +0 -54
  664. data/apis/neptune/2014-10-31/api-2.json +0 -3515
  665. data/apis/neptune/2014-10-31/examples-1.json +0 -5
  666. data/apis/neptune/2014-10-31/paginators-1.json +0 -61
  667. data/apis/neptune/2014-10-31/smoke.json +0 -18
  668. data/apis/neptune/2014-10-31/waiters-2.json +0 -90
  669. data/apis/opsworks/2013-02-18/api-2.json +0 -2885
  670. data/apis/opsworks/2013-02-18/examples-1.json +0 -5
  671. data/apis/opsworks/2013-02-18/paginators-1.json +0 -55
  672. data/apis/opsworks/2013-02-18/resources-1.json +0 -173
  673. data/apis/opsworks/2013-02-18/smoke.json +0 -18
  674. data/apis/opsworks/2013-02-18/waiters-2.json +0 -289
  675. data/apis/opsworkscm/2016-11-01/api-2.json +0 -817
  676. data/apis/opsworkscm/2016-11-01/examples-1.json +0 -5
  677. data/apis/opsworkscm/2016-11-01/paginators-1.json +0 -4
  678. data/apis/opsworkscm/2016-11-01/waiters-2.json +0 -25
  679. data/apis/organizations/2016-11-28/api-2.json +0 -2317
  680. data/apis/organizations/2016-11-28/examples-1.json +0 -1409
  681. data/apis/organizations/2016-11-28/paginators-1.json +0 -74
  682. data/apis/personalize-events/2018-03-22/api-2.json +0 -91
  683. data/apis/personalize-events/2018-03-22/examples-1.json +0 -5
  684. data/apis/personalize-events/2018-03-22/paginators-1.json +0 -4
  685. data/apis/personalize-runtime/2018-05-22/api-2.json +0 -129
  686. data/apis/personalize-runtime/2018-05-22/examples-1.json +0 -5
  687. data/apis/personalize-runtime/2018-05-22/paginators-1.json +0 -4
  688. data/apis/personalize/2018-05-22/api-2.json +0 -1863
  689. data/apis/personalize/2018-05-22/examples-1.json +0 -5
  690. data/apis/personalize/2018-05-22/paginators-1.json +0 -64
  691. data/apis/pi/2018-02-27/api-2.json +0 -253
  692. data/apis/pi/2018-02-27/examples-1.json +0 -5
  693. data/apis/pi/2018-02-27/paginators-1.json +0 -4
  694. data/apis/pinpoint-email/2018-07-26/api-2.json +0 -2093
  695. data/apis/pinpoint-email/2018-07-26/examples-1.json +0 -5
  696. data/apis/pinpoint-email/2018-07-26/paginators-1.json +0 -34
  697. data/apis/pinpoint/2016-12-01/api-2.json +0 -10826
  698. data/apis/pinpoint/2016-12-01/examples-1.json +0 -5
  699. data/apis/polly/2016-06-10/api-2.json +0 -832
  700. data/apis/polly/2016-06-10/examples-1.json +0 -171
  701. data/apis/polly/2016-06-10/paginators-1.json +0 -9
  702. data/apis/polly/2016-06-10/smoke.json +0 -11
  703. data/apis/pricing/2017-10-15/api-2.json +0 -227
  704. data/apis/pricing/2017-10-15/examples-1.json +0 -103
  705. data/apis/pricing/2017-10-15/paginators-1.json +0 -19
  706. data/apis/qldb-session/2019-07-11/api-2.json +0 -259
  707. data/apis/qldb-session/2019-07-11/examples-1.json +0 -5
  708. data/apis/qldb-session/2019-07-11/paginators-1.json +0 -4
  709. data/apis/qldb/2019-01-02/api-2.json +0 -776
  710. data/apis/qldb/2019-01-02/examples-1.json +0 -5
  711. data/apis/qldb/2019-01-02/paginators-1.json +0 -19
  712. data/apis/quicksight/2018-04-01/api-2.json +0 -1223
  713. data/apis/quicksight/2018-04-01/examples-1.json +0 -5
  714. data/apis/quicksight/2018-04-01/paginators-1.json +0 -4
  715. data/apis/ram/2018-01-04/api-2.json +0 -1021
  716. data/apis/ram/2018-01-04/examples-1.json +0 -5
  717. data/apis/ram/2018-01-04/paginators-1.json +0 -39
  718. data/apis/rds-data/2018-08-01/api-2.json +0 -540
  719. data/apis/rds-data/2018-08-01/examples-1.json +0 -5
  720. data/apis/rds-data/2018-08-01/paginators-1.json +0 -4
  721. data/apis/rds/2013-01-10/api-2.json +0 -2903
  722. data/apis/rds/2013-01-10/examples-1.json +0 -5
  723. data/apis/rds/2013-01-10/paginators-1.json +0 -97
  724. data/apis/rds/2013-01-10/smoke.json +0 -18
  725. data/apis/rds/2013-02-12/api-2.json +0 -3059
  726. data/apis/rds/2013-02-12/examples-1.json +0 -5
  727. data/apis/rds/2013-02-12/paginators-1.json +0 -110
  728. data/apis/rds/2013-02-12/smoke.json +0 -18
  729. data/apis/rds/2013-09-09/api-2.json +0 -3160
  730. data/apis/rds/2013-09-09/examples-1.json +0 -5
  731. data/apis/rds/2013-09-09/paginators-1.json +0 -110
  732. data/apis/rds/2013-09-09/smoke.json +0 -18
  733. data/apis/rds/2013-09-09/waiters-2.json +0 -97
  734. data/apis/rds/2014-09-01/api-2.json +0 -3273
  735. data/apis/rds/2014-09-01/examples-1.json +0 -5
  736. data/apis/rds/2014-09-01/paginators-1.json +0 -4
  737. data/apis/rds/2014-09-01/smoke.json +0 -18
  738. data/apis/rds/2014-10-31/api-2.json +0 -6880
  739. data/apis/rds/2014-10-31/examples-1.json +0 -1951
  740. data/apis/rds/2014-10-31/paginators-1.json +0 -140
  741. data/apis/rds/2014-10-31/resources-1.json +0 -3272
  742. data/apis/rds/2014-10-31/smoke.json +0 -18
  743. data/apis/rds/2014-10-31/waiters-2.json +0 -260
  744. data/apis/rds/2015-11-12/api-2.json +0 -5509
  745. data/apis/rds/2015-11-12/examples-1.json +0 -1951
  746. data/apis/rds/2015-11-12/paginators-1.json +0 -110
  747. data/apis/rds/2015-11-12/resources-1.json +0 -3272
  748. data/apis/rds/2015-11-12/waiters-2.json +0 -175
  749. data/apis/redshift/2012-12-01/api-2.json +0 -4995
  750. data/apis/redshift/2012-12-01/examples-1.json +0 -5
  751. data/apis/redshift/2012-12-01/paginators-1.json +0 -100
  752. data/apis/redshift/2012-12-01/smoke.json +0 -18
  753. data/apis/redshift/2012-12-01/waiters-2.json +0 -97
  754. data/apis/rekognition/2016-06-27/api-2.json +0 -2142
  755. data/apis/rekognition/2016-06-27/examples-1.json +0 -651
  756. data/apis/rekognition/2016-06-27/paginators-1.json +0 -51
  757. data/apis/rekognition/2016-06-27/smoke.json +0 -11
  758. data/apis/resource-groups/2017-11-27/api-2.json +0 -743
  759. data/apis/resource-groups/2017-11-27/examples-1.json +0 -5
  760. data/apis/resource-groups/2017-11-27/paginators-1.json +0 -19
  761. data/apis/resourcegroupstaggingapi/2017-01-26/api-2.json +0 -329
  762. data/apis/resourcegroupstaggingapi/2017-01-26/examples-1.json +0 -5
  763. data/apis/resourcegroupstaggingapi/2017-01-26/paginators-1.json +0 -20
  764. data/apis/robomaker/2018-06-29/api-2.json +0 -2160
  765. data/apis/robomaker/2018-06-29/examples-1.json +0 -5
  766. data/apis/robomaker/2018-06-29/paginators-1.json +0 -34
  767. data/apis/route53/2013-04-01/api-2.json +0 -3780
  768. data/apis/route53/2013-04-01/examples-1.json +0 -762
  769. data/apis/route53/2013-04-01/paginators-1.json +0 -33
  770. data/apis/route53/2013-04-01/smoke.json +0 -18
  771. data/apis/route53/2013-04-01/waiters-2.json +0 -18
  772. data/apis/route53domains/2014-05-15/api-2.json +0 -1382
  773. data/apis/route53domains/2014-05-15/examples-1.json +0 -5
  774. data/apis/route53domains/2014-05-15/paginators-1.json +0 -16
  775. data/apis/route53resolver/2018-04-01/api-2.json +0 -1199
  776. data/apis/route53resolver/2018-04-01/examples-1.json +0 -5
  777. data/apis/route53resolver/2018-04-01/paginators-1.json +0 -24
  778. data/apis/route53resolver/2018-04-01/smoke.json +0 -18
  779. data/apis/runtime.lex/2016-11-28/api-2.json +0 -693
  780. data/apis/runtime.lex/2016-11-28/examples-1.json +0 -5
  781. data/apis/runtime.lex/2016-11-28/paginators-1.json +0 -4
  782. data/apis/runtime.sagemaker/2017-05-13/api-2.json +0 -152
  783. data/apis/runtime.sagemaker/2017-05-13/examples-1.json +0 -5
  784. data/apis/runtime.sagemaker/2017-05-13/paginators-1.json +0 -4
  785. data/apis/s3/2006-03-01/api-2.json +0 -6587
  786. data/apis/s3/2006-03-01/examples-1.json +0 -1876
  787. data/apis/s3/2006-03-01/paginators-1.json +0 -66
  788. data/apis/s3/2006-03-01/resources-1.json +0 -1249
  789. data/apis/s3/2006-03-01/smoke.json +0 -11
  790. data/apis/s3/2006-03-01/waiters-2.json +0 -73
  791. data/apis/s3control/2018-08-20/api-2.json +0 -1044
  792. data/apis/s3control/2018-08-20/examples-1.json +0 -5
  793. data/apis/s3control/2018-08-20/paginators-1.json +0 -9
  794. data/apis/sagemaker/2017-07-24/api-2.json +0 -5281
  795. data/apis/sagemaker/2017-07-24/examples-1.json +0 -5
  796. data/apis/sagemaker/2017-07-24/paginators-1.json +0 -84
  797. data/apis/sagemaker/2017-07-24/waiters-2.json +0 -163
  798. data/apis/savingsplans/2019-06-28/api-2.json +0 -749
  799. data/apis/savingsplans/2019-06-28/examples-1.json +0 -5
  800. data/apis/savingsplans/2019-06-28/paginators-1.json +0 -4
  801. data/apis/sdb/2009-04-15/api-2.json +0 -955
  802. data/apis/sdb/2009-04-15/paginators-1.json +0 -15
  803. data/apis/secretsmanager/2017-10-17/api-2.json +0 -982
  804. data/apis/secretsmanager/2017-10-17/examples-1.json +0 -571
  805. data/apis/secretsmanager/2017-10-17/paginators-1.json +0 -14
  806. data/apis/secretsmanager/2017-10-17/smoke.json +0 -18
  807. data/apis/securityhub/2018-10-26/api-2.json +0 -2105
  808. data/apis/securityhub/2018-10-26/examples-1.json +0 -5
  809. data/apis/securityhub/2018-10-26/paginators-1.json +0 -29
  810. data/apis/serverlessrepo/2017-09-08/api-2.json +0 -1774
  811. data/apis/serverlessrepo/2017-09-08/paginators-1.json +0 -19
  812. data/apis/service-quotas/2019-06-24/api-2.json +0 -867
  813. data/apis/service-quotas/2019-06-24/examples-1.json +0 -5
  814. data/apis/service-quotas/2019-06-24/paginators-1.json +0 -40
  815. data/apis/servicecatalog/2015-12-10/api-2.json +0 -3977
  816. data/apis/servicecatalog/2015-12-10/examples-1.json +0 -5
  817. data/apis/servicecatalog/2015-12-10/paginators-1.json +0 -84
  818. data/apis/servicecatalog/2015-12-10/smoke.json +0 -11
  819. data/apis/servicediscovery/2017-03-14/api-2.json +0 -1156
  820. data/apis/servicediscovery/2017-03-14/examples-1.json +0 -5
  821. data/apis/servicediscovery/2017-03-14/paginators-1.json +0 -29
  822. data/apis/sesv2/2019-09-27/api-2.json +0 -2093
  823. data/apis/sesv2/2019-09-27/examples-1.json +0 -5
  824. data/apis/sesv2/2019-09-27/paginators-1.json +0 -34
  825. data/apis/shield/2016-06-02/api-2.json +0 -893
  826. data/apis/shield/2016-06-02/examples-1.json +0 -5
  827. data/apis/shield/2016-06-02/paginators-1.json +0 -4
  828. data/apis/shield/2016-06-02/smoke.json +0 -11
  829. data/apis/signer/2017-08-25/api-2.json +0 -817
  830. data/apis/signer/2017-08-25/examples-1.json +0 -5
  831. data/apis/signer/2017-08-25/paginators-1.json +0 -19
  832. data/apis/signer/2017-08-25/waiters-2.json +0 -29
  833. data/apis/sms-voice/2018-09-05/api-2.json +0 -630
  834. data/apis/sms/2016-10-24/api-2.json +0 -1366
  835. data/apis/sms/2016-10-24/examples-1.json +0 -5
  836. data/apis/sms/2016-10-24/paginators-1.json +0 -28
  837. data/apis/sms/2016-10-24/smoke.json +0 -18
  838. data/apis/snowball/2016-06-30/api-2.json +0 -955
  839. data/apis/snowball/2016-06-30/examples-1.json +0 -442
  840. data/apis/snowball/2016-06-30/paginators-1.json +0 -16
  841. data/apis/snowball/2016-06-30/smoke.json +0 -11
  842. data/apis/sns/2010-03-31/api-2.json +0 -1468
  843. data/apis/sns/2010-03-31/examples-1.json +0 -5
  844. data/apis/sns/2010-03-31/paginators-1.json +0 -29
  845. data/apis/sns/2010-03-31/resources-1.json +0 -327
  846. data/apis/sns/2010-03-31/smoke.json +0 -19
  847. data/apis/sqs/2012-11-05/api-2.json +0 -1128
  848. data/apis/sqs/2012-11-05/examples-1.json +0 -5
  849. data/apis/sqs/2012-11-05/paginators-1.json +0 -7
  850. data/apis/sqs/2012-11-05/resources-1.json +0 -232
  851. data/apis/sqs/2012-11-05/smoke.json +0 -18
  852. data/apis/ssm/2014-11-06/api-2.json +0 -8924
  853. data/apis/ssm/2014-11-06/examples-1.json +0 -5
  854. data/apis/ssm/2014-11-06/paginators-1.json +0 -55
  855. data/apis/ssm/2014-11-06/smoke.json +0 -18
  856. data/apis/sso-oidc/2019-06-10/api-2.json +0 -283
  857. data/apis/sso-oidc/2019-06-10/examples-1.json +0 -5
  858. data/apis/sso-oidc/2019-06-10/paginators-1.json +0 -4
  859. data/apis/sso/2019-06-10/api-2.json +0 -281
  860. data/apis/sso/2019-06-10/examples-1.json +0 -5
  861. data/apis/sso/2019-06-10/paginators-1.json +0 -16
  862. data/apis/states/2016-11-23/api-2.json +0 -1409
  863. data/apis/states/2016-11-23/examples-1.json +0 -5
  864. data/apis/states/2016-11-23/paginators-1.json +0 -28
  865. data/apis/states/2016-11-23/smoke.json +0 -11
  866. data/apis/storagegateway/2013-06-30/api-2.json +0 -3166
  867. data/apis/storagegateway/2013-06-30/examples-1.json +0 -1381
  868. data/apis/storagegateway/2013-06-30/paginators-1.json +0 -76
  869. data/apis/streams.dynamodb/2012-08-10/api-2.json +0 -406
  870. data/apis/streams.dynamodb/2012-08-10/examples-1.json +0 -212
  871. data/apis/streams.dynamodb/2012-08-10/paginators-1.json +0 -4
  872. data/apis/sts/2011-06-15/api-2.json +0 -562
  873. data/apis/sts/2011-06-15/examples-1.json +0 -207
  874. data/apis/sts/2011-06-15/paginators-1.json +0 -4
  875. data/apis/sts/2011-06-15/smoke.json +0 -19
  876. data/apis/support/2013-04-15/api-2.json +0 -773
  877. data/apis/support/2013-04-15/examples-1.json +0 -5
  878. data/apis/support/2013-04-15/paginators-1.json +0 -25
  879. data/apis/support/2013-04-15/smoke.json +0 -22
  880. data/apis/swf/2012-01-25/api-2.json +0 -2792
  881. data/apis/swf/2012-01-25/examples-1.json +0 -5
  882. data/apis/swf/2012-01-25/paginators-1.json +0 -46
  883. data/apis/textract/2018-06-27/api-2.json +0 -572
  884. data/apis/textract/2018-06-27/examples-1.json +0 -5
  885. data/apis/textract/2018-06-27/paginators-1.json +0 -4
  886. data/apis/transcribe-streaming/2017-10-26/api-2.json +0 -262
  887. data/apis/transcribe-streaming/2017-10-26/examples-1.json +0 -5
  888. data/apis/transcribe-streaming/2017-10-26/paginators-1.json +0 -4
  889. data/apis/transcribe/2017-10-26/api-2.json +0 -524
  890. data/apis/transcribe/2017-10-26/examples-1.json +0 -5
  891. data/apis/transcribe/2017-10-26/paginators-1.json +0 -14
  892. data/apis/transfer/2018-11-05/api-2.json +0 -940
  893. data/apis/transfer/2018-11-05/examples-1.json +0 -5
  894. data/apis/transfer/2018-11-05/paginators-1.json +0 -19
  895. data/apis/translate/2017-07-01/api-2.json +0 -408
  896. data/apis/translate/2017-07-01/examples-1.json +0 -5
  897. data/apis/translate/2017-07-01/paginators-1.json +0 -4
  898. data/apis/waf-regional/2016-11-28/api-2.json +0 -3992
  899. data/apis/waf-regional/2016-11-28/examples-1.json +0 -1017
  900. data/apis/waf-regional/2016-11-28/paginators-1.json +0 -4
  901. data/apis/waf-regional/2016-11-28/smoke.json +0 -21
  902. data/apis/waf/2015-08-24/api-2.json +0 -3857
  903. data/apis/waf/2015-08-24/examples-1.json +0 -1017
  904. data/apis/waf/2015-08-24/paginators-1.json +0 -4
  905. data/apis/waf/2015-08-24/smoke.json +0 -21
  906. data/apis/workdocs/2016-05-01/api-2.json +0 -2899
  907. data/apis/workdocs/2016-05-01/examples-1.json +0 -5
  908. data/apis/workdocs/2016-05-01/paginators-1.json +0 -25
  909. data/apis/worklink/2018-09-25/api-2.json +0 -1266
  910. data/apis/worklink/2018-09-25/examples-1.json +0 -5
  911. data/apis/worklink/2018-09-25/paginators-1.json +0 -29
  912. data/apis/workmail/2017-10-01/api-2.json +0 -1560
  913. data/apis/workmail/2017-10-01/examples-1.json +0 -5
  914. data/apis/workmail/2017-10-01/paginators-1.json +0 -44
  915. data/apis/workmailmessageflow/2019-05-01/api-2.json +0 -67
  916. data/apis/workmailmessageflow/2019-05-01/examples-1.json +0 -5
  917. data/apis/workmailmessageflow/2019-05-01/paginators-1.json +0 -4
  918. data/apis/workspaces/2015-04-08/api-2.json +0 -1764
  919. data/apis/workspaces/2015-04-08/examples-1.json +0 -5
  920. data/apis/workspaces/2015-04-08/paginators-1.json +0 -20
  921. data/apis/workspaces/2015-04-08/smoke.json +0 -18
  922. data/apis/xray/2016-04-12/api-2.json +0 -1352
  923. data/apis/xray/2016-04-12/examples-1.json +0 -5
  924. data/apis/xray/2016-04-12/paginators-1.json +0 -59
  925. data/bin/aws.rb +0 -180
  926. data/endpoints.json +0 -5633
  927. data/lib/aws-sdk-core/acm.rb +0 -7
  928. data/lib/aws-sdk-core/acmpca.rb +0 -7
  929. data/lib/aws-sdk-core/alexaforbusiness.rb +0 -6
  930. data/lib/aws-sdk-core/amplify.rb +0 -6
  931. data/lib/aws-sdk-core/api/builder.rb +0 -129
  932. data/lib/aws-sdk-core/api/customizations.rb +0 -303
  933. data/lib/aws-sdk-core/api/docs/builder.rb +0 -223
  934. data/lib/aws-sdk-core/api/docs/client_type_documenter.rb +0 -118
  935. data/lib/aws-sdk-core/api/docs/crosslink.rb +0 -43
  936. data/lib/aws-sdk-core/api/docs/docstring_provider.rb +0 -75
  937. data/lib/aws-sdk-core/api/docs/operation_documenter.rb +0 -151
  938. data/lib/aws-sdk-core/api/docs/param_formatter.rb +0 -163
  939. data/lib/aws-sdk-core/api/docs/request_syntax_example.rb +0 -22
  940. data/lib/aws-sdk-core/api/docs/response_structure_example.rb +0 -91
  941. data/lib/aws-sdk-core/api/docs/shared_example.rb +0 -100
  942. data/lib/aws-sdk-core/api/docs/utils.rb +0 -133
  943. data/lib/aws-sdk-core/api/shape_map.rb +0 -146
  944. data/lib/aws-sdk-core/apigateway.rb +0 -6
  945. data/lib/aws-sdk-core/apigatewaymanagementapi.rb +0 -5
  946. data/lib/aws-sdk-core/apigatewayv2.rb +0 -5
  947. data/lib/aws-sdk-core/applicationautoscaling.rb +0 -6
  948. data/lib/aws-sdk-core/applicationdiscoveryservice.rb +0 -6
  949. data/lib/aws-sdk-core/applicationinsights.rb +0 -6
  950. data/lib/aws-sdk-core/appmesh.rb +0 -6
  951. data/lib/aws-sdk-core/appstream.rb +0 -7
  952. data/lib/aws-sdk-core/appsync.rb +0 -6
  953. data/lib/aws-sdk-core/athena.rb +0 -6
  954. data/lib/aws-sdk-core/autoscaling.rb +0 -8
  955. data/lib/aws-sdk-core/autoscalingplans.rb +0 -6
  956. data/lib/aws-sdk-core/backup.rb +0 -6
  957. data/lib/aws-sdk-core/batch.rb +0 -6
  958. data/lib/aws-sdk-core/budgets.rb +0 -6
  959. data/lib/aws-sdk-core/checksums.rb +0 -51
  960. data/lib/aws-sdk-core/chime.rb +0 -6
  961. data/lib/aws-sdk-core/client.rb +0 -62
  962. data/lib/aws-sdk-core/client_waiters.rb +0 -120
  963. data/lib/aws-sdk-core/cloud9.rb +0 -6
  964. data/lib/aws-sdk-core/clouddirectory.rb +0 -6
  965. data/lib/aws-sdk-core/cloudformation.rb +0 -8
  966. data/lib/aws-sdk-core/cloudfront.rb +0 -17
  967. data/lib/aws-sdk-core/cloudfront/cookie_signer.rb +0 -44
  968. data/lib/aws-sdk-core/cloudfront/signer.rb +0 -141
  969. data/lib/aws-sdk-core/cloudfront/url_signer.rb +0 -48
  970. data/lib/aws-sdk-core/cloudhsm.rb +0 -6
  971. data/lib/aws-sdk-core/cloudhsmv2.rb +0 -6
  972. data/lib/aws-sdk-core/cloudsearch.rb +0 -6
  973. data/lib/aws-sdk-core/cloudsearchdomain.rb +0 -5
  974. data/lib/aws-sdk-core/cloudtrail.rb +0 -6
  975. data/lib/aws-sdk-core/cloudwatch.rb +0 -8
  976. data/lib/aws-sdk-core/cloudwatchevents.rb +0 -6
  977. data/lib/aws-sdk-core/cloudwatchlogs.rb +0 -6
  978. data/lib/aws-sdk-core/codebuild.rb +0 -6
  979. data/lib/aws-sdk-core/codecommit.rb +0 -6
  980. data/lib/aws-sdk-core/codedeploy.rb +0 -7
  981. data/lib/aws-sdk-core/codepipeline.rb +0 -6
  982. data/lib/aws-sdk-core/codestar.rb +0 -6
  983. data/lib/aws-sdk-core/codestarnotifications.rb +0 -6
  984. data/lib/aws-sdk-core/cognitoidentity.rb +0 -6
  985. data/lib/aws-sdk-core/cognitoidentityprovider.rb +0 -6
  986. data/lib/aws-sdk-core/cognitosync.rb +0 -4
  987. data/lib/aws-sdk-core/comprehend.rb +0 -6
  988. data/lib/aws-sdk-core/comprehendmedical.rb +0 -6
  989. data/lib/aws-sdk-core/configservice.rb +0 -6
  990. data/lib/aws-sdk-core/connect.rb +0 -6
  991. data/lib/aws-sdk-core/costandusagereportservice.rb +0 -6
  992. data/lib/aws-sdk-core/costexplorer.rb +0 -6
  993. data/lib/aws-sdk-core/databasemigrationservice.rb +0 -7
  994. data/lib/aws-sdk-core/dataexchange.rb +0 -5
  995. data/lib/aws-sdk-core/datapipeline.rb +0 -5
  996. data/lib/aws-sdk-core/datasync.rb +0 -6
  997. data/lib/aws-sdk-core/dax.rb +0 -6
  998. data/lib/aws-sdk-core/devicefarm.rb +0 -6
  999. data/lib/aws-sdk-core/directconnect.rb +0 -6
  1000. data/lib/aws-sdk-core/directoryservice.rb +0 -6
  1001. data/lib/aws-sdk-core/dlm.rb +0 -6
  1002. data/lib/aws-sdk-core/docdb.rb +0 -7
  1003. data/lib/aws-sdk-core/dynamodb.rb +0 -40
  1004. data/lib/aws-sdk-core/dynamodb/attribute_value.rb +0 -110
  1005. data/lib/aws-sdk-core/dynamodbstreams.rb +0 -6
  1006. data/lib/aws-sdk-core/ec2.rb +0 -8
  1007. data/lib/aws-sdk-core/ec2instanceconnect.rb +0 -6
  1008. data/lib/aws-sdk-core/ecr.rb +0 -6
  1009. data/lib/aws-sdk-core/ecs.rb +0 -7
  1010. data/lib/aws-sdk-core/efs.rb +0 -6
  1011. data/lib/aws-sdk-core/eks.rb +0 -7
  1012. data/lib/aws-sdk-core/elasticache.rb +0 -7
  1013. data/lib/aws-sdk-core/elasticbeanstalk.rb +0 -6
  1014. data/lib/aws-sdk-core/elasticloadbalancing.rb +0 -7
  1015. data/lib/aws-sdk-core/elasticloadbalancingv2.rb +0 -7
  1016. data/lib/aws-sdk-core/elasticsearchservice.rb +0 -6
  1017. data/lib/aws-sdk-core/elastictranscoder.rb +0 -7
  1018. data/lib/aws-sdk-core/empty_structure.rb +0 -3
  1019. data/lib/aws-sdk-core/emr.rb +0 -7
  1020. data/lib/aws-sdk-core/endpoint_provider.rb +0 -131
  1021. data/lib/aws-sdk-core/eventbridge.rb +0 -6
  1022. data/lib/aws-sdk-core/firehose.rb +0 -6
  1023. data/lib/aws-sdk-core/fms.rb +0 -6
  1024. data/lib/aws-sdk-core/forecastqueryservice.rb +0 -6
  1025. data/lib/aws-sdk-core/forecastservice.rb +0 -6
  1026. data/lib/aws-sdk-core/fsx.rb +0 -6
  1027. data/lib/aws-sdk-core/gamelift.rb +0 -6
  1028. data/lib/aws-sdk-core/glacier.rb +0 -8
  1029. data/lib/aws-sdk-core/globalaccelerator.rb +0 -6
  1030. data/lib/aws-sdk-core/glue.rb +0 -6
  1031. data/lib/aws-sdk-core/greengrass.rb +0 -4
  1032. data/lib/aws-sdk-core/groundstation.rb +0 -6
  1033. data/lib/aws-sdk-core/guardduty.rb +0 -6
  1034. data/lib/aws-sdk-core/health.rb +0 -6
  1035. data/lib/aws-sdk-core/iam.rb +0 -8
  1036. data/lib/aws-sdk-core/importexport.rb +0 -5
  1037. data/lib/aws-sdk-core/inspector.rb +0 -6
  1038. data/lib/aws-sdk-core/iot.rb +0 -6
  1039. data/lib/aws-sdk-core/iot1clickdevicesservice.rb +0 -4
  1040. data/lib/aws-sdk-core/iot1clickprojects.rb +0 -6
  1041. data/lib/aws-sdk-core/iotanalytics.rb +0 -6
  1042. data/lib/aws-sdk-core/iotdataplane.rb +0 -4
  1043. data/lib/aws-sdk-core/iotevents.rb +0 -6
  1044. data/lib/aws-sdk-core/ioteventsdata.rb +0 -6
  1045. data/lib/aws-sdk-core/iotjobsdataplane.rb +0 -6
  1046. data/lib/aws-sdk-core/iotthingsgraph.rb +0 -6
  1047. data/lib/aws-sdk-core/kafka.rb +0 -5
  1048. data/lib/aws-sdk-core/kinesis.rb +0 -7
  1049. data/lib/aws-sdk-core/kinesisanalytics.rb +0 -6
  1050. data/lib/aws-sdk-core/kinesisanalyticsv2.rb +0 -6
  1051. data/lib/aws-sdk-core/kinesisvideo.rb +0 -6
  1052. data/lib/aws-sdk-core/kinesisvideoarchivedmedia.rb +0 -6
  1053. data/lib/aws-sdk-core/kinesisvideomedia.rb +0 -6
  1054. data/lib/aws-sdk-core/kms.rb +0 -6
  1055. data/lib/aws-sdk-core/lakeformation.rb +0 -6
  1056. data/lib/aws-sdk-core/lambda.rb +0 -7
  1057. data/lib/aws-sdk-core/lambdapreview.rb +0 -5
  1058. data/lib/aws-sdk-core/lex.rb +0 -6
  1059. data/lib/aws-sdk-core/lexmodelbuildingservice.rb +0 -6
  1060. data/lib/aws-sdk-core/licensemanager.rb +0 -6
  1061. data/lib/aws-sdk-core/lightsail.rb +0 -6
  1062. data/lib/aws-sdk-core/machinelearning.rb +0 -7
  1063. data/lib/aws-sdk-core/macie.rb +0 -6
  1064. data/lib/aws-sdk-core/managedblockchain.rb +0 -6
  1065. data/lib/aws-sdk-core/marketplacecatalog.rb +0 -6
  1066. data/lib/aws-sdk-core/marketplacecommerceanalytics.rb +0 -6
  1067. data/lib/aws-sdk-core/marketplaceentitlementservice.rb +0 -6
  1068. data/lib/aws-sdk-core/marketplacemetering.rb +0 -6
  1069. data/lib/aws-sdk-core/mediaconnect.rb +0 -5
  1070. data/lib/aws-sdk-core/mediaconvert.rb +0 -5
  1071. data/lib/aws-sdk-core/medialive.rb +0 -6
  1072. data/lib/aws-sdk-core/mediapackage.rb +0 -5
  1073. data/lib/aws-sdk-core/mediapackagevod.rb +0 -5
  1074. data/lib/aws-sdk-core/mediastore.rb +0 -6
  1075. data/lib/aws-sdk-core/mediastoredata.rb +0 -6
  1076. data/lib/aws-sdk-core/mediatailor.rb +0 -5
  1077. data/lib/aws-sdk-core/migrationhub.rb +0 -6
  1078. data/lib/aws-sdk-core/mobile.rb +0 -6
  1079. data/lib/aws-sdk-core/mq.rb +0 -5
  1080. data/lib/aws-sdk-core/mturk.rb +0 -6
  1081. data/lib/aws-sdk-core/neptune.rb +0 -7
  1082. data/lib/aws-sdk-core/opsworks.rb +0 -8
  1083. data/lib/aws-sdk-core/opsworkscm.rb +0 -7
  1084. data/lib/aws-sdk-core/organizations.rb +0 -6
  1085. data/lib/aws-sdk-core/partitions.rb +0 -174
  1086. data/lib/aws-sdk-core/partitions/partition.rb +0 -95
  1087. data/lib/aws-sdk-core/partitions/partition_list.rb +0 -60
  1088. data/lib/aws-sdk-core/partitions/region.rb +0 -66
  1089. data/lib/aws-sdk-core/partitions/service.rb +0 -75
  1090. data/lib/aws-sdk-core/personalize.rb +0 -6
  1091. data/lib/aws-sdk-core/personalizeevents.rb +0 -6
  1092. data/lib/aws-sdk-core/personalizeruntime.rb +0 -6
  1093. data/lib/aws-sdk-core/pi.rb +0 -6
  1094. data/lib/aws-sdk-core/pinpoint.rb +0 -5
  1095. data/lib/aws-sdk-core/pinpointemail.rb +0 -6
  1096. data/lib/aws-sdk-core/pinpointsmsvoice.rb +0 -4
  1097. data/lib/aws-sdk-core/plugins/api_gateway_header.rb +0 -19
  1098. data/lib/aws-sdk-core/plugins/csd_conditional_signing.rb +0 -30
  1099. data/lib/aws-sdk-core/plugins/csd_switch_to_post.rb +0 -36
  1100. data/lib/aws-sdk-core/plugins/dynamodb_crc32_validation.rb +0 -52
  1101. data/lib/aws-sdk-core/plugins/dynamodb_extended_retries.rb +0 -22
  1102. data/lib/aws-sdk-core/plugins/dynamodb_simple_attributes.rb +0 -208
  1103. data/lib/aws-sdk-core/plugins/ec2_copy_encrypted_snapshot.rb +0 -56
  1104. data/lib/aws-sdk-core/plugins/ec2_region_validation.rb +0 -17
  1105. data/lib/aws-sdk-core/plugins/glacier_account_id.rb +0 -19
  1106. data/lib/aws-sdk-core/plugins/glacier_api_version.rb +0 -19
  1107. data/lib/aws-sdk-core/plugins/glacier_checksums.rb +0 -87
  1108. data/lib/aws-sdk-core/plugins/machine_learning_predict_endpoint.rb +0 -20
  1109. data/lib/aws-sdk-core/plugins/rds_cross_region_copying.rb +0 -69
  1110. data/lib/aws-sdk-core/plugins/request_signer.rb +0 -150
  1111. data/lib/aws-sdk-core/plugins/route_53_id_fix.rb +0 -55
  1112. data/lib/aws-sdk-core/plugins/s3_accelerate.rb +0 -90
  1113. data/lib/aws-sdk-core/plugins/s3_bucket_dns.rb +0 -86
  1114. data/lib/aws-sdk-core/plugins/s3_bucket_name_restrictions.rb +0 -21
  1115. data/lib/aws-sdk-core/plugins/s3_control_dns.rb +0 -25
  1116. data/lib/aws-sdk-core/plugins/s3_control_dualstack.rb +0 -48
  1117. data/lib/aws-sdk-core/plugins/s3_control_signer.rb +0 -53
  1118. data/lib/aws-sdk-core/plugins/s3_dualstack.rb +0 -67
  1119. data/lib/aws-sdk-core/plugins/s3_expect_100_continue.rb +0 -27
  1120. data/lib/aws-sdk-core/plugins/s3_get_bucket_location_fix.rb +0 -21
  1121. data/lib/aws-sdk-core/plugins/s3_host_id.rb +0 -26
  1122. data/lib/aws-sdk-core/plugins/s3_http_200_errors.rb +0 -45
  1123. data/lib/aws-sdk-core/plugins/s3_location_constraint.rb +0 -31
  1124. data/lib/aws-sdk-core/plugins/s3_md5s.rb +0 -50
  1125. data/lib/aws-sdk-core/plugins/s3_redirects.rb +0 -37
  1126. data/lib/aws-sdk-core/plugins/s3_request_signer.rb +0 -166
  1127. data/lib/aws-sdk-core/plugins/s3_sse_cpk.rb +0 -64
  1128. data/lib/aws-sdk-core/plugins/s3_url_encoded_keys.rb +0 -93
  1129. data/lib/aws-sdk-core/plugins/sqs_md5s.rb +0 -164
  1130. data/lib/aws-sdk-core/plugins/sqs_queue_urls.rb +0 -34
  1131. data/lib/aws-sdk-core/plugins/sts_regional_endpoints.rb +0 -30
  1132. data/lib/aws-sdk-core/plugins/swf_read_timeouts.rb +0 -23
  1133. data/lib/aws-sdk-core/polly.rb +0 -14
  1134. data/lib/aws-sdk-core/polly/presigner.rb +0 -70
  1135. data/lib/aws-sdk-core/pricing.rb +0 -6
  1136. data/lib/aws-sdk-core/qldb.rb +0 -6
  1137. data/lib/aws-sdk-core/qldbsession.rb +0 -6
  1138. data/lib/aws-sdk-core/quicksight.rb +0 -6
  1139. data/lib/aws-sdk-core/ram.rb +0 -6
  1140. data/lib/aws-sdk-core/rds.rb +0 -16
  1141. data/lib/aws-sdk-core/rds/auth_token_generator.rb +0 -63
  1142. data/lib/aws-sdk-core/rdsdataservice.rb +0 -6
  1143. data/lib/aws-sdk-core/redshift.rb +0 -7
  1144. data/lib/aws-sdk-core/rekognition.rb +0 -6
  1145. data/lib/aws-sdk-core/resourcegroups.rb +0 -6
  1146. data/lib/aws-sdk-core/resourcegroupstaggingapi.rb +0 -6
  1147. data/lib/aws-sdk-core/robomaker.rb +0 -6
  1148. data/lib/aws-sdk-core/route53.rb +0 -7
  1149. data/lib/aws-sdk-core/route53domains.rb +0 -6
  1150. data/lib/aws-sdk-core/route53resolver.rb +0 -6
  1151. data/lib/aws-sdk-core/s3.rb +0 -26
  1152. data/lib/aws-sdk-core/s3/bucket_region_cache.rb +0 -75
  1153. data/lib/aws-sdk-core/s3/presigner.rb +0 -116
  1154. data/lib/aws-sdk-core/s3control.rb +0 -6
  1155. data/lib/aws-sdk-core/sagemaker.rb +0 -7
  1156. data/lib/aws-sdk-core/sagemakerruntime.rb +0 -6
  1157. data/lib/aws-sdk-core/savingsplans.rb +0 -6
  1158. data/lib/aws-sdk-core/secretsmanager.rb +0 -6
  1159. data/lib/aws-sdk-core/securityhub.rb +0 -6
  1160. data/lib/aws-sdk-core/serverlessapplicationrepository.rb +0 -5
  1161. data/lib/aws-sdk-core/service.rb +0 -4
  1162. data/lib/aws-sdk-core/servicecatalog.rb +0 -6
  1163. data/lib/aws-sdk-core/servicediscovery.rb +0 -6
  1164. data/lib/aws-sdk-core/servicequotas.rb +0 -6
  1165. data/lib/aws-sdk-core/ses.rb +0 -7
  1166. data/lib/aws-sdk-core/sesv2.rb +0 -6
  1167. data/lib/aws-sdk-core/shield.rb +0 -6
  1168. data/lib/aws-sdk-core/signer.rb +0 -7
  1169. data/lib/aws-sdk-core/signers/base.rb +0 -31
  1170. data/lib/aws-sdk-core/signers/s3.rb +0 -185
  1171. data/lib/aws-sdk-core/signers/v2.rb +0 -51
  1172. data/lib/aws-sdk-core/signers/v3.rb +0 -34
  1173. data/lib/aws-sdk-core/signers/v4.rb +0 -234
  1174. data/lib/aws-sdk-core/simpledb.rb +0 -5
  1175. data/lib/aws-sdk-core/sms.rb +0 -6
  1176. data/lib/aws-sdk-core/snowball.rb +0 -6
  1177. data/lib/aws-sdk-core/sns.rb +0 -7
  1178. data/lib/aws-sdk-core/sqs.rb +0 -7
  1179. data/lib/aws-sdk-core/ssm.rb +0 -6
  1180. data/lib/aws-sdk-core/sso.rb +0 -6
  1181. data/lib/aws-sdk-core/ssooidc.rb +0 -6
  1182. data/lib/aws-sdk-core/states.rb +0 -6
  1183. data/lib/aws-sdk-core/storagegateway.rb +0 -6
  1184. data/lib/aws-sdk-core/sts.rb +0 -6
  1185. data/lib/aws-sdk-core/support.rb +0 -6
  1186. data/lib/aws-sdk-core/swf.rb +0 -6
  1187. data/lib/aws-sdk-core/textract.rb +0 -6
  1188. data/lib/aws-sdk-core/transcribeservice.rb +0 -6
  1189. data/lib/aws-sdk-core/transfer.rb +0 -6
  1190. data/lib/aws-sdk-core/translate.rb +0 -6
  1191. data/lib/aws-sdk-core/tree_hash.rb +0 -69
  1192. data/lib/aws-sdk-core/version.rb +0 -3
  1193. data/lib/aws-sdk-core/waf.rb +0 -6
  1194. data/lib/aws-sdk-core/wafregional.rb +0 -6
  1195. data/lib/aws-sdk-core/waiters/null_provider.rb +0 -12
  1196. data/lib/aws-sdk-core/waiters/provider.rb +0 -35
  1197. data/lib/aws-sdk-core/workdocs.rb +0 -6
  1198. data/lib/aws-sdk-core/worklink.rb +0 -6
  1199. data/lib/aws-sdk-core/workmail.rb +0 -6
  1200. data/lib/aws-sdk-core/workmailmessageflow.rb +0 -6
  1201. data/lib/aws-sdk-core/workspaces.rb +0 -6
  1202. data/lib/aws-sdk-core/xray.rb +0 -6
  1203. data/lib/seahorse/client/plugins/restful_bindings.rb +0 -125
  1204. data/service-models.json +0 -797
@@ -1,5 +0,0 @@
1
- {
2
- "version": "1.0",
3
- "examples": {
4
- }
5
- }
@@ -1,14 +0,0 @@
1
- {
2
- "pagination": {
3
- "GetSavingsPlansCoverage": {
4
- "input_token": "NextToken",
5
- "output_token": "NextToken",
6
- "limit_key": "MaxResults"
7
- },
8
- "GetSavingsPlansUtilizationDetails": {
9
- "input_token": "NextToken",
10
- "output_token": "NextToken",
11
- "limit_key": "MaxResults"
12
- }
13
- }
14
- }
@@ -1,3499 +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":"AccessDeniedException"},
28
- {"shape":"ThrottledClientException"},
29
- {"shape":"ServiceUnavailableException"},
30
- {"shape":"ServiceFailureException"}
31
- ]
32
- },
33
- "AssociatePhoneNumbersWithVoiceConnector":{
34
- "name":"AssociatePhoneNumbersWithVoiceConnector",
35
- "http":{
36
- "method":"POST",
37
- "requestUri":"/voice-connectors/{voiceConnectorId}?operation=associate-phone-numbers",
38
- "responseCode":200
39
- },
40
- "input":{"shape":"AssociatePhoneNumbersWithVoiceConnectorRequest"},
41
- "output":{"shape":"AssociatePhoneNumbersWithVoiceConnectorResponse"},
42
- "errors":[
43
- {"shape":"UnauthorizedClientException"},
44
- {"shape":"NotFoundException"},
45
- {"shape":"ForbiddenException"},
46
- {"shape":"BadRequestException"},
47
- {"shape":"AccessDeniedException"},
48
- {"shape":"ThrottledClientException"},
49
- {"shape":"ServiceUnavailableException"},
50
- {"shape":"ServiceFailureException"}
51
- ]
52
- },
53
- "AssociatePhoneNumbersWithVoiceConnectorGroup":{
54
- "name":"AssociatePhoneNumbersWithVoiceConnectorGroup",
55
- "http":{
56
- "method":"POST",
57
- "requestUri":"/voice-connector-groups/{voiceConnectorGroupId}?operation=associate-phone-numbers",
58
- "responseCode":200
59
- },
60
- "input":{"shape":"AssociatePhoneNumbersWithVoiceConnectorGroupRequest"},
61
- "output":{"shape":"AssociatePhoneNumbersWithVoiceConnectorGroupResponse"},
62
- "errors":[
63
- {"shape":"UnauthorizedClientException"},
64
- {"shape":"NotFoundException"},
65
- {"shape":"ForbiddenException"},
66
- {"shape":"BadRequestException"},
67
- {"shape":"AccessDeniedException"},
68
- {"shape":"ThrottledClientException"},
69
- {"shape":"ServiceUnavailableException"},
70
- {"shape":"ServiceFailureException"}
71
- ]
72
- },
73
- "BatchDeletePhoneNumber":{
74
- "name":"BatchDeletePhoneNumber",
75
- "http":{
76
- "method":"POST",
77
- "requestUri":"/phone-numbers?operation=batch-delete",
78
- "responseCode":200
79
- },
80
- "input":{"shape":"BatchDeletePhoneNumberRequest"},
81
- "output":{"shape":"BatchDeletePhoneNumberResponse"},
82
- "errors":[
83
- {"shape":"UnauthorizedClientException"},
84
- {"shape":"NotFoundException"},
85
- {"shape":"ForbiddenException"},
86
- {"shape":"BadRequestException"},
87
- {"shape":"ThrottledClientException"},
88
- {"shape":"ServiceUnavailableException"},
89
- {"shape":"ServiceFailureException"}
90
- ]
91
- },
92
- "BatchSuspendUser":{
93
- "name":"BatchSuspendUser",
94
- "http":{
95
- "method":"POST",
96
- "requestUri":"/accounts/{accountId}/users?operation=suspend",
97
- "responseCode":200
98
- },
99
- "input":{"shape":"BatchSuspendUserRequest"},
100
- "output":{"shape":"BatchSuspendUserResponse"},
101
- "errors":[
102
- {"shape":"UnauthorizedClientException"},
103
- {"shape":"NotFoundException"},
104
- {"shape":"ForbiddenException"},
105
- {"shape":"BadRequestException"},
106
- {"shape":"ThrottledClientException"},
107
- {"shape":"ServiceUnavailableException"},
108
- {"shape":"ServiceFailureException"}
109
- ]
110
- },
111
- "BatchUnsuspendUser":{
112
- "name":"BatchUnsuspendUser",
113
- "http":{
114
- "method":"POST",
115
- "requestUri":"/accounts/{accountId}/users?operation=unsuspend",
116
- "responseCode":200
117
- },
118
- "input":{"shape":"BatchUnsuspendUserRequest"},
119
- "output":{"shape":"BatchUnsuspendUserResponse"},
120
- "errors":[
121
- {"shape":"UnauthorizedClientException"},
122
- {"shape":"NotFoundException"},
123
- {"shape":"ForbiddenException"},
124
- {"shape":"BadRequestException"},
125
- {"shape":"ThrottledClientException"},
126
- {"shape":"ServiceUnavailableException"},
127
- {"shape":"ServiceFailureException"}
128
- ]
129
- },
130
- "BatchUpdatePhoneNumber":{
131
- "name":"BatchUpdatePhoneNumber",
132
- "http":{
133
- "method":"POST",
134
- "requestUri":"/phone-numbers?operation=batch-update",
135
- "responseCode":200
136
- },
137
- "input":{"shape":"BatchUpdatePhoneNumberRequest"},
138
- "output":{"shape":"BatchUpdatePhoneNumberResponse"},
139
- "errors":[
140
- {"shape":"UnauthorizedClientException"},
141
- {"shape":"NotFoundException"},
142
- {"shape":"ForbiddenException"},
143
- {"shape":"BadRequestException"},
144
- {"shape":"ThrottledClientException"},
145
- {"shape":"ServiceUnavailableException"},
146
- {"shape":"ServiceFailureException"}
147
- ]
148
- },
149
- "BatchUpdateUser":{
150
- "name":"BatchUpdateUser",
151
- "http":{
152
- "method":"POST",
153
- "requestUri":"/accounts/{accountId}/users",
154
- "responseCode":200
155
- },
156
- "input":{"shape":"BatchUpdateUserRequest"},
157
- "output":{"shape":"BatchUpdateUserResponse"},
158
- "errors":[
159
- {"shape":"UnauthorizedClientException"},
160
- {"shape":"NotFoundException"},
161
- {"shape":"ForbiddenException"},
162
- {"shape":"BadRequestException"},
163
- {"shape":"ThrottledClientException"},
164
- {"shape":"ServiceUnavailableException"},
165
- {"shape":"ServiceFailureException"}
166
- ]
167
- },
168
- "CreateAccount":{
169
- "name":"CreateAccount",
170
- "http":{
171
- "method":"POST",
172
- "requestUri":"/accounts",
173
- "responseCode":201
174
- },
175
- "input":{"shape":"CreateAccountRequest"},
176
- "output":{"shape":"CreateAccountResponse"},
177
- "errors":[
178
- {"shape":"UnauthorizedClientException"},
179
- {"shape":"NotFoundException"},
180
- {"shape":"ForbiddenException"},
181
- {"shape":"BadRequestException"},
182
- {"shape":"ThrottledClientException"},
183
- {"shape":"ServiceUnavailableException"},
184
- {"shape":"ServiceFailureException"}
185
- ]
186
- },
187
- "CreateBot":{
188
- "name":"CreateBot",
189
- "http":{
190
- "method":"POST",
191
- "requestUri":"/accounts/{accountId}/bots",
192
- "responseCode":201
193
- },
194
- "input":{"shape":"CreateBotRequest"},
195
- "output":{"shape":"CreateBotResponse"},
196
- "errors":[
197
- {"shape":"ServiceUnavailableException"},
198
- {"shape":"ServiceFailureException"},
199
- {"shape":"ForbiddenException"},
200
- {"shape":"BadRequestException"},
201
- {"shape":"UnauthorizedClientException"},
202
- {"shape":"ResourceLimitExceededException"},
203
- {"shape":"NotFoundException"}
204
- ]
205
- },
206
- "CreatePhoneNumberOrder":{
207
- "name":"CreatePhoneNumberOrder",
208
- "http":{
209
- "method":"POST",
210
- "requestUri":"/phone-number-orders",
211
- "responseCode":201
212
- },
213
- "input":{"shape":"CreatePhoneNumberOrderRequest"},
214
- "output":{"shape":"CreatePhoneNumberOrderResponse"},
215
- "errors":[
216
- {"shape":"BadRequestException"},
217
- {"shape":"ForbiddenException"},
218
- {"shape":"AccessDeniedException"},
219
- {"shape":"UnauthorizedClientException"},
220
- {"shape":"ThrottledClientException"},
221
- {"shape":"ResourceLimitExceededException"},
222
- {"shape":"ServiceUnavailableException"},
223
- {"shape":"ServiceFailureException"}
224
- ]
225
- },
226
- "CreateVoiceConnector":{
227
- "name":"CreateVoiceConnector",
228
- "http":{
229
- "method":"POST",
230
- "requestUri":"/voice-connectors",
231
- "responseCode":201
232
- },
233
- "input":{"shape":"CreateVoiceConnectorRequest"},
234
- "output":{"shape":"CreateVoiceConnectorResponse"},
235
- "errors":[
236
- {"shape":"BadRequestException"},
237
- {"shape":"ForbiddenException"},
238
- {"shape":"AccessDeniedException"},
239
- {"shape":"UnauthorizedClientException"},
240
- {"shape":"ThrottledClientException"},
241
- {"shape":"ResourceLimitExceededException"},
242
- {"shape":"ServiceUnavailableException"},
243
- {"shape":"ServiceFailureException"}
244
- ]
245
- },
246
- "CreateVoiceConnectorGroup":{
247
- "name":"CreateVoiceConnectorGroup",
248
- "http":{
249
- "method":"POST",
250
- "requestUri":"/voice-connector-groups",
251
- "responseCode":201
252
- },
253
- "input":{"shape":"CreateVoiceConnectorGroupRequest"},
254
- "output":{"shape":"CreateVoiceConnectorGroupResponse"},
255
- "errors":[
256
- {"shape":"BadRequestException"},
257
- {"shape":"ForbiddenException"},
258
- {"shape":"AccessDeniedException"},
259
- {"shape":"UnauthorizedClientException"},
260
- {"shape":"ThrottledClientException"},
261
- {"shape":"ResourceLimitExceededException"},
262
- {"shape":"ServiceUnavailableException"},
263
- {"shape":"ServiceFailureException"}
264
- ]
265
- },
266
- "DeleteAccount":{
267
- "name":"DeleteAccount",
268
- "http":{
269
- "method":"DELETE",
270
- "requestUri":"/accounts/{accountId}",
271
- "responseCode":204
272
- },
273
- "input":{"shape":"DeleteAccountRequest"},
274
- "output":{"shape":"DeleteAccountResponse"},
275
- "errors":[
276
- {"shape":"UnauthorizedClientException"},
277
- {"shape":"NotFoundException"},
278
- {"shape":"ForbiddenException"},
279
- {"shape":"BadRequestException"},
280
- {"shape":"ThrottledClientException"},
281
- {"shape":"UnprocessableEntityException"},
282
- {"shape":"ServiceUnavailableException"},
283
- {"shape":"ServiceFailureException"}
284
- ]
285
- },
286
- "DeleteEventsConfiguration":{
287
- "name":"DeleteEventsConfiguration",
288
- "http":{
289
- "method":"DELETE",
290
- "requestUri":"/accounts/{accountId}/bots/{botId}/events-configuration",
291
- "responseCode":204
292
- },
293
- "input":{"shape":"DeleteEventsConfigurationRequest"},
294
- "errors":[
295
- {"shape":"ServiceUnavailableException"},
296
- {"shape":"ServiceFailureException"},
297
- {"shape":"ForbiddenException"},
298
- {"shape":"BadRequestException"},
299
- {"shape":"UnauthorizedClientException"},
300
- {"shape":"ResourceLimitExceededException"}
301
- ]
302
- },
303
- "DeletePhoneNumber":{
304
- "name":"DeletePhoneNumber",
305
- "http":{
306
- "method":"DELETE",
307
- "requestUri":"/phone-numbers/{phoneNumberId}",
308
- "responseCode":204
309
- },
310
- "input":{"shape":"DeletePhoneNumberRequest"},
311
- "errors":[
312
- {"shape":"UnauthorizedClientException"},
313
- {"shape":"NotFoundException"},
314
- {"shape":"ForbiddenException"},
315
- {"shape":"BadRequestException"},
316
- {"shape":"ThrottledClientException"},
317
- {"shape":"ServiceUnavailableException"},
318
- {"shape":"ServiceFailureException"}
319
- ]
320
- },
321
- "DeleteVoiceConnector":{
322
- "name":"DeleteVoiceConnector",
323
- "http":{
324
- "method":"DELETE",
325
- "requestUri":"/voice-connectors/{voiceConnectorId}",
326
- "responseCode":204
327
- },
328
- "input":{"shape":"DeleteVoiceConnectorRequest"},
329
- "errors":[
330
- {"shape":"UnauthorizedClientException"},
331
- {"shape":"NotFoundException"},
332
- {"shape":"ForbiddenException"},
333
- {"shape":"BadRequestException"},
334
- {"shape":"ConflictException"},
335
- {"shape":"ThrottledClientException"},
336
- {"shape":"ServiceUnavailableException"},
337
- {"shape":"ServiceFailureException"}
338
- ]
339
- },
340
- "DeleteVoiceConnectorGroup":{
341
- "name":"DeleteVoiceConnectorGroup",
342
- "http":{
343
- "method":"DELETE",
344
- "requestUri":"/voice-connector-groups/{voiceConnectorGroupId}",
345
- "responseCode":204
346
- },
347
- "input":{"shape":"DeleteVoiceConnectorGroupRequest"},
348
- "errors":[
349
- {"shape":"UnauthorizedClientException"},
350
- {"shape":"NotFoundException"},
351
- {"shape":"ForbiddenException"},
352
- {"shape":"BadRequestException"},
353
- {"shape":"ConflictException"},
354
- {"shape":"ThrottledClientException"},
355
- {"shape":"ServiceUnavailableException"},
356
- {"shape":"ServiceFailureException"}
357
- ]
358
- },
359
- "DeleteVoiceConnectorOrigination":{
360
- "name":"DeleteVoiceConnectorOrigination",
361
- "http":{
362
- "method":"DELETE",
363
- "requestUri":"/voice-connectors/{voiceConnectorId}/origination",
364
- "responseCode":204
365
- },
366
- "input":{"shape":"DeleteVoiceConnectorOriginationRequest"},
367
- "errors":[
368
- {"shape":"UnauthorizedClientException"},
369
- {"shape":"NotFoundException"},
370
- {"shape":"ForbiddenException"},
371
- {"shape":"BadRequestException"},
372
- {"shape":"ThrottledClientException"},
373
- {"shape":"ServiceUnavailableException"},
374
- {"shape":"ServiceFailureException"}
375
- ]
376
- },
377
- "DeleteVoiceConnectorStreamingConfiguration":{
378
- "name":"DeleteVoiceConnectorStreamingConfiguration",
379
- "http":{
380
- "method":"DELETE",
381
- "requestUri":"/voice-connectors/{voiceConnectorId}/streaming-configuration",
382
- "responseCode":204
383
- },
384
- "input":{"shape":"DeleteVoiceConnectorStreamingConfigurationRequest"},
385
- "errors":[
386
- {"shape":"UnauthorizedClientException"},
387
- {"shape":"NotFoundException"},
388
- {"shape":"ForbiddenException"},
389
- {"shape":"BadRequestException"},
390
- {"shape":"ThrottledClientException"},
391
- {"shape":"ServiceUnavailableException"},
392
- {"shape":"ServiceFailureException"}
393
- ]
394
- },
395
- "DeleteVoiceConnectorTermination":{
396
- "name":"DeleteVoiceConnectorTermination",
397
- "http":{
398
- "method":"DELETE",
399
- "requestUri":"/voice-connectors/{voiceConnectorId}/termination",
400
- "responseCode":204
401
- },
402
- "input":{"shape":"DeleteVoiceConnectorTerminationRequest"},
403
- "errors":[
404
- {"shape":"UnauthorizedClientException"},
405
- {"shape":"NotFoundException"},
406
- {"shape":"ForbiddenException"},
407
- {"shape":"BadRequestException"},
408
- {"shape":"ThrottledClientException"},
409
- {"shape":"ServiceUnavailableException"},
410
- {"shape":"ServiceFailureException"}
411
- ]
412
- },
413
- "DeleteVoiceConnectorTerminationCredentials":{
414
- "name":"DeleteVoiceConnectorTerminationCredentials",
415
- "http":{
416
- "method":"POST",
417
- "requestUri":"/voice-connectors/{voiceConnectorId}/termination/credentials?operation=delete",
418
- "responseCode":204
419
- },
420
- "input":{"shape":"DeleteVoiceConnectorTerminationCredentialsRequest"},
421
- "errors":[
422
- {"shape":"UnauthorizedClientException"},
423
- {"shape":"NotFoundException"},
424
- {"shape":"ForbiddenException"},
425
- {"shape":"BadRequestException"},
426
- {"shape":"ThrottledClientException"},
427
- {"shape":"ServiceUnavailableException"},
428
- {"shape":"ServiceFailureException"}
429
- ]
430
- },
431
- "DisassociatePhoneNumberFromUser":{
432
- "name":"DisassociatePhoneNumberFromUser",
433
- "http":{
434
- "method":"POST",
435
- "requestUri":"/accounts/{accountId}/users/{userId}?operation=disassociate-phone-number",
436
- "responseCode":200
437
- },
438
- "input":{"shape":"DisassociatePhoneNumberFromUserRequest"},
439
- "output":{"shape":"DisassociatePhoneNumberFromUserResponse"},
440
- "errors":[
441
- {"shape":"UnauthorizedClientException"},
442
- {"shape":"NotFoundException"},
443
- {"shape":"ForbiddenException"},
444
- {"shape":"BadRequestException"},
445
- {"shape":"ThrottledClientException"},
446
- {"shape":"ServiceUnavailableException"},
447
- {"shape":"ServiceFailureException"}
448
- ]
449
- },
450
- "DisassociatePhoneNumbersFromVoiceConnector":{
451
- "name":"DisassociatePhoneNumbersFromVoiceConnector",
452
- "http":{
453
- "method":"POST",
454
- "requestUri":"/voice-connectors/{voiceConnectorId}?operation=disassociate-phone-numbers",
455
- "responseCode":200
456
- },
457
- "input":{"shape":"DisassociatePhoneNumbersFromVoiceConnectorRequest"},
458
- "output":{"shape":"DisassociatePhoneNumbersFromVoiceConnectorResponse"},
459
- "errors":[
460
- {"shape":"UnauthorizedClientException"},
461
- {"shape":"NotFoundException"},
462
- {"shape":"ForbiddenException"},
463
- {"shape":"BadRequestException"},
464
- {"shape":"ThrottledClientException"},
465
- {"shape":"ServiceUnavailableException"},
466
- {"shape":"ServiceFailureException"}
467
- ]
468
- },
469
- "DisassociatePhoneNumbersFromVoiceConnectorGroup":{
470
- "name":"DisassociatePhoneNumbersFromVoiceConnectorGroup",
471
- "http":{
472
- "method":"POST",
473
- "requestUri":"/voice-connector-groups/{voiceConnectorGroupId}?operation=disassociate-phone-numbers",
474
- "responseCode":200
475
- },
476
- "input":{"shape":"DisassociatePhoneNumbersFromVoiceConnectorGroupRequest"},
477
- "output":{"shape":"DisassociatePhoneNumbersFromVoiceConnectorGroupResponse"},
478
- "errors":[
479
- {"shape":"UnauthorizedClientException"},
480
- {"shape":"NotFoundException"},
481
- {"shape":"ForbiddenException"},
482
- {"shape":"BadRequestException"},
483
- {"shape":"ThrottledClientException"},
484
- {"shape":"ServiceUnavailableException"},
485
- {"shape":"ServiceFailureException"}
486
- ]
487
- },
488
- "GetAccount":{
489
- "name":"GetAccount",
490
- "http":{
491
- "method":"GET",
492
- "requestUri":"/accounts/{accountId}"
493
- },
494
- "input":{"shape":"GetAccountRequest"},
495
- "output":{"shape":"GetAccountResponse"},
496
- "errors":[
497
- {"shape":"UnauthorizedClientException"},
498
- {"shape":"NotFoundException"},
499
- {"shape":"ForbiddenException"},
500
- {"shape":"BadRequestException"},
501
- {"shape":"ThrottledClientException"},
502
- {"shape":"ServiceUnavailableException"},
503
- {"shape":"ServiceFailureException"}
504
- ]
505
- },
506
- "GetAccountSettings":{
507
- "name":"GetAccountSettings",
508
- "http":{
509
- "method":"GET",
510
- "requestUri":"/accounts/{accountId}/settings"
511
- },
512
- "input":{"shape":"GetAccountSettingsRequest"},
513
- "output":{"shape":"GetAccountSettingsResponse"},
514
- "errors":[
515
- {"shape":"UnauthorizedClientException"},
516
- {"shape":"NotFoundException"},
517
- {"shape":"BadRequestException"},
518
- {"shape":"ForbiddenException"},
519
- {"shape":"ThrottledClientException"},
520
- {"shape":"ServiceUnavailableException"},
521
- {"shape":"ServiceFailureException"}
522
- ]
523
- },
524
- "GetBot":{
525
- "name":"GetBot",
526
- "http":{
527
- "method":"GET",
528
- "requestUri":"/accounts/{accountId}/bots/{botId}",
529
- "responseCode":200
530
- },
531
- "input":{"shape":"GetBotRequest"},
532
- "output":{"shape":"GetBotResponse"},
533
- "errors":[
534
- {"shape":"ServiceUnavailableException"},
535
- {"shape":"ServiceFailureException"},
536
- {"shape":"ForbiddenException"},
537
- {"shape":"UnauthorizedClientException"},
538
- {"shape":"NotFoundException"},
539
- {"shape":"BadRequestException"}
540
- ]
541
- },
542
- "GetEventsConfiguration":{
543
- "name":"GetEventsConfiguration",
544
- "http":{
545
- "method":"GET",
546
- "requestUri":"/accounts/{accountId}/bots/{botId}/events-configuration",
547
- "responseCode":200
548
- },
549
- "input":{"shape":"GetEventsConfigurationRequest"},
550
- "output":{"shape":"GetEventsConfigurationResponse"},
551
- "errors":[
552
- {"shape":"ServiceUnavailableException"},
553
- {"shape":"ServiceFailureException"},
554
- {"shape":"ForbiddenException"},
555
- {"shape":"BadRequestException"},
556
- {"shape":"UnauthorizedClientException"},
557
- {"shape":"ResourceLimitExceededException"},
558
- {"shape":"NotFoundException"}
559
- ]
560
- },
561
- "GetGlobalSettings":{
562
- "name":"GetGlobalSettings",
563
- "http":{
564
- "method":"GET",
565
- "requestUri":"/settings",
566
- "responseCode":200
567
- },
568
- "output":{"shape":"GetGlobalSettingsResponse"},
569
- "errors":[
570
- {"shape":"UnauthorizedClientException"},
571
- {"shape":"ForbiddenException"},
572
- {"shape":"BadRequestException"},
573
- {"shape":"ThrottledClientException"},
574
- {"shape":"ServiceUnavailableException"},
575
- {"shape":"ServiceFailureException"}
576
- ]
577
- },
578
- "GetPhoneNumber":{
579
- "name":"GetPhoneNumber",
580
- "http":{
581
- "method":"GET",
582
- "requestUri":"/phone-numbers/{phoneNumberId}"
583
- },
584
- "input":{"shape":"GetPhoneNumberRequest"},
585
- "output":{"shape":"GetPhoneNumberResponse"},
586
- "errors":[
587
- {"shape":"UnauthorizedClientException"},
588
- {"shape":"NotFoundException"},
589
- {"shape":"ForbiddenException"},
590
- {"shape":"BadRequestException"},
591
- {"shape":"ThrottledClientException"},
592
- {"shape":"ServiceUnavailableException"},
593
- {"shape":"ServiceFailureException"}
594
- ]
595
- },
596
- "GetPhoneNumberOrder":{
597
- "name":"GetPhoneNumberOrder",
598
- "http":{
599
- "method":"GET",
600
- "requestUri":"/phone-number-orders/{phoneNumberOrderId}",
601
- "responseCode":200
602
- },
603
- "input":{"shape":"GetPhoneNumberOrderRequest"},
604
- "output":{"shape":"GetPhoneNumberOrderResponse"},
605
- "errors":[
606
- {"shape":"UnauthorizedClientException"},
607
- {"shape":"NotFoundException"},
608
- {"shape":"ForbiddenException"},
609
- {"shape":"BadRequestException"},
610
- {"shape":"ThrottledClientException"},
611
- {"shape":"ServiceUnavailableException"},
612
- {"shape":"ServiceFailureException"}
613
- ]
614
- },
615
- "GetPhoneNumberSettings":{
616
- "name":"GetPhoneNumberSettings",
617
- "http":{
618
- "method":"GET",
619
- "requestUri":"/settings/phone-number",
620
- "responseCode":200
621
- },
622
- "output":{"shape":"GetPhoneNumberSettingsResponse"},
623
- "errors":[
624
- {"shape":"UnauthorizedClientException"},
625
- {"shape":"ForbiddenException"},
626
- {"shape":"BadRequestException"},
627
- {"shape":"ThrottledClientException"},
628
- {"shape":"ServiceUnavailableException"},
629
- {"shape":"ServiceFailureException"}
630
- ]
631
- },
632
- "GetUser":{
633
- "name":"GetUser",
634
- "http":{
635
- "method":"GET",
636
- "requestUri":"/accounts/{accountId}/users/{userId}",
637
- "responseCode":200
638
- },
639
- "input":{"shape":"GetUserRequest"},
640
- "output":{"shape":"GetUserResponse"},
641
- "errors":[
642
- {"shape":"UnauthorizedClientException"},
643
- {"shape":"NotFoundException"},
644
- {"shape":"ForbiddenException"},
645
- {"shape":"BadRequestException"},
646
- {"shape":"ThrottledClientException"},
647
- {"shape":"ServiceUnavailableException"},
648
- {"shape":"ServiceFailureException"}
649
- ]
650
- },
651
- "GetUserSettings":{
652
- "name":"GetUserSettings",
653
- "http":{
654
- "method":"GET",
655
- "requestUri":"/accounts/{accountId}/users/{userId}/settings",
656
- "responseCode":200
657
- },
658
- "input":{"shape":"GetUserSettingsRequest"},
659
- "output":{"shape":"GetUserSettingsResponse"},
660
- "errors":[
661
- {"shape":"UnauthorizedClientException"},
662
- {"shape":"NotFoundException"},
663
- {"shape":"ForbiddenException"},
664
- {"shape":"BadRequestException"},
665
- {"shape":"ThrottledClientException"},
666
- {"shape":"ServiceUnavailableException"},
667
- {"shape":"ServiceFailureException"}
668
- ]
669
- },
670
- "GetVoiceConnector":{
671
- "name":"GetVoiceConnector",
672
- "http":{
673
- "method":"GET",
674
- "requestUri":"/voice-connectors/{voiceConnectorId}",
675
- "responseCode":200
676
- },
677
- "input":{"shape":"GetVoiceConnectorRequest"},
678
- "output":{"shape":"GetVoiceConnectorResponse"},
679
- "errors":[
680
- {"shape":"UnauthorizedClientException"},
681
- {"shape":"NotFoundException"},
682
- {"shape":"ForbiddenException"},
683
- {"shape":"BadRequestException"},
684
- {"shape":"ThrottledClientException"},
685
- {"shape":"ServiceUnavailableException"},
686
- {"shape":"ServiceFailureException"}
687
- ]
688
- },
689
- "GetVoiceConnectorGroup":{
690
- "name":"GetVoiceConnectorGroup",
691
- "http":{
692
- "method":"GET",
693
- "requestUri":"/voice-connector-groups/{voiceConnectorGroupId}",
694
- "responseCode":200
695
- },
696
- "input":{"shape":"GetVoiceConnectorGroupRequest"},
697
- "output":{"shape":"GetVoiceConnectorGroupResponse"},
698
- "errors":[
699
- {"shape":"UnauthorizedClientException"},
700
- {"shape":"NotFoundException"},
701
- {"shape":"ForbiddenException"},
702
- {"shape":"BadRequestException"},
703
- {"shape":"ThrottledClientException"},
704
- {"shape":"ServiceUnavailableException"},
705
- {"shape":"ServiceFailureException"}
706
- ]
707
- },
708
- "GetVoiceConnectorLoggingConfiguration":{
709
- "name":"GetVoiceConnectorLoggingConfiguration",
710
- "http":{
711
- "method":"GET",
712
- "requestUri":"/voice-connectors/{voiceConnectorId}/logging-configuration",
713
- "responseCode":200
714
- },
715
- "input":{"shape":"GetVoiceConnectorLoggingConfigurationRequest"},
716
- "output":{"shape":"GetVoiceConnectorLoggingConfigurationResponse"},
717
- "errors":[
718
- {"shape":"UnauthorizedClientException"},
719
- {"shape":"NotFoundException"},
720
- {"shape":"ForbiddenException"},
721
- {"shape":"BadRequestException"},
722
- {"shape":"ThrottledClientException"},
723
- {"shape":"ServiceUnavailableException"},
724
- {"shape":"ServiceFailureException"}
725
- ]
726
- },
727
- "GetVoiceConnectorOrigination":{
728
- "name":"GetVoiceConnectorOrigination",
729
- "http":{
730
- "method":"GET",
731
- "requestUri":"/voice-connectors/{voiceConnectorId}/origination",
732
- "responseCode":200
733
- },
734
- "input":{"shape":"GetVoiceConnectorOriginationRequest"},
735
- "output":{"shape":"GetVoiceConnectorOriginationResponse"},
736
- "errors":[
737
- {"shape":"UnauthorizedClientException"},
738
- {"shape":"NotFoundException"},
739
- {"shape":"ForbiddenException"},
740
- {"shape":"BadRequestException"},
741
- {"shape":"ThrottledClientException"},
742
- {"shape":"ServiceUnavailableException"},
743
- {"shape":"ServiceFailureException"}
744
- ]
745
- },
746
- "GetVoiceConnectorStreamingConfiguration":{
747
- "name":"GetVoiceConnectorStreamingConfiguration",
748
- "http":{
749
- "method":"GET",
750
- "requestUri":"/voice-connectors/{voiceConnectorId}/streaming-configuration",
751
- "responseCode":200
752
- },
753
- "input":{"shape":"GetVoiceConnectorStreamingConfigurationRequest"},
754
- "output":{"shape":"GetVoiceConnectorStreamingConfigurationResponse"},
755
- "errors":[
756
- {"shape":"UnauthorizedClientException"},
757
- {"shape":"NotFoundException"},
758
- {"shape":"ForbiddenException"},
759
- {"shape":"BadRequestException"},
760
- {"shape":"ThrottledClientException"},
761
- {"shape":"ServiceUnavailableException"},
762
- {"shape":"ServiceFailureException"}
763
- ]
764
- },
765
- "GetVoiceConnectorTermination":{
766
- "name":"GetVoiceConnectorTermination",
767
- "http":{
768
- "method":"GET",
769
- "requestUri":"/voice-connectors/{voiceConnectorId}/termination",
770
- "responseCode":200
771
- },
772
- "input":{"shape":"GetVoiceConnectorTerminationRequest"},
773
- "output":{"shape":"GetVoiceConnectorTerminationResponse"},
774
- "errors":[
775
- {"shape":"UnauthorizedClientException"},
776
- {"shape":"NotFoundException"},
777
- {"shape":"ForbiddenException"},
778
- {"shape":"BadRequestException"},
779
- {"shape":"ThrottledClientException"},
780
- {"shape":"ServiceUnavailableException"},
781
- {"shape":"ServiceFailureException"}
782
- ]
783
- },
784
- "GetVoiceConnectorTerminationHealth":{
785
- "name":"GetVoiceConnectorTerminationHealth",
786
- "http":{
787
- "method":"GET",
788
- "requestUri":"/voice-connectors/{voiceConnectorId}/termination/health",
789
- "responseCode":200
790
- },
791
- "input":{"shape":"GetVoiceConnectorTerminationHealthRequest"},
792
- "output":{"shape":"GetVoiceConnectorTerminationHealthResponse"},
793
- "errors":[
794
- {"shape":"UnauthorizedClientException"},
795
- {"shape":"NotFoundException"},
796
- {"shape":"ForbiddenException"},
797
- {"shape":"BadRequestException"},
798
- {"shape":"ThrottledClientException"},
799
- {"shape":"ServiceUnavailableException"},
800
- {"shape":"ServiceFailureException"}
801
- ]
802
- },
803
- "InviteUsers":{
804
- "name":"InviteUsers",
805
- "http":{
806
- "method":"POST",
807
- "requestUri":"/accounts/{accountId}/users?operation=add",
808
- "responseCode":201
809
- },
810
- "input":{"shape":"InviteUsersRequest"},
811
- "output":{"shape":"InviteUsersResponse"},
812
- "errors":[
813
- {"shape":"UnauthorizedClientException"},
814
- {"shape":"NotFoundException"},
815
- {"shape":"ForbiddenException"},
816
- {"shape":"BadRequestException"},
817
- {"shape":"ThrottledClientException"},
818
- {"shape":"ServiceUnavailableException"},
819
- {"shape":"ServiceFailureException"}
820
- ]
821
- },
822
- "ListAccounts":{
823
- "name":"ListAccounts",
824
- "http":{
825
- "method":"GET",
826
- "requestUri":"/accounts"
827
- },
828
- "input":{"shape":"ListAccountsRequest"},
829
- "output":{"shape":"ListAccountsResponse"},
830
- "errors":[
831
- {"shape":"UnauthorizedClientException"},
832
- {"shape":"NotFoundException"},
833
- {"shape":"ForbiddenException"},
834
- {"shape":"BadRequestException"},
835
- {"shape":"ThrottledClientException"},
836
- {"shape":"ServiceUnavailableException"},
837
- {"shape":"ServiceFailureException"}
838
- ]
839
- },
840
- "ListBots":{
841
- "name":"ListBots",
842
- "http":{
843
- "method":"GET",
844
- "requestUri":"/accounts/{accountId}/bots",
845
- "responseCode":200
846
- },
847
- "input":{"shape":"ListBotsRequest"},
848
- "output":{"shape":"ListBotsResponse"},
849
- "errors":[
850
- {"shape":"ServiceUnavailableException"},
851
- {"shape":"ServiceFailureException"},
852
- {"shape":"ForbiddenException"},
853
- {"shape":"UnauthorizedClientException"},
854
- {"shape":"BadRequestException"},
855
- {"shape":"NotFoundException"}
856
- ]
857
- },
858
- "ListPhoneNumberOrders":{
859
- "name":"ListPhoneNumberOrders",
860
- "http":{
861
- "method":"GET",
862
- "requestUri":"/phone-number-orders",
863
- "responseCode":200
864
- },
865
- "input":{"shape":"ListPhoneNumberOrdersRequest"},
866
- "output":{"shape":"ListPhoneNumberOrdersResponse"},
867
- "errors":[
868
- {"shape":"UnauthorizedClientException"},
869
- {"shape":"ForbiddenException"},
870
- {"shape":"BadRequestException"},
871
- {"shape":"ThrottledClientException"},
872
- {"shape":"ServiceUnavailableException"},
873
- {"shape":"ServiceFailureException"}
874
- ]
875
- },
876
- "ListPhoneNumbers":{
877
- "name":"ListPhoneNumbers",
878
- "http":{
879
- "method":"GET",
880
- "requestUri":"/phone-numbers"
881
- },
882
- "input":{"shape":"ListPhoneNumbersRequest"},
883
- "output":{"shape":"ListPhoneNumbersResponse"},
884
- "errors":[
885
- {"shape":"UnauthorizedClientException"},
886
- {"shape":"ForbiddenException"},
887
- {"shape":"BadRequestException"},
888
- {"shape":"ThrottledClientException"},
889
- {"shape":"ServiceUnavailableException"},
890
- {"shape":"ServiceFailureException"}
891
- ]
892
- },
893
- "ListUsers":{
894
- "name":"ListUsers",
895
- "http":{
896
- "method":"GET",
897
- "requestUri":"/accounts/{accountId}/users",
898
- "responseCode":200
899
- },
900
- "input":{"shape":"ListUsersRequest"},
901
- "output":{"shape":"ListUsersResponse"},
902
- "errors":[
903
- {"shape":"UnauthorizedClientException"},
904
- {"shape":"NotFoundException"},
905
- {"shape":"ForbiddenException"},
906
- {"shape":"BadRequestException"},
907
- {"shape":"ThrottledClientException"},
908
- {"shape":"ServiceUnavailableException"},
909
- {"shape":"ServiceFailureException"}
910
- ]
911
- },
912
- "ListVoiceConnectorGroups":{
913
- "name":"ListVoiceConnectorGroups",
914
- "http":{
915
- "method":"GET",
916
- "requestUri":"/voice-connector-groups",
917
- "responseCode":200
918
- },
919
- "input":{"shape":"ListVoiceConnectorGroupsRequest"},
920
- "output":{"shape":"ListVoiceConnectorGroupsResponse"},
921
- "errors":[
922
- {"shape":"UnauthorizedClientException"},
923
- {"shape":"ForbiddenException"},
924
- {"shape":"BadRequestException"},
925
- {"shape":"ThrottledClientException"},
926
- {"shape":"ServiceUnavailableException"},
927
- {"shape":"ServiceFailureException"}
928
- ]
929
- },
930
- "ListVoiceConnectorTerminationCredentials":{
931
- "name":"ListVoiceConnectorTerminationCredentials",
932
- "http":{
933
- "method":"GET",
934
- "requestUri":"/voice-connectors/{voiceConnectorId}/termination/credentials",
935
- "responseCode":200
936
- },
937
- "input":{"shape":"ListVoiceConnectorTerminationCredentialsRequest"},
938
- "output":{"shape":"ListVoiceConnectorTerminationCredentialsResponse"},
939
- "errors":[
940
- {"shape":"UnauthorizedClientException"},
941
- {"shape":"NotFoundException"},
942
- {"shape":"ForbiddenException"},
943
- {"shape":"BadRequestException"},
944
- {"shape":"ThrottledClientException"},
945
- {"shape":"ServiceUnavailableException"},
946
- {"shape":"ServiceFailureException"}
947
- ]
948
- },
949
- "ListVoiceConnectors":{
950
- "name":"ListVoiceConnectors",
951
- "http":{
952
- "method":"GET",
953
- "requestUri":"/voice-connectors",
954
- "responseCode":200
955
- },
956
- "input":{"shape":"ListVoiceConnectorsRequest"},
957
- "output":{"shape":"ListVoiceConnectorsResponse"},
958
- "errors":[
959
- {"shape":"UnauthorizedClientException"},
960
- {"shape":"ForbiddenException"},
961
- {"shape":"BadRequestException"},
962
- {"shape":"ThrottledClientException"},
963
- {"shape":"ServiceUnavailableException"},
964
- {"shape":"ServiceFailureException"}
965
- ]
966
- },
967
- "LogoutUser":{
968
- "name":"LogoutUser",
969
- "http":{
970
- "method":"POST",
971
- "requestUri":"/accounts/{accountId}/users/{userId}?operation=logout",
972
- "responseCode":204
973
- },
974
- "input":{"shape":"LogoutUserRequest"},
975
- "output":{"shape":"LogoutUserResponse"},
976
- "errors":[
977
- {"shape":"UnauthorizedClientException"},
978
- {"shape":"NotFoundException"},
979
- {"shape":"ForbiddenException"},
980
- {"shape":"BadRequestException"},
981
- {"shape":"ThrottledClientException"},
982
- {"shape":"ServiceUnavailableException"},
983
- {"shape":"ServiceFailureException"}
984
- ]
985
- },
986
- "PutEventsConfiguration":{
987
- "name":"PutEventsConfiguration",
988
- "http":{
989
- "method":"PUT",
990
- "requestUri":"/accounts/{accountId}/bots/{botId}/events-configuration",
991
- "responseCode":201
992
- },
993
- "input":{"shape":"PutEventsConfigurationRequest"},
994
- "output":{"shape":"PutEventsConfigurationResponse"},
995
- "errors":[
996
- {"shape":"ServiceUnavailableException"},
997
- {"shape":"ServiceFailureException"},
998
- {"shape":"ForbiddenException"},
999
- {"shape":"BadRequestException"},
1000
- {"shape":"UnauthorizedClientException"},
1001
- {"shape":"ResourceLimitExceededException"},
1002
- {"shape":"NotFoundException"}
1003
- ]
1004
- },
1005
- "PutVoiceConnectorLoggingConfiguration":{
1006
- "name":"PutVoiceConnectorLoggingConfiguration",
1007
- "http":{
1008
- "method":"PUT",
1009
- "requestUri":"/voice-connectors/{voiceConnectorId}/logging-configuration",
1010
- "responseCode":200
1011
- },
1012
- "input":{"shape":"PutVoiceConnectorLoggingConfigurationRequest"},
1013
- "output":{"shape":"PutVoiceConnectorLoggingConfigurationResponse"},
1014
- "errors":[
1015
- {"shape":"UnauthorizedClientException"},
1016
- {"shape":"NotFoundException"},
1017
- {"shape":"ForbiddenException"},
1018
- {"shape":"BadRequestException"},
1019
- {"shape":"ThrottledClientException"},
1020
- {"shape":"ServiceUnavailableException"},
1021
- {"shape":"ServiceFailureException"}
1022
- ]
1023
- },
1024
- "PutVoiceConnectorOrigination":{
1025
- "name":"PutVoiceConnectorOrigination",
1026
- "http":{
1027
- "method":"PUT",
1028
- "requestUri":"/voice-connectors/{voiceConnectorId}/origination",
1029
- "responseCode":200
1030
- },
1031
- "input":{"shape":"PutVoiceConnectorOriginationRequest"},
1032
- "output":{"shape":"PutVoiceConnectorOriginationResponse"},
1033
- "errors":[
1034
- {"shape":"UnauthorizedClientException"},
1035
- {"shape":"NotFoundException"},
1036
- {"shape":"ForbiddenException"},
1037
- {"shape":"BadRequestException"},
1038
- {"shape":"ThrottledClientException"},
1039
- {"shape":"ServiceUnavailableException"},
1040
- {"shape":"ServiceFailureException"}
1041
- ]
1042
- },
1043
- "PutVoiceConnectorStreamingConfiguration":{
1044
- "name":"PutVoiceConnectorStreamingConfiguration",
1045
- "http":{
1046
- "method":"PUT",
1047
- "requestUri":"/voice-connectors/{voiceConnectorId}/streaming-configuration",
1048
- "responseCode":200
1049
- },
1050
- "input":{"shape":"PutVoiceConnectorStreamingConfigurationRequest"},
1051
- "output":{"shape":"PutVoiceConnectorStreamingConfigurationResponse"},
1052
- "errors":[
1053
- {"shape":"UnauthorizedClientException"},
1054
- {"shape":"NotFoundException"},
1055
- {"shape":"ForbiddenException"},
1056
- {"shape":"BadRequestException"},
1057
- {"shape":"ThrottledClientException"},
1058
- {"shape":"ServiceUnavailableException"},
1059
- {"shape":"ServiceFailureException"}
1060
- ]
1061
- },
1062
- "PutVoiceConnectorTermination":{
1063
- "name":"PutVoiceConnectorTermination",
1064
- "http":{
1065
- "method":"PUT",
1066
- "requestUri":"/voice-connectors/{voiceConnectorId}/termination",
1067
- "responseCode":200
1068
- },
1069
- "input":{"shape":"PutVoiceConnectorTerminationRequest"},
1070
- "output":{"shape":"PutVoiceConnectorTerminationResponse"},
1071
- "errors":[
1072
- {"shape":"UnauthorizedClientException"},
1073
- {"shape":"NotFoundException"},
1074
- {"shape":"ForbiddenException"},
1075
- {"shape":"BadRequestException"},
1076
- {"shape":"AccessDeniedException"},
1077
- {"shape":"ThrottledClientException"},
1078
- {"shape":"ServiceUnavailableException"},
1079
- {"shape":"ServiceFailureException"}
1080
- ]
1081
- },
1082
- "PutVoiceConnectorTerminationCredentials":{
1083
- "name":"PutVoiceConnectorTerminationCredentials",
1084
- "http":{
1085
- "method":"POST",
1086
- "requestUri":"/voice-connectors/{voiceConnectorId}/termination/credentials?operation=put",
1087
- "responseCode":204
1088
- },
1089
- "input":{"shape":"PutVoiceConnectorTerminationCredentialsRequest"},
1090
- "errors":[
1091
- {"shape":"UnauthorizedClientException"},
1092
- {"shape":"NotFoundException"},
1093
- {"shape":"ForbiddenException"},
1094
- {"shape":"BadRequestException"},
1095
- {"shape":"ThrottledClientException"},
1096
- {"shape":"ServiceUnavailableException"},
1097
- {"shape":"ServiceFailureException"}
1098
- ]
1099
- },
1100
- "RegenerateSecurityToken":{
1101
- "name":"RegenerateSecurityToken",
1102
- "http":{
1103
- "method":"POST",
1104
- "requestUri":"/accounts/{accountId}/bots/{botId}?operation=regenerate-security-token",
1105
- "responseCode":200
1106
- },
1107
- "input":{"shape":"RegenerateSecurityTokenRequest"},
1108
- "output":{"shape":"RegenerateSecurityTokenResponse"},
1109
- "errors":[
1110
- {"shape":"ServiceUnavailableException"},
1111
- {"shape":"ServiceFailureException"},
1112
- {"shape":"ForbiddenException"},
1113
- {"shape":"BadRequestException"},
1114
- {"shape":"UnauthorizedClientException"},
1115
- {"shape":"NotFoundException"}
1116
- ]
1117
- },
1118
- "ResetPersonalPIN":{
1119
- "name":"ResetPersonalPIN",
1120
- "http":{
1121
- "method":"POST",
1122
- "requestUri":"/accounts/{accountId}/users/{userId}?operation=reset-personal-pin",
1123
- "responseCode":200
1124
- },
1125
- "input":{"shape":"ResetPersonalPINRequest"},
1126
- "output":{"shape":"ResetPersonalPINResponse"},
1127
- "errors":[
1128
- {"shape":"UnauthorizedClientException"},
1129
- {"shape":"NotFoundException"},
1130
- {"shape":"ForbiddenException"},
1131
- {"shape":"BadRequestException"},
1132
- {"shape":"ThrottledClientException"},
1133
- {"shape":"ServiceUnavailableException"},
1134
- {"shape":"ServiceFailureException"}
1135
- ]
1136
- },
1137
- "RestorePhoneNumber":{
1138
- "name":"RestorePhoneNumber",
1139
- "http":{
1140
- "method":"POST",
1141
- "requestUri":"/phone-numbers/{phoneNumberId}?operation=restore",
1142
- "responseCode":200
1143
- },
1144
- "input":{"shape":"RestorePhoneNumberRequest"},
1145
- "output":{"shape":"RestorePhoneNumberResponse"},
1146
- "errors":[
1147
- {"shape":"UnauthorizedClientException"},
1148
- {"shape":"NotFoundException"},
1149
- {"shape":"ForbiddenException"},
1150
- {"shape":"BadRequestException"},
1151
- {"shape":"ThrottledClientException"},
1152
- {"shape":"ResourceLimitExceededException"},
1153
- {"shape":"ServiceUnavailableException"},
1154
- {"shape":"ServiceFailureException"}
1155
- ]
1156
- },
1157
- "SearchAvailablePhoneNumbers":{
1158
- "name":"SearchAvailablePhoneNumbers",
1159
- "http":{
1160
- "method":"GET",
1161
- "requestUri":"/search?type=phone-numbers"
1162
- },
1163
- "input":{"shape":"SearchAvailablePhoneNumbersRequest"},
1164
- "output":{"shape":"SearchAvailablePhoneNumbersResponse"},
1165
- "errors":[
1166
- {"shape":"BadRequestException"},
1167
- {"shape":"ForbiddenException"},
1168
- {"shape":"AccessDeniedException"},
1169
- {"shape":"UnauthorizedClientException"},
1170
- {"shape":"ThrottledClientException"},
1171
- {"shape":"ServiceUnavailableException"},
1172
- {"shape":"ServiceFailureException"}
1173
- ]
1174
- },
1175
- "UpdateAccount":{
1176
- "name":"UpdateAccount",
1177
- "http":{
1178
- "method":"POST",
1179
- "requestUri":"/accounts/{accountId}",
1180
- "responseCode":200
1181
- },
1182
- "input":{"shape":"UpdateAccountRequest"},
1183
- "output":{"shape":"UpdateAccountResponse"},
1184
- "errors":[
1185
- {"shape":"UnauthorizedClientException"},
1186
- {"shape":"NotFoundException"},
1187
- {"shape":"ForbiddenException"},
1188
- {"shape":"BadRequestException"},
1189
- {"shape":"ThrottledClientException"},
1190
- {"shape":"ServiceUnavailableException"},
1191
- {"shape":"ServiceFailureException"}
1192
- ]
1193
- },
1194
- "UpdateAccountSettings":{
1195
- "name":"UpdateAccountSettings",
1196
- "http":{
1197
- "method":"PUT",
1198
- "requestUri":"/accounts/{accountId}/settings",
1199
- "responseCode":204
1200
- },
1201
- "input":{"shape":"UpdateAccountSettingsRequest"},
1202
- "output":{"shape":"UpdateAccountSettingsResponse"},
1203
- "errors":[
1204
- {"shape":"UnauthorizedClientException"},
1205
- {"shape":"NotFoundException"},
1206
- {"shape":"BadRequestException"},
1207
- {"shape":"ForbiddenException"},
1208
- {"shape":"ConflictException"},
1209
- {"shape":"ThrottledClientException"},
1210
- {"shape":"ServiceUnavailableException"},
1211
- {"shape":"ServiceFailureException"}
1212
- ]
1213
- },
1214
- "UpdateBot":{
1215
- "name":"UpdateBot",
1216
- "http":{
1217
- "method":"POST",
1218
- "requestUri":"/accounts/{accountId}/bots/{botId}",
1219
- "responseCode":200
1220
- },
1221
- "input":{"shape":"UpdateBotRequest"},
1222
- "output":{"shape":"UpdateBotResponse"},
1223
- "errors":[
1224
- {"shape":"ServiceUnavailableException"},
1225
- {"shape":"ServiceFailureException"},
1226
- {"shape":"ForbiddenException"},
1227
- {"shape":"BadRequestException"},
1228
- {"shape":"UnauthorizedClientException"},
1229
- {"shape":"NotFoundException"}
1230
- ]
1231
- },
1232
- "UpdateGlobalSettings":{
1233
- "name":"UpdateGlobalSettings",
1234
- "http":{
1235
- "method":"PUT",
1236
- "requestUri":"/settings",
1237
- "responseCode":204
1238
- },
1239
- "input":{"shape":"UpdateGlobalSettingsRequest"},
1240
- "errors":[
1241
- {"shape":"UnauthorizedClientException"},
1242
- {"shape":"ForbiddenException"},
1243
- {"shape":"BadRequestException"},
1244
- {"shape":"ThrottledClientException"},
1245
- {"shape":"ServiceUnavailableException"},
1246
- {"shape":"ServiceFailureException"}
1247
- ]
1248
- },
1249
- "UpdatePhoneNumber":{
1250
- "name":"UpdatePhoneNumber",
1251
- "http":{
1252
- "method":"POST",
1253
- "requestUri":"/phone-numbers/{phoneNumberId}",
1254
- "responseCode":200
1255
- },
1256
- "input":{"shape":"UpdatePhoneNumberRequest"},
1257
- "output":{"shape":"UpdatePhoneNumberResponse"},
1258
- "errors":[
1259
- {"shape":"UnauthorizedClientException"},
1260
- {"shape":"NotFoundException"},
1261
- {"shape":"ForbiddenException"},
1262
- {"shape":"BadRequestException"},
1263
- {"shape":"ThrottledClientException"},
1264
- {"shape":"ServiceUnavailableException"},
1265
- {"shape":"ServiceFailureException"}
1266
- ]
1267
- },
1268
- "UpdatePhoneNumberSettings":{
1269
- "name":"UpdatePhoneNumberSettings",
1270
- "http":{
1271
- "method":"PUT",
1272
- "requestUri":"/settings/phone-number",
1273
- "responseCode":204
1274
- },
1275
- "input":{"shape":"UpdatePhoneNumberSettingsRequest"},
1276
- "errors":[
1277
- {"shape":"UnauthorizedClientException"},
1278
- {"shape":"ForbiddenException"},
1279
- {"shape":"BadRequestException"},
1280
- {"shape":"ThrottledClientException"},
1281
- {"shape":"ServiceUnavailableException"},
1282
- {"shape":"ServiceFailureException"}
1283
- ]
1284
- },
1285
- "UpdateUser":{
1286
- "name":"UpdateUser",
1287
- "http":{
1288
- "method":"POST",
1289
- "requestUri":"/accounts/{accountId}/users/{userId}",
1290
- "responseCode":200
1291
- },
1292
- "input":{"shape":"UpdateUserRequest"},
1293
- "output":{"shape":"UpdateUserResponse"},
1294
- "errors":[
1295
- {"shape":"UnauthorizedClientException"},
1296
- {"shape":"NotFoundException"},
1297
- {"shape":"ForbiddenException"},
1298
- {"shape":"BadRequestException"},
1299
- {"shape":"ThrottledClientException"},
1300
- {"shape":"ServiceUnavailableException"},
1301
- {"shape":"ServiceFailureException"}
1302
- ]
1303
- },
1304
- "UpdateUserSettings":{
1305
- "name":"UpdateUserSettings",
1306
- "http":{
1307
- "method":"PUT",
1308
- "requestUri":"/accounts/{accountId}/users/{userId}/settings",
1309
- "responseCode":204
1310
- },
1311
- "input":{"shape":"UpdateUserSettingsRequest"},
1312
- "errors":[
1313
- {"shape":"UnauthorizedClientException"},
1314
- {"shape":"NotFoundException"},
1315
- {"shape":"ForbiddenException"},
1316
- {"shape":"BadRequestException"},
1317
- {"shape":"ThrottledClientException"},
1318
- {"shape":"ServiceUnavailableException"},
1319
- {"shape":"ServiceFailureException"}
1320
- ]
1321
- },
1322
- "UpdateVoiceConnector":{
1323
- "name":"UpdateVoiceConnector",
1324
- "http":{
1325
- "method":"PUT",
1326
- "requestUri":"/voice-connectors/{voiceConnectorId}",
1327
- "responseCode":200
1328
- },
1329
- "input":{"shape":"UpdateVoiceConnectorRequest"},
1330
- "output":{"shape":"UpdateVoiceConnectorResponse"},
1331
- "errors":[
1332
- {"shape":"UnauthorizedClientException"},
1333
- {"shape":"NotFoundException"},
1334
- {"shape":"ForbiddenException"},
1335
- {"shape":"BadRequestException"},
1336
- {"shape":"ThrottledClientException"},
1337
- {"shape":"ServiceUnavailableException"},
1338
- {"shape":"ServiceFailureException"}
1339
- ]
1340
- },
1341
- "UpdateVoiceConnectorGroup":{
1342
- "name":"UpdateVoiceConnectorGroup",
1343
- "http":{
1344
- "method":"PUT",
1345
- "requestUri":"/voice-connector-groups/{voiceConnectorGroupId}",
1346
- "responseCode":202
1347
- },
1348
- "input":{"shape":"UpdateVoiceConnectorGroupRequest"},
1349
- "output":{"shape":"UpdateVoiceConnectorGroupResponse"},
1350
- "errors":[
1351
- {"shape":"UnauthorizedClientException"},
1352
- {"shape":"NotFoundException"},
1353
- {"shape":"ForbiddenException"},
1354
- {"shape":"BadRequestException"},
1355
- {"shape":"ConflictException"},
1356
- {"shape":"ThrottledClientException"},
1357
- {"shape":"ServiceUnavailableException"},
1358
- {"shape":"ServiceFailureException"}
1359
- ]
1360
- }
1361
- },
1362
- "shapes":{
1363
- "AccessDeniedException":{
1364
- "type":"structure",
1365
- "members":{
1366
- "Code":{"shape":"ErrorCode"},
1367
- "Message":{"shape":"String"}
1368
- },
1369
- "error":{"httpStatusCode":403},
1370
- "exception":true
1371
- },
1372
- "Account":{
1373
- "type":"structure",
1374
- "required":[
1375
- "AwsAccountId",
1376
- "AccountId",
1377
- "Name"
1378
- ],
1379
- "members":{
1380
- "AwsAccountId":{"shape":"String"},
1381
- "AccountId":{"shape":"String"},
1382
- "Name":{"shape":"String"},
1383
- "AccountType":{"shape":"AccountType"},
1384
- "CreatedTimestamp":{"shape":"Iso8601Timestamp"},
1385
- "DefaultLicense":{"shape":"License"},
1386
- "SupportedLicenses":{"shape":"LicenseList"}
1387
- }
1388
- },
1389
- "AccountList":{
1390
- "type":"list",
1391
- "member":{"shape":"Account"}
1392
- },
1393
- "AccountName":{
1394
- "type":"string",
1395
- "max":100,
1396
- "min":1,
1397
- "pattern":".*\\S.*"
1398
- },
1399
- "AccountSettings":{
1400
- "type":"structure",
1401
- "members":{
1402
- "DisableRemoteControl":{"shape":"Boolean"},
1403
- "EnableDialOut":{"shape":"Boolean"}
1404
- }
1405
- },
1406
- "AccountType":{
1407
- "type":"string",
1408
- "enum":[
1409
- "Team",
1410
- "EnterpriseDirectory",
1411
- "EnterpriseLWA",
1412
- "EnterpriseOIDC"
1413
- ]
1414
- },
1415
- "AssociatePhoneNumberWithUserRequest":{
1416
- "type":"structure",
1417
- "required":[
1418
- "AccountId",
1419
- "UserId",
1420
- "E164PhoneNumber"
1421
- ],
1422
- "members":{
1423
- "AccountId":{
1424
- "shape":"String",
1425
- "location":"uri",
1426
- "locationName":"accountId"
1427
- },
1428
- "UserId":{
1429
- "shape":"String",
1430
- "location":"uri",
1431
- "locationName":"userId"
1432
- },
1433
- "E164PhoneNumber":{"shape":"E164PhoneNumber"}
1434
- }
1435
- },
1436
- "AssociatePhoneNumberWithUserResponse":{
1437
- "type":"structure",
1438
- "members":{
1439
- }
1440
- },
1441
- "AssociatePhoneNumbersWithVoiceConnectorGroupRequest":{
1442
- "type":"structure",
1443
- "required":["VoiceConnectorGroupId"],
1444
- "members":{
1445
- "VoiceConnectorGroupId":{
1446
- "shape":"NonEmptyString",
1447
- "location":"uri",
1448
- "locationName":"voiceConnectorGroupId"
1449
- },
1450
- "E164PhoneNumbers":{"shape":"E164PhoneNumberList"},
1451
- "ForceAssociate":{"shape":"NullableBoolean"}
1452
- }
1453
- },
1454
- "AssociatePhoneNumbersWithVoiceConnectorGroupResponse":{
1455
- "type":"structure",
1456
- "members":{
1457
- "PhoneNumberErrors":{"shape":"PhoneNumberErrorList"}
1458
- }
1459
- },
1460
- "AssociatePhoneNumbersWithVoiceConnectorRequest":{
1461
- "type":"structure",
1462
- "required":["VoiceConnectorId"],
1463
- "members":{
1464
- "VoiceConnectorId":{
1465
- "shape":"NonEmptyString",
1466
- "location":"uri",
1467
- "locationName":"voiceConnectorId"
1468
- },
1469
- "E164PhoneNumbers":{"shape":"E164PhoneNumberList"},
1470
- "ForceAssociate":{"shape":"NullableBoolean"}
1471
- }
1472
- },
1473
- "AssociatePhoneNumbersWithVoiceConnectorResponse":{
1474
- "type":"structure",
1475
- "members":{
1476
- "PhoneNumberErrors":{"shape":"PhoneNumberErrorList"}
1477
- }
1478
- },
1479
- "BadRequestException":{
1480
- "type":"structure",
1481
- "members":{
1482
- "Code":{"shape":"ErrorCode"},
1483
- "Message":{"shape":"String"}
1484
- },
1485
- "error":{"httpStatusCode":400},
1486
- "exception":true
1487
- },
1488
- "BatchDeletePhoneNumberRequest":{
1489
- "type":"structure",
1490
- "required":["PhoneNumberIds"],
1491
- "members":{
1492
- "PhoneNumberIds":{"shape":"NonEmptyStringList"}
1493
- }
1494
- },
1495
- "BatchDeletePhoneNumberResponse":{
1496
- "type":"structure",
1497
- "members":{
1498
- "PhoneNumberErrors":{"shape":"PhoneNumberErrorList"}
1499
- }
1500
- },
1501
- "BatchSuspendUserRequest":{
1502
- "type":"structure",
1503
- "required":[
1504
- "AccountId",
1505
- "UserIdList"
1506
- ],
1507
- "members":{
1508
- "AccountId":{
1509
- "shape":"NonEmptyString",
1510
- "location":"uri",
1511
- "locationName":"accountId"
1512
- },
1513
- "UserIdList":{"shape":"UserIdList"}
1514
- }
1515
- },
1516
- "BatchSuspendUserResponse":{
1517
- "type":"structure",
1518
- "members":{
1519
- "UserErrors":{"shape":"UserErrorList"}
1520
- }
1521
- },
1522
- "BatchUnsuspendUserRequest":{
1523
- "type":"structure",
1524
- "required":[
1525
- "AccountId",
1526
- "UserIdList"
1527
- ],
1528
- "members":{
1529
- "AccountId":{
1530
- "shape":"NonEmptyString",
1531
- "location":"uri",
1532
- "locationName":"accountId"
1533
- },
1534
- "UserIdList":{"shape":"UserIdList"}
1535
- }
1536
- },
1537
- "BatchUnsuspendUserResponse":{
1538
- "type":"structure",
1539
- "members":{
1540
- "UserErrors":{"shape":"UserErrorList"}
1541
- }
1542
- },
1543
- "BatchUpdatePhoneNumberRequest":{
1544
- "type":"structure",
1545
- "required":["UpdatePhoneNumberRequestItems"],
1546
- "members":{
1547
- "UpdatePhoneNumberRequestItems":{"shape":"UpdatePhoneNumberRequestItemList"}
1548
- }
1549
- },
1550
- "BatchUpdatePhoneNumberResponse":{
1551
- "type":"structure",
1552
- "members":{
1553
- "PhoneNumberErrors":{"shape":"PhoneNumberErrorList"}
1554
- }
1555
- },
1556
- "BatchUpdateUserRequest":{
1557
- "type":"structure",
1558
- "required":[
1559
- "AccountId",
1560
- "UpdateUserRequestItems"
1561
- ],
1562
- "members":{
1563
- "AccountId":{
1564
- "shape":"NonEmptyString",
1565
- "location":"uri",
1566
- "locationName":"accountId"
1567
- },
1568
- "UpdateUserRequestItems":{"shape":"UpdateUserRequestItemList"}
1569
- }
1570
- },
1571
- "BatchUpdateUserResponse":{
1572
- "type":"structure",
1573
- "members":{
1574
- "UserErrors":{"shape":"UserErrorList"}
1575
- }
1576
- },
1577
- "Boolean":{"type":"boolean"},
1578
- "Bot":{
1579
- "type":"structure",
1580
- "members":{
1581
- "BotId":{"shape":"String"},
1582
- "UserId":{"shape":"String"},
1583
- "DisplayName":{"shape":"SensitiveString"},
1584
- "BotType":{"shape":"BotType"},
1585
- "Disabled":{"shape":"NullableBoolean"},
1586
- "CreatedTimestamp":{"shape":"Iso8601Timestamp"},
1587
- "UpdatedTimestamp":{"shape":"Iso8601Timestamp"},
1588
- "BotEmail":{"shape":"SensitiveString"},
1589
- "SecurityToken":{"shape":"SensitiveString"}
1590
- }
1591
- },
1592
- "BotList":{
1593
- "type":"list",
1594
- "member":{"shape":"Bot"}
1595
- },
1596
- "BotType":{
1597
- "type":"string",
1598
- "enum":["ChatBot"]
1599
- },
1600
- "BusinessCallingSettings":{
1601
- "type":"structure",
1602
- "members":{
1603
- "CdrBucket":{
1604
- "shape":"String",
1605
- "box":true
1606
- }
1607
- }
1608
- },
1609
- "CallingName":{
1610
- "type":"string",
1611
- "pattern":"^$|^[a-zA-Z0-9 ]{2,15}$",
1612
- "sensitive":true
1613
- },
1614
- "CallingNameStatus":{
1615
- "type":"string",
1616
- "enum":[
1617
- "Unassigned",
1618
- "UpdateInProgress",
1619
- "UpdateSucceeded",
1620
- "UpdateFailed"
1621
- ]
1622
- },
1623
- "CallingRegion":{"type":"string"},
1624
- "CallingRegionList":{
1625
- "type":"list",
1626
- "member":{"shape":"CallingRegion"}
1627
- },
1628
- "ConflictException":{
1629
- "type":"structure",
1630
- "members":{
1631
- "Code":{"shape":"ErrorCode"},
1632
- "Message":{"shape":"String"}
1633
- },
1634
- "error":{"httpStatusCode":409},
1635
- "exception":true
1636
- },
1637
- "CpsLimit":{
1638
- "type":"integer",
1639
- "min":1
1640
- },
1641
- "CreateAccountRequest":{
1642
- "type":"structure",
1643
- "required":["Name"],
1644
- "members":{
1645
- "Name":{"shape":"AccountName"}
1646
- }
1647
- },
1648
- "CreateAccountResponse":{
1649
- "type":"structure",
1650
- "members":{
1651
- "Account":{"shape":"Account"}
1652
- }
1653
- },
1654
- "CreateBotRequest":{
1655
- "type":"structure",
1656
- "required":[
1657
- "DisplayName",
1658
- "AccountId"
1659
- ],
1660
- "members":{
1661
- "AccountId":{
1662
- "shape":"NonEmptyString",
1663
- "location":"uri",
1664
- "locationName":"accountId"
1665
- },
1666
- "DisplayName":{"shape":"SensitiveString"},
1667
- "Domain":{"shape":"NonEmptyString"}
1668
- }
1669
- },
1670
- "CreateBotResponse":{
1671
- "type":"structure",
1672
- "members":{
1673
- "Bot":{"shape":"Bot"}
1674
- }
1675
- },
1676
- "CreatePhoneNumberOrderRequest":{
1677
- "type":"structure",
1678
- "required":[
1679
- "ProductType",
1680
- "E164PhoneNumbers"
1681
- ],
1682
- "members":{
1683
- "ProductType":{"shape":"PhoneNumberProductType"},
1684
- "E164PhoneNumbers":{"shape":"E164PhoneNumberList"}
1685
- }
1686
- },
1687
- "CreatePhoneNumberOrderResponse":{
1688
- "type":"structure",
1689
- "members":{
1690
- "PhoneNumberOrder":{"shape":"PhoneNumberOrder"}
1691
- }
1692
- },
1693
- "CreateVoiceConnectorGroupRequest":{
1694
- "type":"structure",
1695
- "required":["Name"],
1696
- "members":{
1697
- "Name":{"shape":"VoiceConnectorGroupName"},
1698
- "VoiceConnectorItems":{"shape":"VoiceConnectorItemList"}
1699
- }
1700
- },
1701
- "CreateVoiceConnectorGroupResponse":{
1702
- "type":"structure",
1703
- "members":{
1704
- "VoiceConnectorGroup":{"shape":"VoiceConnectorGroup"}
1705
- }
1706
- },
1707
- "CreateVoiceConnectorRequest":{
1708
- "type":"structure",
1709
- "required":[
1710
- "Name",
1711
- "RequireEncryption"
1712
- ],
1713
- "members":{
1714
- "Name":{"shape":"VoiceConnectorName"},
1715
- "AwsRegion":{"shape":"VoiceConnectorAwsRegion"},
1716
- "RequireEncryption":{"shape":"Boolean"}
1717
- }
1718
- },
1719
- "CreateVoiceConnectorResponse":{
1720
- "type":"structure",
1721
- "members":{
1722
- "VoiceConnector":{"shape":"VoiceConnector"}
1723
- }
1724
- },
1725
- "Credential":{
1726
- "type":"structure",
1727
- "members":{
1728
- "Username":{"shape":"SensitiveString"},
1729
- "Password":{"shape":"SensitiveString"}
1730
- }
1731
- },
1732
- "CredentialList":{
1733
- "type":"list",
1734
- "member":{"shape":"Credential"}
1735
- },
1736
- "DataRetentionInHours":{
1737
- "type":"integer",
1738
- "min":0
1739
- },
1740
- "DeleteAccountRequest":{
1741
- "type":"structure",
1742
- "required":["AccountId"],
1743
- "members":{
1744
- "AccountId":{
1745
- "shape":"NonEmptyString",
1746
- "location":"uri",
1747
- "locationName":"accountId"
1748
- }
1749
- }
1750
- },
1751
- "DeleteAccountResponse":{
1752
- "type":"structure",
1753
- "members":{
1754
- }
1755
- },
1756
- "DeleteEventsConfigurationRequest":{
1757
- "type":"structure",
1758
- "required":[
1759
- "AccountId",
1760
- "BotId"
1761
- ],
1762
- "members":{
1763
- "AccountId":{
1764
- "shape":"NonEmptyString",
1765
- "location":"uri",
1766
- "locationName":"accountId"
1767
- },
1768
- "BotId":{
1769
- "shape":"NonEmptyString",
1770
- "location":"uri",
1771
- "locationName":"botId"
1772
- }
1773
- }
1774
- },
1775
- "DeletePhoneNumberRequest":{
1776
- "type":"structure",
1777
- "required":["PhoneNumberId"],
1778
- "members":{
1779
- "PhoneNumberId":{
1780
- "shape":"String",
1781
- "location":"uri",
1782
- "locationName":"phoneNumberId"
1783
- }
1784
- }
1785
- },
1786
- "DeleteVoiceConnectorGroupRequest":{
1787
- "type":"structure",
1788
- "required":["VoiceConnectorGroupId"],
1789
- "members":{
1790
- "VoiceConnectorGroupId":{
1791
- "shape":"NonEmptyString",
1792
- "location":"uri",
1793
- "locationName":"voiceConnectorGroupId"
1794
- }
1795
- }
1796
- },
1797
- "DeleteVoiceConnectorOriginationRequest":{
1798
- "type":"structure",
1799
- "required":["VoiceConnectorId"],
1800
- "members":{
1801
- "VoiceConnectorId":{
1802
- "shape":"NonEmptyString",
1803
- "location":"uri",
1804
- "locationName":"voiceConnectorId"
1805
- }
1806
- }
1807
- },
1808
- "DeleteVoiceConnectorRequest":{
1809
- "type":"structure",
1810
- "required":["VoiceConnectorId"],
1811
- "members":{
1812
- "VoiceConnectorId":{
1813
- "shape":"NonEmptyString",
1814
- "location":"uri",
1815
- "locationName":"voiceConnectorId"
1816
- }
1817
- }
1818
- },
1819
- "DeleteVoiceConnectorStreamingConfigurationRequest":{
1820
- "type":"structure",
1821
- "required":["VoiceConnectorId"],
1822
- "members":{
1823
- "VoiceConnectorId":{
1824
- "shape":"NonEmptyString",
1825
- "location":"uri",
1826
- "locationName":"voiceConnectorId"
1827
- }
1828
- }
1829
- },
1830
- "DeleteVoiceConnectorTerminationCredentialsRequest":{
1831
- "type":"structure",
1832
- "required":["VoiceConnectorId"],
1833
- "members":{
1834
- "VoiceConnectorId":{
1835
- "shape":"NonEmptyString",
1836
- "location":"uri",
1837
- "locationName":"voiceConnectorId"
1838
- },
1839
- "Usernames":{"shape":"SensitiveStringList"}
1840
- }
1841
- },
1842
- "DeleteVoiceConnectorTerminationRequest":{
1843
- "type":"structure",
1844
- "required":["VoiceConnectorId"],
1845
- "members":{
1846
- "VoiceConnectorId":{
1847
- "shape":"NonEmptyString",
1848
- "location":"uri",
1849
- "locationName":"voiceConnectorId"
1850
- }
1851
- }
1852
- },
1853
- "DisassociatePhoneNumberFromUserRequest":{
1854
- "type":"structure",
1855
- "required":[
1856
- "AccountId",
1857
- "UserId"
1858
- ],
1859
- "members":{
1860
- "AccountId":{
1861
- "shape":"String",
1862
- "location":"uri",
1863
- "locationName":"accountId"
1864
- },
1865
- "UserId":{
1866
- "shape":"String",
1867
- "location":"uri",
1868
- "locationName":"userId"
1869
- }
1870
- }
1871
- },
1872
- "DisassociatePhoneNumberFromUserResponse":{
1873
- "type":"structure",
1874
- "members":{
1875
- }
1876
- },
1877
- "DisassociatePhoneNumbersFromVoiceConnectorGroupRequest":{
1878
- "type":"structure",
1879
- "required":["VoiceConnectorGroupId"],
1880
- "members":{
1881
- "VoiceConnectorGroupId":{
1882
- "shape":"NonEmptyString",
1883
- "location":"uri",
1884
- "locationName":"voiceConnectorGroupId"
1885
- },
1886
- "E164PhoneNumbers":{"shape":"E164PhoneNumberList"}
1887
- }
1888
- },
1889
- "DisassociatePhoneNumbersFromVoiceConnectorGroupResponse":{
1890
- "type":"structure",
1891
- "members":{
1892
- "PhoneNumberErrors":{"shape":"PhoneNumberErrorList"}
1893
- }
1894
- },
1895
- "DisassociatePhoneNumbersFromVoiceConnectorRequest":{
1896
- "type":"structure",
1897
- "required":["VoiceConnectorId"],
1898
- "members":{
1899
- "VoiceConnectorId":{
1900
- "shape":"NonEmptyString",
1901
- "location":"uri",
1902
- "locationName":"voiceConnectorId"
1903
- },
1904
- "E164PhoneNumbers":{"shape":"E164PhoneNumberList"}
1905
- }
1906
- },
1907
- "DisassociatePhoneNumbersFromVoiceConnectorResponse":{
1908
- "type":"structure",
1909
- "members":{
1910
- "PhoneNumberErrors":{"shape":"PhoneNumberErrorList"}
1911
- }
1912
- },
1913
- "E164PhoneNumber":{
1914
- "type":"string",
1915
- "pattern":"^\\+?[1-9]\\d{1,14}$",
1916
- "sensitive":true
1917
- },
1918
- "E164PhoneNumberList":{
1919
- "type":"list",
1920
- "member":{"shape":"E164PhoneNumber"}
1921
- },
1922
- "EmailAddress":{
1923
- "type":"string",
1924
- "pattern":".+@.+\\..+",
1925
- "sensitive":true
1926
- },
1927
- "EmailStatus":{
1928
- "type":"string",
1929
- "enum":[
1930
- "NotSent",
1931
- "Sent",
1932
- "Failed"
1933
- ]
1934
- },
1935
- "ErrorCode":{
1936
- "type":"string",
1937
- "enum":[
1938
- "BadRequest",
1939
- "Conflict",
1940
- "Forbidden",
1941
- "NotFound",
1942
- "PreconditionFailed",
1943
- "ResourceLimitExceeded",
1944
- "ServiceFailure",
1945
- "AccessDenied",
1946
- "ServiceUnavailable",
1947
- "Throttled",
1948
- "Unauthorized",
1949
- "Unprocessable",
1950
- "VoiceConnectorGroupAssociationsExist",
1951
- "PhoneNumberAssociationsExist"
1952
- ]
1953
- },
1954
- "EventsConfiguration":{
1955
- "type":"structure",
1956
- "members":{
1957
- "BotId":{"shape":"String"},
1958
- "OutboundEventsHTTPSEndpoint":{"shape":"SensitiveString"},
1959
- "LambdaFunctionArn":{"shape":"SensitiveString"}
1960
- }
1961
- },
1962
- "ForbiddenException":{
1963
- "type":"structure",
1964
- "members":{
1965
- "Code":{"shape":"ErrorCode"},
1966
- "Message":{"shape":"String"}
1967
- },
1968
- "error":{"httpStatusCode":403},
1969
- "exception":true
1970
- },
1971
- "GetAccountRequest":{
1972
- "type":"structure",
1973
- "required":["AccountId"],
1974
- "members":{
1975
- "AccountId":{
1976
- "shape":"NonEmptyString",
1977
- "location":"uri",
1978
- "locationName":"accountId"
1979
- }
1980
- }
1981
- },
1982
- "GetAccountResponse":{
1983
- "type":"structure",
1984
- "members":{
1985
- "Account":{"shape":"Account"}
1986
- }
1987
- },
1988
- "GetAccountSettingsRequest":{
1989
- "type":"structure",
1990
- "required":["AccountId"],
1991
- "members":{
1992
- "AccountId":{
1993
- "shape":"NonEmptyString",
1994
- "location":"uri",
1995
- "locationName":"accountId"
1996
- }
1997
- }
1998
- },
1999
- "GetAccountSettingsResponse":{
2000
- "type":"structure",
2001
- "members":{
2002
- "AccountSettings":{"shape":"AccountSettings"}
2003
- }
2004
- },
2005
- "GetBotRequest":{
2006
- "type":"structure",
2007
- "required":[
2008
- "AccountId",
2009
- "BotId"
2010
- ],
2011
- "members":{
2012
- "AccountId":{
2013
- "shape":"NonEmptyString",
2014
- "location":"uri",
2015
- "locationName":"accountId"
2016
- },
2017
- "BotId":{
2018
- "shape":"NonEmptyString",
2019
- "location":"uri",
2020
- "locationName":"botId"
2021
- }
2022
- }
2023
- },
2024
- "GetBotResponse":{
2025
- "type":"structure",
2026
- "members":{
2027
- "Bot":{"shape":"Bot"}
2028
- }
2029
- },
2030
- "GetEventsConfigurationRequest":{
2031
- "type":"structure",
2032
- "required":[
2033
- "AccountId",
2034
- "BotId"
2035
- ],
2036
- "members":{
2037
- "AccountId":{
2038
- "shape":"NonEmptyString",
2039
- "location":"uri",
2040
- "locationName":"accountId"
2041
- },
2042
- "BotId":{
2043
- "shape":"NonEmptyString",
2044
- "location":"uri",
2045
- "locationName":"botId"
2046
- }
2047
- }
2048
- },
2049
- "GetEventsConfigurationResponse":{
2050
- "type":"structure",
2051
- "members":{
2052
- "EventsConfiguration":{"shape":"EventsConfiguration"}
2053
- }
2054
- },
2055
- "GetGlobalSettingsResponse":{
2056
- "type":"structure",
2057
- "members":{
2058
- "BusinessCalling":{"shape":"BusinessCallingSettings"},
2059
- "VoiceConnector":{"shape":"VoiceConnectorSettings"}
2060
- }
2061
- },
2062
- "GetPhoneNumberOrderRequest":{
2063
- "type":"structure",
2064
- "required":["PhoneNumberOrderId"],
2065
- "members":{
2066
- "PhoneNumberOrderId":{
2067
- "shape":"GuidString",
2068
- "location":"uri",
2069
- "locationName":"phoneNumberOrderId"
2070
- }
2071
- }
2072
- },
2073
- "GetPhoneNumberOrderResponse":{
2074
- "type":"structure",
2075
- "members":{
2076
- "PhoneNumberOrder":{"shape":"PhoneNumberOrder"}
2077
- }
2078
- },
2079
- "GetPhoneNumberRequest":{
2080
- "type":"structure",
2081
- "required":["PhoneNumberId"],
2082
- "members":{
2083
- "PhoneNumberId":{
2084
- "shape":"String",
2085
- "location":"uri",
2086
- "locationName":"phoneNumberId"
2087
- }
2088
- }
2089
- },
2090
- "GetPhoneNumberResponse":{
2091
- "type":"structure",
2092
- "members":{
2093
- "PhoneNumber":{"shape":"PhoneNumber"}
2094
- }
2095
- },
2096
- "GetPhoneNumberSettingsResponse":{
2097
- "type":"structure",
2098
- "members":{
2099
- "CallingName":{"shape":"CallingName"},
2100
- "CallingNameUpdatedTimestamp":{"shape":"Iso8601Timestamp"}
2101
- }
2102
- },
2103
- "GetUserRequest":{
2104
- "type":"structure",
2105
- "required":[
2106
- "AccountId",
2107
- "UserId"
2108
- ],
2109
- "members":{
2110
- "AccountId":{
2111
- "shape":"NonEmptyString",
2112
- "location":"uri",
2113
- "locationName":"accountId"
2114
- },
2115
- "UserId":{
2116
- "shape":"NonEmptyString",
2117
- "location":"uri",
2118
- "locationName":"userId"
2119
- }
2120
- }
2121
- },
2122
- "GetUserResponse":{
2123
- "type":"structure",
2124
- "members":{
2125
- "User":{"shape":"User"}
2126
- }
2127
- },
2128
- "GetUserSettingsRequest":{
2129
- "type":"structure",
2130
- "required":[
2131
- "AccountId",
2132
- "UserId"
2133
- ],
2134
- "members":{
2135
- "AccountId":{
2136
- "shape":"String",
2137
- "location":"uri",
2138
- "locationName":"accountId"
2139
- },
2140
- "UserId":{
2141
- "shape":"String",
2142
- "location":"uri",
2143
- "locationName":"userId"
2144
- }
2145
- }
2146
- },
2147
- "GetUserSettingsResponse":{
2148
- "type":"structure",
2149
- "members":{
2150
- "UserSettings":{"shape":"UserSettings"}
2151
- }
2152
- },
2153
- "GetVoiceConnectorGroupRequest":{
2154
- "type":"structure",
2155
- "required":["VoiceConnectorGroupId"],
2156
- "members":{
2157
- "VoiceConnectorGroupId":{
2158
- "shape":"NonEmptyString",
2159
- "location":"uri",
2160
- "locationName":"voiceConnectorGroupId"
2161
- }
2162
- }
2163
- },
2164
- "GetVoiceConnectorGroupResponse":{
2165
- "type":"structure",
2166
- "members":{
2167
- "VoiceConnectorGroup":{"shape":"VoiceConnectorGroup"}
2168
- }
2169
- },
2170
- "GetVoiceConnectorLoggingConfigurationRequest":{
2171
- "type":"structure",
2172
- "required":["VoiceConnectorId"],
2173
- "members":{
2174
- "VoiceConnectorId":{
2175
- "shape":"NonEmptyString",
2176
- "location":"uri",
2177
- "locationName":"voiceConnectorId"
2178
- }
2179
- }
2180
- },
2181
- "GetVoiceConnectorLoggingConfigurationResponse":{
2182
- "type":"structure",
2183
- "members":{
2184
- "LoggingConfiguration":{"shape":"LoggingConfiguration"}
2185
- }
2186
- },
2187
- "GetVoiceConnectorOriginationRequest":{
2188
- "type":"structure",
2189
- "required":["VoiceConnectorId"],
2190
- "members":{
2191
- "VoiceConnectorId":{
2192
- "shape":"NonEmptyString",
2193
- "location":"uri",
2194
- "locationName":"voiceConnectorId"
2195
- }
2196
- }
2197
- },
2198
- "GetVoiceConnectorOriginationResponse":{
2199
- "type":"structure",
2200
- "members":{
2201
- "Origination":{"shape":"Origination"}
2202
- }
2203
- },
2204
- "GetVoiceConnectorRequest":{
2205
- "type":"structure",
2206
- "required":["VoiceConnectorId"],
2207
- "members":{
2208
- "VoiceConnectorId":{
2209
- "shape":"NonEmptyString",
2210
- "location":"uri",
2211
- "locationName":"voiceConnectorId"
2212
- }
2213
- }
2214
- },
2215
- "GetVoiceConnectorResponse":{
2216
- "type":"structure",
2217
- "members":{
2218
- "VoiceConnector":{"shape":"VoiceConnector"}
2219
- }
2220
- },
2221
- "GetVoiceConnectorStreamingConfigurationRequest":{
2222
- "type":"structure",
2223
- "required":["VoiceConnectorId"],
2224
- "members":{
2225
- "VoiceConnectorId":{
2226
- "shape":"NonEmptyString",
2227
- "location":"uri",
2228
- "locationName":"voiceConnectorId"
2229
- }
2230
- }
2231
- },
2232
- "GetVoiceConnectorStreamingConfigurationResponse":{
2233
- "type":"structure",
2234
- "members":{
2235
- "StreamingConfiguration":{"shape":"StreamingConfiguration"}
2236
- }
2237
- },
2238
- "GetVoiceConnectorTerminationHealthRequest":{
2239
- "type":"structure",
2240
- "required":["VoiceConnectorId"],
2241
- "members":{
2242
- "VoiceConnectorId":{
2243
- "shape":"NonEmptyString",
2244
- "location":"uri",
2245
- "locationName":"voiceConnectorId"
2246
- }
2247
- }
2248
- },
2249
- "GetVoiceConnectorTerminationHealthResponse":{
2250
- "type":"structure",
2251
- "members":{
2252
- "TerminationHealth":{"shape":"TerminationHealth"}
2253
- }
2254
- },
2255
- "GetVoiceConnectorTerminationRequest":{
2256
- "type":"structure",
2257
- "required":["VoiceConnectorId"],
2258
- "members":{
2259
- "VoiceConnectorId":{
2260
- "shape":"NonEmptyString",
2261
- "location":"uri",
2262
- "locationName":"voiceConnectorId"
2263
- }
2264
- }
2265
- },
2266
- "GetVoiceConnectorTerminationResponse":{
2267
- "type":"structure",
2268
- "members":{
2269
- "Termination":{"shape":"Termination"}
2270
- }
2271
- },
2272
- "GuidString":{
2273
- "type":"string",
2274
- "pattern":"[a-fA-F0-9]{8}(?:-[a-fA-F0-9]{4}){3}-[a-fA-F0-9]{12}"
2275
- },
2276
- "Invite":{
2277
- "type":"structure",
2278
- "members":{
2279
- "InviteId":{"shape":"String"},
2280
- "Status":{"shape":"InviteStatus"},
2281
- "EmailAddress":{"shape":"EmailAddress"},
2282
- "EmailStatus":{"shape":"EmailStatus"}
2283
- }
2284
- },
2285
- "InviteList":{
2286
- "type":"list",
2287
- "member":{"shape":"Invite"}
2288
- },
2289
- "InviteStatus":{
2290
- "type":"string",
2291
- "enum":[
2292
- "Pending",
2293
- "Accepted",
2294
- "Failed"
2295
- ]
2296
- },
2297
- "InviteUsersRequest":{
2298
- "type":"structure",
2299
- "required":[
2300
- "AccountId",
2301
- "UserEmailList"
2302
- ],
2303
- "members":{
2304
- "AccountId":{
2305
- "shape":"NonEmptyString",
2306
- "location":"uri",
2307
- "locationName":"accountId"
2308
- },
2309
- "UserEmailList":{"shape":"UserEmailList"}
2310
- }
2311
- },
2312
- "InviteUsersResponse":{
2313
- "type":"structure",
2314
- "members":{
2315
- "Invites":{"shape":"InviteList"}
2316
- }
2317
- },
2318
- "Iso8601Timestamp":{
2319
- "type":"timestamp",
2320
- "timestampFormat":"iso8601"
2321
- },
2322
- "License":{
2323
- "type":"string",
2324
- "enum":[
2325
- "Basic",
2326
- "Plus",
2327
- "Pro",
2328
- "ProTrial"
2329
- ]
2330
- },
2331
- "LicenseList":{
2332
- "type":"list",
2333
- "member":{"shape":"License"}
2334
- },
2335
- "ListAccountsRequest":{
2336
- "type":"structure",
2337
- "members":{
2338
- "Name":{
2339
- "shape":"AccountName",
2340
- "location":"querystring",
2341
- "locationName":"name"
2342
- },
2343
- "UserEmail":{
2344
- "shape":"EmailAddress",
2345
- "location":"querystring",
2346
- "locationName":"user-email"
2347
- },
2348
- "NextToken":{
2349
- "shape":"String",
2350
- "location":"querystring",
2351
- "locationName":"next-token"
2352
- },
2353
- "MaxResults":{
2354
- "shape":"ProfileServiceMaxResults",
2355
- "location":"querystring",
2356
- "locationName":"max-results"
2357
- }
2358
- }
2359
- },
2360
- "ListAccountsResponse":{
2361
- "type":"structure",
2362
- "members":{
2363
- "Accounts":{"shape":"AccountList"},
2364
- "NextToken":{"shape":"String"}
2365
- }
2366
- },
2367
- "ListBotsRequest":{
2368
- "type":"structure",
2369
- "required":["AccountId"],
2370
- "members":{
2371
- "AccountId":{
2372
- "shape":"NonEmptyString",
2373
- "location":"uri",
2374
- "locationName":"accountId"
2375
- },
2376
- "MaxResults":{
2377
- "shape":"ResultMax",
2378
- "location":"querystring",
2379
- "locationName":"max-results"
2380
- },
2381
- "NextToken":{
2382
- "shape":"String",
2383
- "location":"querystring",
2384
- "locationName":"next-token"
2385
- }
2386
- }
2387
- },
2388
- "ListBotsResponse":{
2389
- "type":"structure",
2390
- "members":{
2391
- "Bots":{"shape":"BotList"},
2392
- "NextToken":{"shape":"String"}
2393
- }
2394
- },
2395
- "ListPhoneNumberOrdersRequest":{
2396
- "type":"structure",
2397
- "members":{
2398
- "NextToken":{
2399
- "shape":"String",
2400
- "location":"querystring",
2401
- "locationName":"next-token"
2402
- },
2403
- "MaxResults":{
2404
- "shape":"ResultMax",
2405
- "location":"querystring",
2406
- "locationName":"max-results"
2407
- }
2408
- }
2409
- },
2410
- "ListPhoneNumberOrdersResponse":{
2411
- "type":"structure",
2412
- "members":{
2413
- "PhoneNumberOrders":{"shape":"PhoneNumberOrderList"},
2414
- "NextToken":{"shape":"String"}
2415
- }
2416
- },
2417
- "ListPhoneNumbersRequest":{
2418
- "type":"structure",
2419
- "members":{
2420
- "Status":{
2421
- "shape":"PhoneNumberStatus",
2422
- "location":"querystring",
2423
- "locationName":"status"
2424
- },
2425
- "ProductType":{
2426
- "shape":"PhoneNumberProductType",
2427
- "location":"querystring",
2428
- "locationName":"product-type"
2429
- },
2430
- "FilterName":{
2431
- "shape":"PhoneNumberAssociationName",
2432
- "location":"querystring",
2433
- "locationName":"filter-name"
2434
- },
2435
- "FilterValue":{
2436
- "shape":"String",
2437
- "location":"querystring",
2438
- "locationName":"filter-value"
2439
- },
2440
- "MaxResults":{
2441
- "shape":"ResultMax",
2442
- "location":"querystring",
2443
- "locationName":"max-results"
2444
- },
2445
- "NextToken":{
2446
- "shape":"String",
2447
- "location":"querystring",
2448
- "locationName":"next-token"
2449
- }
2450
- }
2451
- },
2452
- "ListPhoneNumbersResponse":{
2453
- "type":"structure",
2454
- "members":{
2455
- "PhoneNumbers":{"shape":"PhoneNumberList"},
2456
- "NextToken":{"shape":"String"}
2457
- }
2458
- },
2459
- "ListUsersRequest":{
2460
- "type":"structure",
2461
- "required":["AccountId"],
2462
- "members":{
2463
- "AccountId":{
2464
- "shape":"NonEmptyString",
2465
- "location":"uri",
2466
- "locationName":"accountId"
2467
- },
2468
- "UserEmail":{
2469
- "shape":"EmailAddress",
2470
- "location":"querystring",
2471
- "locationName":"user-email"
2472
- },
2473
- "MaxResults":{
2474
- "shape":"ProfileServiceMaxResults",
2475
- "location":"querystring",
2476
- "locationName":"max-results"
2477
- },
2478
- "NextToken":{
2479
- "shape":"String",
2480
- "location":"querystring",
2481
- "locationName":"next-token"
2482
- }
2483
- }
2484
- },
2485
- "ListUsersResponse":{
2486
- "type":"structure",
2487
- "members":{
2488
- "Users":{"shape":"UserList"},
2489
- "NextToken":{"shape":"String"}
2490
- }
2491
- },
2492
- "ListVoiceConnectorGroupsRequest":{
2493
- "type":"structure",
2494
- "members":{
2495
- "NextToken":{
2496
- "shape":"String",
2497
- "location":"querystring",
2498
- "locationName":"next-token"
2499
- },
2500
- "MaxResults":{
2501
- "shape":"ResultMax",
2502
- "location":"querystring",
2503
- "locationName":"max-results"
2504
- }
2505
- }
2506
- },
2507
- "ListVoiceConnectorGroupsResponse":{
2508
- "type":"structure",
2509
- "members":{
2510
- "VoiceConnectorGroups":{"shape":"VoiceConnectorGroupList"},
2511
- "NextToken":{"shape":"String"}
2512
- }
2513
- },
2514
- "ListVoiceConnectorTerminationCredentialsRequest":{
2515
- "type":"structure",
2516
- "required":["VoiceConnectorId"],
2517
- "members":{
2518
- "VoiceConnectorId":{
2519
- "shape":"NonEmptyString",
2520
- "location":"uri",
2521
- "locationName":"voiceConnectorId"
2522
- }
2523
- }
2524
- },
2525
- "ListVoiceConnectorTerminationCredentialsResponse":{
2526
- "type":"structure",
2527
- "members":{
2528
- "Usernames":{"shape":"SensitiveStringList"}
2529
- }
2530
- },
2531
- "ListVoiceConnectorsRequest":{
2532
- "type":"structure",
2533
- "members":{
2534
- "NextToken":{
2535
- "shape":"String",
2536
- "location":"querystring",
2537
- "locationName":"next-token"
2538
- },
2539
- "MaxResults":{
2540
- "shape":"ResultMax",
2541
- "location":"querystring",
2542
- "locationName":"max-results"
2543
- }
2544
- }
2545
- },
2546
- "ListVoiceConnectorsResponse":{
2547
- "type":"structure",
2548
- "members":{
2549
- "VoiceConnectors":{"shape":"VoiceConnectorList"},
2550
- "NextToken":{"shape":"String"}
2551
- }
2552
- },
2553
- "LoggingConfiguration":{
2554
- "type":"structure",
2555
- "members":{
2556
- "EnableSIPLogs":{"shape":"Boolean"}
2557
- }
2558
- },
2559
- "LogoutUserRequest":{
2560
- "type":"structure",
2561
- "required":[
2562
- "AccountId",
2563
- "UserId"
2564
- ],
2565
- "members":{
2566
- "AccountId":{
2567
- "shape":"NonEmptyString",
2568
- "location":"uri",
2569
- "locationName":"accountId"
2570
- },
2571
- "UserId":{
2572
- "shape":"NonEmptyString",
2573
- "location":"uri",
2574
- "locationName":"userId"
2575
- }
2576
- }
2577
- },
2578
- "LogoutUserResponse":{
2579
- "type":"structure",
2580
- "members":{
2581
- }
2582
- },
2583
- "NonEmptyString":{
2584
- "type":"string",
2585
- "pattern":".*\\S.*"
2586
- },
2587
- "NonEmptyStringList":{
2588
- "type":"list",
2589
- "member":{"shape":"String"},
2590
- "min":1
2591
- },
2592
- "NotFoundException":{
2593
- "type":"structure",
2594
- "members":{
2595
- "Code":{"shape":"ErrorCode"},
2596
- "Message":{"shape":"String"}
2597
- },
2598
- "error":{"httpStatusCode":404},
2599
- "exception":true
2600
- },
2601
- "NullableBoolean":{"type":"boolean"},
2602
- "OrderedPhoneNumber":{
2603
- "type":"structure",
2604
- "members":{
2605
- "E164PhoneNumber":{"shape":"E164PhoneNumber"},
2606
- "Status":{"shape":"OrderedPhoneNumberStatus"}
2607
- }
2608
- },
2609
- "OrderedPhoneNumberList":{
2610
- "type":"list",
2611
- "member":{"shape":"OrderedPhoneNumber"}
2612
- },
2613
- "OrderedPhoneNumberStatus":{
2614
- "type":"string",
2615
- "enum":[
2616
- "Processing",
2617
- "Acquired",
2618
- "Failed"
2619
- ]
2620
- },
2621
- "Origination":{
2622
- "type":"structure",
2623
- "members":{
2624
- "Routes":{"shape":"OriginationRouteList"},
2625
- "Disabled":{"shape":"Boolean"}
2626
- }
2627
- },
2628
- "OriginationRoute":{
2629
- "type":"structure",
2630
- "members":{
2631
- "Host":{"shape":"String"},
2632
- "Port":{"shape":"Port"},
2633
- "Protocol":{"shape":"OriginationRouteProtocol"},
2634
- "Priority":{"shape":"OriginationRoutePriority"},
2635
- "Weight":{"shape":"OriginationRouteWeight"}
2636
- }
2637
- },
2638
- "OriginationRouteList":{
2639
- "type":"list",
2640
- "member":{"shape":"OriginationRoute"}
2641
- },
2642
- "OriginationRoutePriority":{
2643
- "type":"integer",
2644
- "max":100,
2645
- "min":1
2646
- },
2647
- "OriginationRouteProtocol":{
2648
- "type":"string",
2649
- "enum":[
2650
- "TCP",
2651
- "UDP"
2652
- ]
2653
- },
2654
- "OriginationRouteWeight":{
2655
- "type":"integer",
2656
- "max":100,
2657
- "min":1
2658
- },
2659
- "PhoneNumber":{
2660
- "type":"structure",
2661
- "members":{
2662
- "PhoneNumberId":{"shape":"String"},
2663
- "E164PhoneNumber":{"shape":"E164PhoneNumber"},
2664
- "Type":{"shape":"PhoneNumberType"},
2665
- "ProductType":{"shape":"PhoneNumberProductType"},
2666
- "Status":{"shape":"PhoneNumberStatus"},
2667
- "Capabilities":{"shape":"PhoneNumberCapabilities"},
2668
- "Associations":{"shape":"PhoneNumberAssociationList"},
2669
- "CallingName":{"shape":"CallingName"},
2670
- "CallingNameStatus":{"shape":"CallingNameStatus"},
2671
- "CreatedTimestamp":{"shape":"Iso8601Timestamp"},
2672
- "UpdatedTimestamp":{"shape":"Iso8601Timestamp"},
2673
- "DeletionTimestamp":{"shape":"Iso8601Timestamp"}
2674
- }
2675
- },
2676
- "PhoneNumberAssociation":{
2677
- "type":"structure",
2678
- "members":{
2679
- "Value":{"shape":"String"},
2680
- "Name":{"shape":"PhoneNumberAssociationName"},
2681
- "AssociatedTimestamp":{"shape":"Iso8601Timestamp"}
2682
- }
2683
- },
2684
- "PhoneNumberAssociationList":{
2685
- "type":"list",
2686
- "member":{"shape":"PhoneNumberAssociation"}
2687
- },
2688
- "PhoneNumberAssociationName":{
2689
- "type":"string",
2690
- "enum":[
2691
- "AccountId",
2692
- "UserId",
2693
- "VoiceConnectorId",
2694
- "VoiceConnectorGroupId"
2695
- ]
2696
- },
2697
- "PhoneNumberCapabilities":{
2698
- "type":"structure",
2699
- "members":{
2700
- "InboundCall":{"shape":"NullableBoolean"},
2701
- "OutboundCall":{"shape":"NullableBoolean"},
2702
- "InboundSMS":{"shape":"NullableBoolean"},
2703
- "OutboundSMS":{"shape":"NullableBoolean"},
2704
- "InboundMMS":{"shape":"NullableBoolean"},
2705
- "OutboundMMS":{"shape":"NullableBoolean"}
2706
- }
2707
- },
2708
- "PhoneNumberError":{
2709
- "type":"structure",
2710
- "members":{
2711
- "PhoneNumberId":{"shape":"NonEmptyString"},
2712
- "ErrorCode":{"shape":"ErrorCode"},
2713
- "ErrorMessage":{"shape":"String"}
2714
- }
2715
- },
2716
- "PhoneNumberErrorList":{
2717
- "type":"list",
2718
- "member":{"shape":"PhoneNumberError"}
2719
- },
2720
- "PhoneNumberList":{
2721
- "type":"list",
2722
- "member":{"shape":"PhoneNumber"}
2723
- },
2724
- "PhoneNumberMaxResults":{
2725
- "type":"integer",
2726
- "max":500,
2727
- "min":1
2728
- },
2729
- "PhoneNumberOrder":{
2730
- "type":"structure",
2731
- "members":{
2732
- "PhoneNumberOrderId":{"shape":"GuidString"},
2733
- "ProductType":{"shape":"PhoneNumberProductType"},
2734
- "Status":{"shape":"PhoneNumberOrderStatus"},
2735
- "OrderedPhoneNumbers":{"shape":"OrderedPhoneNumberList"},
2736
- "CreatedTimestamp":{"shape":"Iso8601Timestamp"},
2737
- "UpdatedTimestamp":{"shape":"Iso8601Timestamp"}
2738
- }
2739
- },
2740
- "PhoneNumberOrderList":{
2741
- "type":"list",
2742
- "member":{"shape":"PhoneNumberOrder"}
2743
- },
2744
- "PhoneNumberOrderStatus":{
2745
- "type":"string",
2746
- "enum":[
2747
- "Processing",
2748
- "Successful",
2749
- "Failed",
2750
- "Partial"
2751
- ]
2752
- },
2753
- "PhoneNumberProductType":{
2754
- "type":"string",
2755
- "enum":[
2756
- "BusinessCalling",
2757
- "VoiceConnector"
2758
- ]
2759
- },
2760
- "PhoneNumberStatus":{
2761
- "type":"string",
2762
- "enum":[
2763
- "AcquireInProgress",
2764
- "AcquireFailed",
2765
- "Unassigned",
2766
- "Assigned",
2767
- "ReleaseInProgress",
2768
- "DeleteInProgress",
2769
- "ReleaseFailed",
2770
- "DeleteFailed"
2771
- ]
2772
- },
2773
- "PhoneNumberType":{
2774
- "type":"string",
2775
- "enum":[
2776
- "Local",
2777
- "TollFree"
2778
- ]
2779
- },
2780
- "Port":{
2781
- "type":"integer",
2782
- "max":65535,
2783
- "min":0
2784
- },
2785
- "ProfileServiceMaxResults":{
2786
- "type":"integer",
2787
- "max":200,
2788
- "min":1
2789
- },
2790
- "PutEventsConfigurationRequest":{
2791
- "type":"structure",
2792
- "required":[
2793
- "AccountId",
2794
- "BotId"
2795
- ],
2796
- "members":{
2797
- "AccountId":{
2798
- "shape":"NonEmptyString",
2799
- "location":"uri",
2800
- "locationName":"accountId"
2801
- },
2802
- "BotId":{
2803
- "shape":"NonEmptyString",
2804
- "location":"uri",
2805
- "locationName":"botId"
2806
- },
2807
- "OutboundEventsHTTPSEndpoint":{"shape":"SensitiveString"},
2808
- "LambdaFunctionArn":{"shape":"SensitiveString"}
2809
- }
2810
- },
2811
- "PutEventsConfigurationResponse":{
2812
- "type":"structure",
2813
- "members":{
2814
- "EventsConfiguration":{"shape":"EventsConfiguration"}
2815
- }
2816
- },
2817
- "PutVoiceConnectorLoggingConfigurationRequest":{
2818
- "type":"structure",
2819
- "required":[
2820
- "VoiceConnectorId",
2821
- "LoggingConfiguration"
2822
- ],
2823
- "members":{
2824
- "VoiceConnectorId":{
2825
- "shape":"NonEmptyString",
2826
- "location":"uri",
2827
- "locationName":"voiceConnectorId"
2828
- },
2829
- "LoggingConfiguration":{"shape":"LoggingConfiguration"}
2830
- }
2831
- },
2832
- "PutVoiceConnectorLoggingConfigurationResponse":{
2833
- "type":"structure",
2834
- "members":{
2835
- "LoggingConfiguration":{"shape":"LoggingConfiguration"}
2836
- }
2837
- },
2838
- "PutVoiceConnectorOriginationRequest":{
2839
- "type":"structure",
2840
- "required":[
2841
- "VoiceConnectorId",
2842
- "Origination"
2843
- ],
2844
- "members":{
2845
- "VoiceConnectorId":{
2846
- "shape":"NonEmptyString",
2847
- "location":"uri",
2848
- "locationName":"voiceConnectorId"
2849
- },
2850
- "Origination":{"shape":"Origination"}
2851
- }
2852
- },
2853
- "PutVoiceConnectorOriginationResponse":{
2854
- "type":"structure",
2855
- "members":{
2856
- "Origination":{"shape":"Origination"}
2857
- }
2858
- },
2859
- "PutVoiceConnectorStreamingConfigurationRequest":{
2860
- "type":"structure",
2861
- "required":[
2862
- "VoiceConnectorId",
2863
- "StreamingConfiguration"
2864
- ],
2865
- "members":{
2866
- "VoiceConnectorId":{
2867
- "shape":"NonEmptyString",
2868
- "location":"uri",
2869
- "locationName":"voiceConnectorId"
2870
- },
2871
- "StreamingConfiguration":{"shape":"StreamingConfiguration"}
2872
- }
2873
- },
2874
- "PutVoiceConnectorStreamingConfigurationResponse":{
2875
- "type":"structure",
2876
- "members":{
2877
- "StreamingConfiguration":{"shape":"StreamingConfiguration"}
2878
- }
2879
- },
2880
- "PutVoiceConnectorTerminationCredentialsRequest":{
2881
- "type":"structure",
2882
- "required":["VoiceConnectorId"],
2883
- "members":{
2884
- "VoiceConnectorId":{
2885
- "shape":"NonEmptyString",
2886
- "location":"uri",
2887
- "locationName":"voiceConnectorId"
2888
- },
2889
- "Credentials":{"shape":"CredentialList"}
2890
- }
2891
- },
2892
- "PutVoiceConnectorTerminationRequest":{
2893
- "type":"structure",
2894
- "required":[
2895
- "VoiceConnectorId",
2896
- "Termination"
2897
- ],
2898
- "members":{
2899
- "VoiceConnectorId":{
2900
- "shape":"NonEmptyString",
2901
- "location":"uri",
2902
- "locationName":"voiceConnectorId"
2903
- },
2904
- "Termination":{"shape":"Termination"}
2905
- }
2906
- },
2907
- "PutVoiceConnectorTerminationResponse":{
2908
- "type":"structure",
2909
- "members":{
2910
- "Termination":{"shape":"Termination"}
2911
- }
2912
- },
2913
- "RegenerateSecurityTokenRequest":{
2914
- "type":"structure",
2915
- "required":[
2916
- "AccountId",
2917
- "BotId"
2918
- ],
2919
- "members":{
2920
- "AccountId":{
2921
- "shape":"NonEmptyString",
2922
- "location":"uri",
2923
- "locationName":"accountId"
2924
- },
2925
- "BotId":{
2926
- "shape":"NonEmptyString",
2927
- "location":"uri",
2928
- "locationName":"botId"
2929
- }
2930
- }
2931
- },
2932
- "RegenerateSecurityTokenResponse":{
2933
- "type":"structure",
2934
- "members":{
2935
- "Bot":{"shape":"Bot"}
2936
- }
2937
- },
2938
- "RegistrationStatus":{
2939
- "type":"string",
2940
- "enum":[
2941
- "Unregistered",
2942
- "Registered",
2943
- "Suspended"
2944
- ]
2945
- },
2946
- "ResetPersonalPINRequest":{
2947
- "type":"structure",
2948
- "required":[
2949
- "AccountId",
2950
- "UserId"
2951
- ],
2952
- "members":{
2953
- "AccountId":{
2954
- "shape":"NonEmptyString",
2955
- "location":"uri",
2956
- "locationName":"accountId"
2957
- },
2958
- "UserId":{
2959
- "shape":"NonEmptyString",
2960
- "location":"uri",
2961
- "locationName":"userId"
2962
- }
2963
- }
2964
- },
2965
- "ResetPersonalPINResponse":{
2966
- "type":"structure",
2967
- "members":{
2968
- "User":{"shape":"User"}
2969
- }
2970
- },
2971
- "ResourceLimitExceededException":{
2972
- "type":"structure",
2973
- "members":{
2974
- "Code":{"shape":"ErrorCode"},
2975
- "Message":{"shape":"String"}
2976
- },
2977
- "error":{"httpStatusCode":400},
2978
- "exception":true
2979
- },
2980
- "RestorePhoneNumberRequest":{
2981
- "type":"structure",
2982
- "required":["PhoneNumberId"],
2983
- "members":{
2984
- "PhoneNumberId":{
2985
- "shape":"NonEmptyString",
2986
- "location":"uri",
2987
- "locationName":"phoneNumberId"
2988
- }
2989
- }
2990
- },
2991
- "RestorePhoneNumberResponse":{
2992
- "type":"structure",
2993
- "members":{
2994
- "PhoneNumber":{"shape":"PhoneNumber"}
2995
- }
2996
- },
2997
- "ResultMax":{
2998
- "type":"integer",
2999
- "max":99,
3000
- "min":1
3001
- },
3002
- "SearchAvailablePhoneNumbersRequest":{
3003
- "type":"structure",
3004
- "members":{
3005
- "AreaCode":{
3006
- "shape":"String",
3007
- "location":"querystring",
3008
- "locationName":"area-code"
3009
- },
3010
- "City":{
3011
- "shape":"String",
3012
- "location":"querystring",
3013
- "locationName":"city"
3014
- },
3015
- "Country":{
3016
- "shape":"String",
3017
- "location":"querystring",
3018
- "locationName":"country"
3019
- },
3020
- "State":{
3021
- "shape":"String",
3022
- "location":"querystring",
3023
- "locationName":"state"
3024
- },
3025
- "TollFreePrefix":{
3026
- "shape":"TollFreePrefix",
3027
- "location":"querystring",
3028
- "locationName":"toll-free-prefix"
3029
- },
3030
- "MaxResults":{
3031
- "shape":"PhoneNumberMaxResults",
3032
- "location":"querystring",
3033
- "locationName":"max-results"
3034
- },
3035
- "NextToken":{
3036
- "shape":"String",
3037
- "location":"querystring",
3038
- "locationName":"next-token"
3039
- }
3040
- }
3041
- },
3042
- "SearchAvailablePhoneNumbersResponse":{
3043
- "type":"structure",
3044
- "members":{
3045
- "E164PhoneNumbers":{"shape":"E164PhoneNumberList"}
3046
- }
3047
- },
3048
- "SensitiveString":{
3049
- "type":"string",
3050
- "sensitive":true
3051
- },
3052
- "SensitiveStringList":{
3053
- "type":"list",
3054
- "member":{"shape":"SensitiveString"}
3055
- },
3056
- "ServiceFailureException":{
3057
- "type":"structure",
3058
- "members":{
3059
- "Code":{"shape":"ErrorCode"},
3060
- "Message":{"shape":"String"}
3061
- },
3062
- "error":{"httpStatusCode":500},
3063
- "exception":true,
3064
- "fault":true
3065
- },
3066
- "ServiceUnavailableException":{
3067
- "type":"structure",
3068
- "members":{
3069
- "Code":{"shape":"ErrorCode"},
3070
- "Message":{"shape":"String"}
3071
- },
3072
- "error":{"httpStatusCode":503},
3073
- "exception":true,
3074
- "fault":true
3075
- },
3076
- "StreamingConfiguration":{
3077
- "type":"structure",
3078
- "required":["DataRetentionInHours"],
3079
- "members":{
3080
- "DataRetentionInHours":{"shape":"DataRetentionInHours"},
3081
- "Disabled":{"shape":"Boolean"}
3082
- }
3083
- },
3084
- "String":{"type":"string"},
3085
- "StringList":{
3086
- "type":"list",
3087
- "member":{"shape":"String"}
3088
- },
3089
- "TelephonySettings":{
3090
- "type":"structure",
3091
- "required":[
3092
- "InboundCalling",
3093
- "OutboundCalling",
3094
- "SMS"
3095
- ],
3096
- "members":{
3097
- "InboundCalling":{"shape":"Boolean"},
3098
- "OutboundCalling":{"shape":"Boolean"},
3099
- "SMS":{"shape":"Boolean"}
3100
- }
3101
- },
3102
- "Termination":{
3103
- "type":"structure",
3104
- "members":{
3105
- "CpsLimit":{"shape":"CpsLimit"},
3106
- "DefaultPhoneNumber":{"shape":"E164PhoneNumber"},
3107
- "CallingRegions":{"shape":"CallingRegionList"},
3108
- "CidrAllowedList":{"shape":"StringList"},
3109
- "Disabled":{"shape":"Boolean"}
3110
- }
3111
- },
3112
- "TerminationHealth":{
3113
- "type":"structure",
3114
- "members":{
3115
- "Timestamp":{"shape":"Iso8601Timestamp"},
3116
- "Source":{"shape":"String"}
3117
- }
3118
- },
3119
- "ThrottledClientException":{
3120
- "type":"structure",
3121
- "members":{
3122
- "Code":{"shape":"ErrorCode"},
3123
- "Message":{"shape":"String"}
3124
- },
3125
- "error":{"httpStatusCode":429},
3126
- "exception":true
3127
- },
3128
- "TollFreePrefix":{
3129
- "type":"string",
3130
- "max":3,
3131
- "min":3,
3132
- "pattern":"^8(00|33|44|55|66|77|88)$"
3133
- },
3134
- "UnauthorizedClientException":{
3135
- "type":"structure",
3136
- "members":{
3137
- "Code":{"shape":"ErrorCode"},
3138
- "Message":{"shape":"String"}
3139
- },
3140
- "error":{"httpStatusCode":401},
3141
- "exception":true
3142
- },
3143
- "UnprocessableEntityException":{
3144
- "type":"structure",
3145
- "members":{
3146
- "Code":{"shape":"ErrorCode"},
3147
- "Message":{"shape":"String"}
3148
- },
3149
- "error":{"httpStatusCode":422},
3150
- "exception":true
3151
- },
3152
- "UpdateAccountRequest":{
3153
- "type":"structure",
3154
- "required":["AccountId"],
3155
- "members":{
3156
- "AccountId":{
3157
- "shape":"NonEmptyString",
3158
- "location":"uri",
3159
- "locationName":"accountId"
3160
- },
3161
- "Name":{"shape":"AccountName"}
3162
- }
3163
- },
3164
- "UpdateAccountResponse":{
3165
- "type":"structure",
3166
- "members":{
3167
- "Account":{"shape":"Account"}
3168
- }
3169
- },
3170
- "UpdateAccountSettingsRequest":{
3171
- "type":"structure",
3172
- "required":[
3173
- "AccountId",
3174
- "AccountSettings"
3175
- ],
3176
- "members":{
3177
- "AccountId":{
3178
- "shape":"NonEmptyString",
3179
- "location":"uri",
3180
- "locationName":"accountId"
3181
- },
3182
- "AccountSettings":{"shape":"AccountSettings"}
3183
- }
3184
- },
3185
- "UpdateAccountSettingsResponse":{
3186
- "type":"structure",
3187
- "members":{
3188
- }
3189
- },
3190
- "UpdateBotRequest":{
3191
- "type":"structure",
3192
- "required":[
3193
- "AccountId",
3194
- "BotId"
3195
- ],
3196
- "members":{
3197
- "AccountId":{
3198
- "shape":"NonEmptyString",
3199
- "location":"uri",
3200
- "locationName":"accountId"
3201
- },
3202
- "BotId":{
3203
- "shape":"NonEmptyString",
3204
- "location":"uri",
3205
- "locationName":"botId"
3206
- },
3207
- "Disabled":{"shape":"NullableBoolean"}
3208
- }
3209
- },
3210
- "UpdateBotResponse":{
3211
- "type":"structure",
3212
- "members":{
3213
- "Bot":{"shape":"Bot"}
3214
- }
3215
- },
3216
- "UpdateGlobalSettingsRequest":{
3217
- "type":"structure",
3218
- "required":[
3219
- "BusinessCalling",
3220
- "VoiceConnector"
3221
- ],
3222
- "members":{
3223
- "BusinessCalling":{"shape":"BusinessCallingSettings"},
3224
- "VoiceConnector":{"shape":"VoiceConnectorSettings"}
3225
- }
3226
- },
3227
- "UpdatePhoneNumberRequest":{
3228
- "type":"structure",
3229
- "required":["PhoneNumberId"],
3230
- "members":{
3231
- "PhoneNumberId":{
3232
- "shape":"String",
3233
- "location":"uri",
3234
- "locationName":"phoneNumberId"
3235
- },
3236
- "ProductType":{"shape":"PhoneNumberProductType"},
3237
- "CallingName":{"shape":"CallingName"}
3238
- }
3239
- },
3240
- "UpdatePhoneNumberRequestItem":{
3241
- "type":"structure",
3242
- "required":["PhoneNumberId"],
3243
- "members":{
3244
- "PhoneNumberId":{"shape":"NonEmptyString"},
3245
- "ProductType":{"shape":"PhoneNumberProductType"},
3246
- "CallingName":{"shape":"CallingName"}
3247
- }
3248
- },
3249
- "UpdatePhoneNumberRequestItemList":{
3250
- "type":"list",
3251
- "member":{"shape":"UpdatePhoneNumberRequestItem"}
3252
- },
3253
- "UpdatePhoneNumberResponse":{
3254
- "type":"structure",
3255
- "members":{
3256
- "PhoneNumber":{"shape":"PhoneNumber"}
3257
- }
3258
- },
3259
- "UpdatePhoneNumberSettingsRequest":{
3260
- "type":"structure",
3261
- "required":["CallingName"],
3262
- "members":{
3263
- "CallingName":{"shape":"CallingName"}
3264
- }
3265
- },
3266
- "UpdateUserRequest":{
3267
- "type":"structure",
3268
- "required":[
3269
- "AccountId",
3270
- "UserId"
3271
- ],
3272
- "members":{
3273
- "AccountId":{
3274
- "shape":"NonEmptyString",
3275
- "location":"uri",
3276
- "locationName":"accountId"
3277
- },
3278
- "UserId":{
3279
- "shape":"NonEmptyString",
3280
- "location":"uri",
3281
- "locationName":"userId"
3282
- },
3283
- "LicenseType":{"shape":"License"}
3284
- }
3285
- },
3286
- "UpdateUserRequestItem":{
3287
- "type":"structure",
3288
- "required":["UserId"],
3289
- "members":{
3290
- "UserId":{"shape":"NonEmptyString"},
3291
- "LicenseType":{"shape":"License"}
3292
- }
3293
- },
3294
- "UpdateUserRequestItemList":{
3295
- "type":"list",
3296
- "member":{"shape":"UpdateUserRequestItem"},
3297
- "max":20
3298
- },
3299
- "UpdateUserResponse":{
3300
- "type":"structure",
3301
- "members":{
3302
- "User":{"shape":"User"}
3303
- }
3304
- },
3305
- "UpdateUserSettingsRequest":{
3306
- "type":"structure",
3307
- "required":[
3308
- "AccountId",
3309
- "UserId",
3310
- "UserSettings"
3311
- ],
3312
- "members":{
3313
- "AccountId":{
3314
- "shape":"String",
3315
- "location":"uri",
3316
- "locationName":"accountId"
3317
- },
3318
- "UserId":{
3319
- "shape":"String",
3320
- "location":"uri",
3321
- "locationName":"userId"
3322
- },
3323
- "UserSettings":{"shape":"UserSettings"}
3324
- }
3325
- },
3326
- "UpdateVoiceConnectorGroupRequest":{
3327
- "type":"structure",
3328
- "required":[
3329
- "VoiceConnectorGroupId",
3330
- "Name",
3331
- "VoiceConnectorItems"
3332
- ],
3333
- "members":{
3334
- "VoiceConnectorGroupId":{
3335
- "shape":"NonEmptyString",
3336
- "location":"uri",
3337
- "locationName":"voiceConnectorGroupId"
3338
- },
3339
- "Name":{"shape":"VoiceConnectorGroupName"},
3340
- "VoiceConnectorItems":{"shape":"VoiceConnectorItemList"}
3341
- }
3342
- },
3343
- "UpdateVoiceConnectorGroupResponse":{
3344
- "type":"structure",
3345
- "members":{
3346
- "VoiceConnectorGroup":{"shape":"VoiceConnectorGroup"}
3347
- }
3348
- },
3349
- "UpdateVoiceConnectorRequest":{
3350
- "type":"structure",
3351
- "required":[
3352
- "VoiceConnectorId",
3353
- "Name",
3354
- "RequireEncryption"
3355
- ],
3356
- "members":{
3357
- "VoiceConnectorId":{
3358
- "shape":"NonEmptyString",
3359
- "location":"uri",
3360
- "locationName":"voiceConnectorId"
3361
- },
3362
- "Name":{"shape":"VoiceConnectorName"},
3363
- "RequireEncryption":{"shape":"Boolean"}
3364
- }
3365
- },
3366
- "UpdateVoiceConnectorResponse":{
3367
- "type":"structure",
3368
- "members":{
3369
- "VoiceConnector":{"shape":"VoiceConnector"}
3370
- }
3371
- },
3372
- "User":{
3373
- "type":"structure",
3374
- "required":["UserId"],
3375
- "members":{
3376
- "UserId":{"shape":"String"},
3377
- "AccountId":{"shape":"String"},
3378
- "PrimaryEmail":{"shape":"EmailAddress"},
3379
- "PrimaryProvisionedNumber":{"shape":"SensitiveString"},
3380
- "DisplayName":{"shape":"SensitiveString"},
3381
- "LicenseType":{"shape":"License"},
3382
- "UserRegistrationStatus":{"shape":"RegistrationStatus"},
3383
- "UserInvitationStatus":{"shape":"InviteStatus"},
3384
- "RegisteredOn":{"shape":"Iso8601Timestamp"},
3385
- "InvitedOn":{"shape":"Iso8601Timestamp"},
3386
- "PersonalPIN":{"shape":"String"}
3387
- }
3388
- },
3389
- "UserEmailList":{
3390
- "type":"list",
3391
- "member":{"shape":"EmailAddress"},
3392
- "max":50
3393
- },
3394
- "UserError":{
3395
- "type":"structure",
3396
- "members":{
3397
- "UserId":{"shape":"NonEmptyString"},
3398
- "ErrorCode":{"shape":"ErrorCode"},
3399
- "ErrorMessage":{"shape":"String"}
3400
- }
3401
- },
3402
- "UserErrorList":{
3403
- "type":"list",
3404
- "member":{"shape":"UserError"}
3405
- },
3406
- "UserIdList":{
3407
- "type":"list",
3408
- "member":{"shape":"NonEmptyString"},
3409
- "max":50
3410
- },
3411
- "UserList":{
3412
- "type":"list",
3413
- "member":{"shape":"User"}
3414
- },
3415
- "UserSettings":{
3416
- "type":"structure",
3417
- "required":["Telephony"],
3418
- "members":{
3419
- "Telephony":{"shape":"TelephonySettings"}
3420
- }
3421
- },
3422
- "VoiceConnector":{
3423
- "type":"structure",
3424
- "members":{
3425
- "VoiceConnectorId":{"shape":"NonEmptyString"},
3426
- "AwsRegion":{"shape":"VoiceConnectorAwsRegion"},
3427
- "Name":{"shape":"VoiceConnectorName"},
3428
- "OutboundHostName":{"shape":"String"},
3429
- "RequireEncryption":{"shape":"Boolean"},
3430
- "CreatedTimestamp":{"shape":"Iso8601Timestamp"},
3431
- "UpdatedTimestamp":{"shape":"Iso8601Timestamp"}
3432
- }
3433
- },
3434
- "VoiceConnectorAwsRegion":{
3435
- "type":"string",
3436
- "enum":[
3437
- "us-east-1",
3438
- "us-west-2"
3439
- ]
3440
- },
3441
- "VoiceConnectorGroup":{
3442
- "type":"structure",
3443
- "members":{
3444
- "VoiceConnectorGroupId":{"shape":"NonEmptyString"},
3445
- "Name":{"shape":"VoiceConnectorGroupName"},
3446
- "VoiceConnectorItems":{"shape":"VoiceConnectorItemList"},
3447
- "CreatedTimestamp":{"shape":"Iso8601Timestamp"},
3448
- "UpdatedTimestamp":{"shape":"Iso8601Timestamp"}
3449
- }
3450
- },
3451
- "VoiceConnectorGroupList":{
3452
- "type":"list",
3453
- "member":{"shape":"VoiceConnectorGroup"}
3454
- },
3455
- "VoiceConnectorGroupName":{
3456
- "type":"string",
3457
- "max":256,
3458
- "min":1
3459
- },
3460
- "VoiceConnectorItem":{
3461
- "type":"structure",
3462
- "required":[
3463
- "VoiceConnectorId",
3464
- "Priority"
3465
- ],
3466
- "members":{
3467
- "VoiceConnectorId":{"shape":"NonEmptyString"},
3468
- "Priority":{"shape":"VoiceConnectorItemPriority"}
3469
- }
3470
- },
3471
- "VoiceConnectorItemList":{
3472
- "type":"list",
3473
- "member":{"shape":"VoiceConnectorItem"}
3474
- },
3475
- "VoiceConnectorItemPriority":{
3476
- "type":"integer",
3477
- "max":99,
3478
- "min":1
3479
- },
3480
- "VoiceConnectorList":{
3481
- "type":"list",
3482
- "member":{"shape":"VoiceConnector"}
3483
- },
3484
- "VoiceConnectorName":{
3485
- "type":"string",
3486
- "max":256,
3487
- "min":1
3488
- },
3489
- "VoiceConnectorSettings":{
3490
- "type":"structure",
3491
- "members":{
3492
- "CdrBucket":{
3493
- "shape":"String",
3494
- "box":true
3495
- }
3496
- }
3497
- }
3498
- }
3499
- }