aws-sdk-core 2.11.400 → 3.77.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 +30 -17
  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 +187 -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 -1387
  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 -4041
  211. data/apis/chime/2018-05-01/examples-1.json +0 -5
  212. data/apis/chime/2018-05-01/paginators-1.json +0 -49
  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 -3294
  223. data/apis/cloudformation/2010-05-15/examples-1.json +0 -5
  224. data/apis/cloudformation/2010-05-15/paginators-1.json +0 -57
  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 -257
  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 -5395
  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 -25619
  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 -1211
  425. data/apis/eks/2017-11-01/examples-1.json +0 -135
  426. data/apis/eks/2017-11-01/paginators-1.json +0 -22
  427. data/apis/eks/2017-11-01/waiters-2.json +0 -91
  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 -2193
  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 -3508
  519. data/apis/guardduty/2017-11-28/examples-1.json +0 -5
  520. data/apis/guardduty/2017-11-28/paginators-1.json +0 -51
  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 -8559
  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 -11189
  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 -165
  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 -6602
  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 -5289
  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 -9052
  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 -1992
  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,4 +0,0 @@
1
- {
2
- "pagination": {
3
- }
4
- }
@@ -1,3197 +0,0 @@
1
- {
2
- "version":"2.0",
3
- "metadata":{
4
- "apiVersion":"2015-06-23",
5
- "endpointPrefix":"devicefarm",
6
- "jsonVersion":"1.1",
7
- "protocol":"json",
8
- "serviceFullName":"AWS Device Farm",
9
- "serviceId":"Device Farm",
10
- "signatureVersion":"v4",
11
- "targetPrefix":"DeviceFarm_20150623",
12
- "uid":"devicefarm-2015-06-23"
13
- },
14
- "operations":{
15
- "CreateDevicePool":{
16
- "name":"CreateDevicePool",
17
- "http":{
18
- "method":"POST",
19
- "requestUri":"/"
20
- },
21
- "input":{"shape":"CreateDevicePoolRequest"},
22
- "output":{"shape":"CreateDevicePoolResult"},
23
- "errors":[
24
- {"shape":"ArgumentException"},
25
- {"shape":"NotFoundException"},
26
- {"shape":"LimitExceededException"},
27
- {"shape":"ServiceAccountException"}
28
- ]
29
- },
30
- "CreateInstanceProfile":{
31
- "name":"CreateInstanceProfile",
32
- "http":{
33
- "method":"POST",
34
- "requestUri":"/"
35
- },
36
- "input":{"shape":"CreateInstanceProfileRequest"},
37
- "output":{"shape":"CreateInstanceProfileResult"},
38
- "errors":[
39
- {"shape":"ArgumentException"},
40
- {"shape":"NotFoundException"},
41
- {"shape":"LimitExceededException"},
42
- {"shape":"ServiceAccountException"}
43
- ]
44
- },
45
- "CreateNetworkProfile":{
46
- "name":"CreateNetworkProfile",
47
- "http":{
48
- "method":"POST",
49
- "requestUri":"/"
50
- },
51
- "input":{"shape":"CreateNetworkProfileRequest"},
52
- "output":{"shape":"CreateNetworkProfileResult"},
53
- "errors":[
54
- {"shape":"ArgumentException"},
55
- {"shape":"NotFoundException"},
56
- {"shape":"LimitExceededException"},
57
- {"shape":"ServiceAccountException"}
58
- ]
59
- },
60
- "CreateProject":{
61
- "name":"CreateProject",
62
- "http":{
63
- "method":"POST",
64
- "requestUri":"/"
65
- },
66
- "input":{"shape":"CreateProjectRequest"},
67
- "output":{"shape":"CreateProjectResult"},
68
- "errors":[
69
- {"shape":"ArgumentException"},
70
- {"shape":"NotFoundException"},
71
- {"shape":"LimitExceededException"},
72
- {"shape":"ServiceAccountException"},
73
- {"shape":"TagOperationException"}
74
- ]
75
- },
76
- "CreateRemoteAccessSession":{
77
- "name":"CreateRemoteAccessSession",
78
- "http":{
79
- "method":"POST",
80
- "requestUri":"/"
81
- },
82
- "input":{"shape":"CreateRemoteAccessSessionRequest"},
83
- "output":{"shape":"CreateRemoteAccessSessionResult"},
84
- "errors":[
85
- {"shape":"ArgumentException"},
86
- {"shape":"NotFoundException"},
87
- {"shape":"LimitExceededException"},
88
- {"shape":"ServiceAccountException"}
89
- ]
90
- },
91
- "CreateUpload":{
92
- "name":"CreateUpload",
93
- "http":{
94
- "method":"POST",
95
- "requestUri":"/"
96
- },
97
- "input":{"shape":"CreateUploadRequest"},
98
- "output":{"shape":"CreateUploadResult"},
99
- "errors":[
100
- {"shape":"ArgumentException"},
101
- {"shape":"NotFoundException"},
102
- {"shape":"LimitExceededException"},
103
- {"shape":"ServiceAccountException"}
104
- ]
105
- },
106
- "CreateVPCEConfiguration":{
107
- "name":"CreateVPCEConfiguration",
108
- "http":{
109
- "method":"POST",
110
- "requestUri":"/"
111
- },
112
- "input":{"shape":"CreateVPCEConfigurationRequest"},
113
- "output":{"shape":"CreateVPCEConfigurationResult"},
114
- "errors":[
115
- {"shape":"ArgumentException"},
116
- {"shape":"LimitExceededException"},
117
- {"shape":"ServiceAccountException"}
118
- ]
119
- },
120
- "DeleteDevicePool":{
121
- "name":"DeleteDevicePool",
122
- "http":{
123
- "method":"POST",
124
- "requestUri":"/"
125
- },
126
- "input":{"shape":"DeleteDevicePoolRequest"},
127
- "output":{"shape":"DeleteDevicePoolResult"},
128
- "errors":[
129
- {"shape":"ArgumentException"},
130
- {"shape":"NotFoundException"},
131
- {"shape":"LimitExceededException"},
132
- {"shape":"ServiceAccountException"}
133
- ]
134
- },
135
- "DeleteInstanceProfile":{
136
- "name":"DeleteInstanceProfile",
137
- "http":{
138
- "method":"POST",
139
- "requestUri":"/"
140
- },
141
- "input":{"shape":"DeleteInstanceProfileRequest"},
142
- "output":{"shape":"DeleteInstanceProfileResult"},
143
- "errors":[
144
- {"shape":"ArgumentException"},
145
- {"shape":"NotFoundException"},
146
- {"shape":"LimitExceededException"},
147
- {"shape":"ServiceAccountException"}
148
- ]
149
- },
150
- "DeleteNetworkProfile":{
151
- "name":"DeleteNetworkProfile",
152
- "http":{
153
- "method":"POST",
154
- "requestUri":"/"
155
- },
156
- "input":{"shape":"DeleteNetworkProfileRequest"},
157
- "output":{"shape":"DeleteNetworkProfileResult"},
158
- "errors":[
159
- {"shape":"ArgumentException"},
160
- {"shape":"NotFoundException"},
161
- {"shape":"LimitExceededException"},
162
- {"shape":"ServiceAccountException"}
163
- ]
164
- },
165
- "DeleteProject":{
166
- "name":"DeleteProject",
167
- "http":{
168
- "method":"POST",
169
- "requestUri":"/"
170
- },
171
- "input":{"shape":"DeleteProjectRequest"},
172
- "output":{"shape":"DeleteProjectResult"},
173
- "errors":[
174
- {"shape":"ArgumentException"},
175
- {"shape":"NotFoundException"},
176
- {"shape":"LimitExceededException"},
177
- {"shape":"ServiceAccountException"}
178
- ]
179
- },
180
- "DeleteRemoteAccessSession":{
181
- "name":"DeleteRemoteAccessSession",
182
- "http":{
183
- "method":"POST",
184
- "requestUri":"/"
185
- },
186
- "input":{"shape":"DeleteRemoteAccessSessionRequest"},
187
- "output":{"shape":"DeleteRemoteAccessSessionResult"},
188
- "errors":[
189
- {"shape":"ArgumentException"},
190
- {"shape":"NotFoundException"},
191
- {"shape":"LimitExceededException"},
192
- {"shape":"ServiceAccountException"}
193
- ]
194
- },
195
- "DeleteRun":{
196
- "name":"DeleteRun",
197
- "http":{
198
- "method":"POST",
199
- "requestUri":"/"
200
- },
201
- "input":{"shape":"DeleteRunRequest"},
202
- "output":{"shape":"DeleteRunResult"},
203
- "errors":[
204
- {"shape":"ArgumentException"},
205
- {"shape":"NotFoundException"},
206
- {"shape":"LimitExceededException"},
207
- {"shape":"ServiceAccountException"}
208
- ]
209
- },
210
- "DeleteUpload":{
211
- "name":"DeleteUpload",
212
- "http":{
213
- "method":"POST",
214
- "requestUri":"/"
215
- },
216
- "input":{"shape":"DeleteUploadRequest"},
217
- "output":{"shape":"DeleteUploadResult"},
218
- "errors":[
219
- {"shape":"ArgumentException"},
220
- {"shape":"NotFoundException"},
221
- {"shape":"LimitExceededException"},
222
- {"shape":"ServiceAccountException"}
223
- ]
224
- },
225
- "DeleteVPCEConfiguration":{
226
- "name":"DeleteVPCEConfiguration",
227
- "http":{
228
- "method":"POST",
229
- "requestUri":"/"
230
- },
231
- "input":{"shape":"DeleteVPCEConfigurationRequest"},
232
- "output":{"shape":"DeleteVPCEConfigurationResult"},
233
- "errors":[
234
- {"shape":"ArgumentException"},
235
- {"shape":"NotFoundException"},
236
- {"shape":"ServiceAccountException"},
237
- {"shape":"InvalidOperationException"}
238
- ]
239
- },
240
- "GetAccountSettings":{
241
- "name":"GetAccountSettings",
242
- "http":{
243
- "method":"POST",
244
- "requestUri":"/"
245
- },
246
- "input":{"shape":"GetAccountSettingsRequest"},
247
- "output":{"shape":"GetAccountSettingsResult"},
248
- "errors":[
249
- {"shape":"ArgumentException"},
250
- {"shape":"NotFoundException"},
251
- {"shape":"LimitExceededException"},
252
- {"shape":"ServiceAccountException"}
253
- ]
254
- },
255
- "GetDevice":{
256
- "name":"GetDevice",
257
- "http":{
258
- "method":"POST",
259
- "requestUri":"/"
260
- },
261
- "input":{"shape":"GetDeviceRequest"},
262
- "output":{"shape":"GetDeviceResult"},
263
- "errors":[
264
- {"shape":"ArgumentException"},
265
- {"shape":"NotFoundException"},
266
- {"shape":"LimitExceededException"},
267
- {"shape":"ServiceAccountException"}
268
- ]
269
- },
270
- "GetDeviceInstance":{
271
- "name":"GetDeviceInstance",
272
- "http":{
273
- "method":"POST",
274
- "requestUri":"/"
275
- },
276
- "input":{"shape":"GetDeviceInstanceRequest"},
277
- "output":{"shape":"GetDeviceInstanceResult"},
278
- "errors":[
279
- {"shape":"ArgumentException"},
280
- {"shape":"NotFoundException"},
281
- {"shape":"LimitExceededException"},
282
- {"shape":"ServiceAccountException"}
283
- ]
284
- },
285
- "GetDevicePool":{
286
- "name":"GetDevicePool",
287
- "http":{
288
- "method":"POST",
289
- "requestUri":"/"
290
- },
291
- "input":{"shape":"GetDevicePoolRequest"},
292
- "output":{"shape":"GetDevicePoolResult"},
293
- "errors":[
294
- {"shape":"ArgumentException"},
295
- {"shape":"NotFoundException"},
296
- {"shape":"LimitExceededException"},
297
- {"shape":"ServiceAccountException"}
298
- ]
299
- },
300
- "GetDevicePoolCompatibility":{
301
- "name":"GetDevicePoolCompatibility",
302
- "http":{
303
- "method":"POST",
304
- "requestUri":"/"
305
- },
306
- "input":{"shape":"GetDevicePoolCompatibilityRequest"},
307
- "output":{"shape":"GetDevicePoolCompatibilityResult"},
308
- "errors":[
309
- {"shape":"ArgumentException"},
310
- {"shape":"NotFoundException"},
311
- {"shape":"LimitExceededException"},
312
- {"shape":"ServiceAccountException"}
313
- ]
314
- },
315
- "GetInstanceProfile":{
316
- "name":"GetInstanceProfile",
317
- "http":{
318
- "method":"POST",
319
- "requestUri":"/"
320
- },
321
- "input":{"shape":"GetInstanceProfileRequest"},
322
- "output":{"shape":"GetInstanceProfileResult"},
323
- "errors":[
324
- {"shape":"ArgumentException"},
325
- {"shape":"NotFoundException"},
326
- {"shape":"LimitExceededException"},
327
- {"shape":"ServiceAccountException"}
328
- ]
329
- },
330
- "GetJob":{
331
- "name":"GetJob",
332
- "http":{
333
- "method":"POST",
334
- "requestUri":"/"
335
- },
336
- "input":{"shape":"GetJobRequest"},
337
- "output":{"shape":"GetJobResult"},
338
- "errors":[
339
- {"shape":"ArgumentException"},
340
- {"shape":"NotFoundException"},
341
- {"shape":"LimitExceededException"},
342
- {"shape":"ServiceAccountException"}
343
- ]
344
- },
345
- "GetNetworkProfile":{
346
- "name":"GetNetworkProfile",
347
- "http":{
348
- "method":"POST",
349
- "requestUri":"/"
350
- },
351
- "input":{"shape":"GetNetworkProfileRequest"},
352
- "output":{"shape":"GetNetworkProfileResult"},
353
- "errors":[
354
- {"shape":"ArgumentException"},
355
- {"shape":"NotFoundException"},
356
- {"shape":"LimitExceededException"},
357
- {"shape":"ServiceAccountException"}
358
- ]
359
- },
360
- "GetOfferingStatus":{
361
- "name":"GetOfferingStatus",
362
- "http":{
363
- "method":"POST",
364
- "requestUri":"/"
365
- },
366
- "input":{"shape":"GetOfferingStatusRequest"},
367
- "output":{"shape":"GetOfferingStatusResult"},
368
- "errors":[
369
- {"shape":"ArgumentException"},
370
- {"shape":"NotFoundException"},
371
- {"shape":"NotEligibleException"},
372
- {"shape":"LimitExceededException"},
373
- {"shape":"ServiceAccountException"}
374
- ]
375
- },
376
- "GetProject":{
377
- "name":"GetProject",
378
- "http":{
379
- "method":"POST",
380
- "requestUri":"/"
381
- },
382
- "input":{"shape":"GetProjectRequest"},
383
- "output":{"shape":"GetProjectResult"},
384
- "errors":[
385
- {"shape":"ArgumentException"},
386
- {"shape":"NotFoundException"},
387
- {"shape":"LimitExceededException"},
388
- {"shape":"ServiceAccountException"}
389
- ]
390
- },
391
- "GetRemoteAccessSession":{
392
- "name":"GetRemoteAccessSession",
393
- "http":{
394
- "method":"POST",
395
- "requestUri":"/"
396
- },
397
- "input":{"shape":"GetRemoteAccessSessionRequest"},
398
- "output":{"shape":"GetRemoteAccessSessionResult"},
399
- "errors":[
400
- {"shape":"ArgumentException"},
401
- {"shape":"NotFoundException"},
402
- {"shape":"LimitExceededException"},
403
- {"shape":"ServiceAccountException"}
404
- ]
405
- },
406
- "GetRun":{
407
- "name":"GetRun",
408
- "http":{
409
- "method":"POST",
410
- "requestUri":"/"
411
- },
412
- "input":{"shape":"GetRunRequest"},
413
- "output":{"shape":"GetRunResult"},
414
- "errors":[
415
- {"shape":"ArgumentException"},
416
- {"shape":"NotFoundException"},
417
- {"shape":"LimitExceededException"},
418
- {"shape":"ServiceAccountException"}
419
- ]
420
- },
421
- "GetSuite":{
422
- "name":"GetSuite",
423
- "http":{
424
- "method":"POST",
425
- "requestUri":"/"
426
- },
427
- "input":{"shape":"GetSuiteRequest"},
428
- "output":{"shape":"GetSuiteResult"},
429
- "errors":[
430
- {"shape":"ArgumentException"},
431
- {"shape":"NotFoundException"},
432
- {"shape":"LimitExceededException"},
433
- {"shape":"ServiceAccountException"}
434
- ]
435
- },
436
- "GetTest":{
437
- "name":"GetTest",
438
- "http":{
439
- "method":"POST",
440
- "requestUri":"/"
441
- },
442
- "input":{"shape":"GetTestRequest"},
443
- "output":{"shape":"GetTestResult"},
444
- "errors":[
445
- {"shape":"ArgumentException"},
446
- {"shape":"NotFoundException"},
447
- {"shape":"LimitExceededException"},
448
- {"shape":"ServiceAccountException"}
449
- ]
450
- },
451
- "GetUpload":{
452
- "name":"GetUpload",
453
- "http":{
454
- "method":"POST",
455
- "requestUri":"/"
456
- },
457
- "input":{"shape":"GetUploadRequest"},
458
- "output":{"shape":"GetUploadResult"},
459
- "errors":[
460
- {"shape":"ArgumentException"},
461
- {"shape":"NotFoundException"},
462
- {"shape":"LimitExceededException"},
463
- {"shape":"ServiceAccountException"}
464
- ]
465
- },
466
- "GetVPCEConfiguration":{
467
- "name":"GetVPCEConfiguration",
468
- "http":{
469
- "method":"POST",
470
- "requestUri":"/"
471
- },
472
- "input":{"shape":"GetVPCEConfigurationRequest"},
473
- "output":{"shape":"GetVPCEConfigurationResult"},
474
- "errors":[
475
- {"shape":"ArgumentException"},
476
- {"shape":"NotFoundException"},
477
- {"shape":"ServiceAccountException"}
478
- ]
479
- },
480
- "InstallToRemoteAccessSession":{
481
- "name":"InstallToRemoteAccessSession",
482
- "http":{
483
- "method":"POST",
484
- "requestUri":"/"
485
- },
486
- "input":{"shape":"InstallToRemoteAccessSessionRequest"},
487
- "output":{"shape":"InstallToRemoteAccessSessionResult"},
488
- "errors":[
489
- {"shape":"ArgumentException"},
490
- {"shape":"NotFoundException"},
491
- {"shape":"LimitExceededException"},
492
- {"shape":"ServiceAccountException"}
493
- ]
494
- },
495
- "ListArtifacts":{
496
- "name":"ListArtifacts",
497
- "http":{
498
- "method":"POST",
499
- "requestUri":"/"
500
- },
501
- "input":{"shape":"ListArtifactsRequest"},
502
- "output":{"shape":"ListArtifactsResult"},
503
- "errors":[
504
- {"shape":"ArgumentException"},
505
- {"shape":"NotFoundException"},
506
- {"shape":"LimitExceededException"},
507
- {"shape":"ServiceAccountException"}
508
- ]
509
- },
510
- "ListDeviceInstances":{
511
- "name":"ListDeviceInstances",
512
- "http":{
513
- "method":"POST",
514
- "requestUri":"/"
515
- },
516
- "input":{"shape":"ListDeviceInstancesRequest"},
517
- "output":{"shape":"ListDeviceInstancesResult"},
518
- "errors":[
519
- {"shape":"ArgumentException"},
520
- {"shape":"NotFoundException"},
521
- {"shape":"LimitExceededException"},
522
- {"shape":"ServiceAccountException"}
523
- ]
524
- },
525
- "ListDevicePools":{
526
- "name":"ListDevicePools",
527
- "http":{
528
- "method":"POST",
529
- "requestUri":"/"
530
- },
531
- "input":{"shape":"ListDevicePoolsRequest"},
532
- "output":{"shape":"ListDevicePoolsResult"},
533
- "errors":[
534
- {"shape":"ArgumentException"},
535
- {"shape":"NotFoundException"},
536
- {"shape":"LimitExceededException"},
537
- {"shape":"ServiceAccountException"}
538
- ]
539
- },
540
- "ListDevices":{
541
- "name":"ListDevices",
542
- "http":{
543
- "method":"POST",
544
- "requestUri":"/"
545
- },
546
- "input":{"shape":"ListDevicesRequest"},
547
- "output":{"shape":"ListDevicesResult"},
548
- "errors":[
549
- {"shape":"ArgumentException"},
550
- {"shape":"NotFoundException"},
551
- {"shape":"LimitExceededException"},
552
- {"shape":"ServiceAccountException"}
553
- ]
554
- },
555
- "ListInstanceProfiles":{
556
- "name":"ListInstanceProfiles",
557
- "http":{
558
- "method":"POST",
559
- "requestUri":"/"
560
- },
561
- "input":{"shape":"ListInstanceProfilesRequest"},
562
- "output":{"shape":"ListInstanceProfilesResult"},
563
- "errors":[
564
- {"shape":"ArgumentException"},
565
- {"shape":"NotFoundException"},
566
- {"shape":"LimitExceededException"},
567
- {"shape":"ServiceAccountException"}
568
- ]
569
- },
570
- "ListJobs":{
571
- "name":"ListJobs",
572
- "http":{
573
- "method":"POST",
574
- "requestUri":"/"
575
- },
576
- "input":{"shape":"ListJobsRequest"},
577
- "output":{"shape":"ListJobsResult"},
578
- "errors":[
579
- {"shape":"ArgumentException"},
580
- {"shape":"NotFoundException"},
581
- {"shape":"LimitExceededException"},
582
- {"shape":"ServiceAccountException"}
583
- ]
584
- },
585
- "ListNetworkProfiles":{
586
- "name":"ListNetworkProfiles",
587
- "http":{
588
- "method":"POST",
589
- "requestUri":"/"
590
- },
591
- "input":{"shape":"ListNetworkProfilesRequest"},
592
- "output":{"shape":"ListNetworkProfilesResult"},
593
- "errors":[
594
- {"shape":"ArgumentException"},
595
- {"shape":"NotFoundException"},
596
- {"shape":"LimitExceededException"},
597
- {"shape":"ServiceAccountException"}
598
- ]
599
- },
600
- "ListOfferingPromotions":{
601
- "name":"ListOfferingPromotions",
602
- "http":{
603
- "method":"POST",
604
- "requestUri":"/"
605
- },
606
- "input":{"shape":"ListOfferingPromotionsRequest"},
607
- "output":{"shape":"ListOfferingPromotionsResult"},
608
- "errors":[
609
- {"shape":"ArgumentException"},
610
- {"shape":"NotFoundException"},
611
- {"shape":"NotEligibleException"},
612
- {"shape":"LimitExceededException"},
613
- {"shape":"ServiceAccountException"}
614
- ]
615
- },
616
- "ListOfferingTransactions":{
617
- "name":"ListOfferingTransactions",
618
- "http":{
619
- "method":"POST",
620
- "requestUri":"/"
621
- },
622
- "input":{"shape":"ListOfferingTransactionsRequest"},
623
- "output":{"shape":"ListOfferingTransactionsResult"},
624
- "errors":[
625
- {"shape":"ArgumentException"},
626
- {"shape":"NotFoundException"},
627
- {"shape":"NotEligibleException"},
628
- {"shape":"LimitExceededException"},
629
- {"shape":"ServiceAccountException"}
630
- ]
631
- },
632
- "ListOfferings":{
633
- "name":"ListOfferings",
634
- "http":{
635
- "method":"POST",
636
- "requestUri":"/"
637
- },
638
- "input":{"shape":"ListOfferingsRequest"},
639
- "output":{"shape":"ListOfferingsResult"},
640
- "errors":[
641
- {"shape":"ArgumentException"},
642
- {"shape":"NotFoundException"},
643
- {"shape":"NotEligibleException"},
644
- {"shape":"LimitExceededException"},
645
- {"shape":"ServiceAccountException"}
646
- ]
647
- },
648
- "ListProjects":{
649
- "name":"ListProjects",
650
- "http":{
651
- "method":"POST",
652
- "requestUri":"/"
653
- },
654
- "input":{"shape":"ListProjectsRequest"},
655
- "output":{"shape":"ListProjectsResult"},
656
- "errors":[
657
- {"shape":"ArgumentException"},
658
- {"shape":"NotFoundException"},
659
- {"shape":"LimitExceededException"},
660
- {"shape":"ServiceAccountException"}
661
- ]
662
- },
663
- "ListRemoteAccessSessions":{
664
- "name":"ListRemoteAccessSessions",
665
- "http":{
666
- "method":"POST",
667
- "requestUri":"/"
668
- },
669
- "input":{"shape":"ListRemoteAccessSessionsRequest"},
670
- "output":{"shape":"ListRemoteAccessSessionsResult"},
671
- "errors":[
672
- {"shape":"ArgumentException"},
673
- {"shape":"NotFoundException"},
674
- {"shape":"LimitExceededException"},
675
- {"shape":"ServiceAccountException"}
676
- ]
677
- },
678
- "ListRuns":{
679
- "name":"ListRuns",
680
- "http":{
681
- "method":"POST",
682
- "requestUri":"/"
683
- },
684
- "input":{"shape":"ListRunsRequest"},
685
- "output":{"shape":"ListRunsResult"},
686
- "errors":[
687
- {"shape":"ArgumentException"},
688
- {"shape":"NotFoundException"},
689
- {"shape":"LimitExceededException"},
690
- {"shape":"ServiceAccountException"}
691
- ]
692
- },
693
- "ListSamples":{
694
- "name":"ListSamples",
695
- "http":{
696
- "method":"POST",
697
- "requestUri":"/"
698
- },
699
- "input":{"shape":"ListSamplesRequest"},
700
- "output":{"shape":"ListSamplesResult"},
701
- "errors":[
702
- {"shape":"ArgumentException"},
703
- {"shape":"NotFoundException"},
704
- {"shape":"LimitExceededException"},
705
- {"shape":"ServiceAccountException"}
706
- ]
707
- },
708
- "ListSuites":{
709
- "name":"ListSuites",
710
- "http":{
711
- "method":"POST",
712
- "requestUri":"/"
713
- },
714
- "input":{"shape":"ListSuitesRequest"},
715
- "output":{"shape":"ListSuitesResult"},
716
- "errors":[
717
- {"shape":"ArgumentException"},
718
- {"shape":"NotFoundException"},
719
- {"shape":"LimitExceededException"},
720
- {"shape":"ServiceAccountException"}
721
- ]
722
- },
723
- "ListTagsForResource":{
724
- "name":"ListTagsForResource",
725
- "http":{
726
- "method":"POST",
727
- "requestUri":"/"
728
- },
729
- "input":{"shape":"ListTagsForResourceRequest"},
730
- "output":{"shape":"ListTagsForResourceResponse"},
731
- "errors":[
732
- {"shape":"NotFoundException"},
733
- {"shape":"TagOperationException"}
734
- ]
735
- },
736
- "ListTests":{
737
- "name":"ListTests",
738
- "http":{
739
- "method":"POST",
740
- "requestUri":"/"
741
- },
742
- "input":{"shape":"ListTestsRequest"},
743
- "output":{"shape":"ListTestsResult"},
744
- "errors":[
745
- {"shape":"ArgumentException"},
746
- {"shape":"NotFoundException"},
747
- {"shape":"LimitExceededException"},
748
- {"shape":"ServiceAccountException"}
749
- ]
750
- },
751
- "ListUniqueProblems":{
752
- "name":"ListUniqueProblems",
753
- "http":{
754
- "method":"POST",
755
- "requestUri":"/"
756
- },
757
- "input":{"shape":"ListUniqueProblemsRequest"},
758
- "output":{"shape":"ListUniqueProblemsResult"},
759
- "errors":[
760
- {"shape":"ArgumentException"},
761
- {"shape":"NotFoundException"},
762
- {"shape":"LimitExceededException"},
763
- {"shape":"ServiceAccountException"}
764
- ]
765
- },
766
- "ListUploads":{
767
- "name":"ListUploads",
768
- "http":{
769
- "method":"POST",
770
- "requestUri":"/"
771
- },
772
- "input":{"shape":"ListUploadsRequest"},
773
- "output":{"shape":"ListUploadsResult"},
774
- "errors":[
775
- {"shape":"ArgumentException"},
776
- {"shape":"NotFoundException"},
777
- {"shape":"LimitExceededException"},
778
- {"shape":"ServiceAccountException"}
779
- ]
780
- },
781
- "ListVPCEConfigurations":{
782
- "name":"ListVPCEConfigurations",
783
- "http":{
784
- "method":"POST",
785
- "requestUri":"/"
786
- },
787
- "input":{"shape":"ListVPCEConfigurationsRequest"},
788
- "output":{"shape":"ListVPCEConfigurationsResult"},
789
- "errors":[
790
- {"shape":"ArgumentException"},
791
- {"shape":"ServiceAccountException"}
792
- ]
793
- },
794
- "PurchaseOffering":{
795
- "name":"PurchaseOffering",
796
- "http":{
797
- "method":"POST",
798
- "requestUri":"/"
799
- },
800
- "input":{"shape":"PurchaseOfferingRequest"},
801
- "output":{"shape":"PurchaseOfferingResult"},
802
- "errors":[
803
- {"shape":"ArgumentException"},
804
- {"shape":"NotFoundException"},
805
- {"shape":"NotEligibleException"},
806
- {"shape":"LimitExceededException"},
807
- {"shape":"ServiceAccountException"}
808
- ]
809
- },
810
- "RenewOffering":{
811
- "name":"RenewOffering",
812
- "http":{
813
- "method":"POST",
814
- "requestUri":"/"
815
- },
816
- "input":{"shape":"RenewOfferingRequest"},
817
- "output":{"shape":"RenewOfferingResult"},
818
- "errors":[
819
- {"shape":"ArgumentException"},
820
- {"shape":"NotFoundException"},
821
- {"shape":"NotEligibleException"},
822
- {"shape":"LimitExceededException"},
823
- {"shape":"ServiceAccountException"}
824
- ]
825
- },
826
- "ScheduleRun":{
827
- "name":"ScheduleRun",
828
- "http":{
829
- "method":"POST",
830
- "requestUri":"/"
831
- },
832
- "input":{"shape":"ScheduleRunRequest"},
833
- "output":{"shape":"ScheduleRunResult"},
834
- "errors":[
835
- {"shape":"ArgumentException"},
836
- {"shape":"NotFoundException"},
837
- {"shape":"LimitExceededException"},
838
- {"shape":"IdempotencyException"},
839
- {"shape":"ServiceAccountException"}
840
- ]
841
- },
842
- "StopJob":{
843
- "name":"StopJob",
844
- "http":{
845
- "method":"POST",
846
- "requestUri":"/"
847
- },
848
- "input":{"shape":"StopJobRequest"},
849
- "output":{"shape":"StopJobResult"},
850
- "errors":[
851
- {"shape":"ArgumentException"},
852
- {"shape":"NotFoundException"},
853
- {"shape":"LimitExceededException"},
854
- {"shape":"ServiceAccountException"}
855
- ]
856
- },
857
- "StopRemoteAccessSession":{
858
- "name":"StopRemoteAccessSession",
859
- "http":{
860
- "method":"POST",
861
- "requestUri":"/"
862
- },
863
- "input":{"shape":"StopRemoteAccessSessionRequest"},
864
- "output":{"shape":"StopRemoteAccessSessionResult"},
865
- "errors":[
866
- {"shape":"ArgumentException"},
867
- {"shape":"NotFoundException"},
868
- {"shape":"LimitExceededException"},
869
- {"shape":"ServiceAccountException"}
870
- ]
871
- },
872
- "StopRun":{
873
- "name":"StopRun",
874
- "http":{
875
- "method":"POST",
876
- "requestUri":"/"
877
- },
878
- "input":{"shape":"StopRunRequest"},
879
- "output":{"shape":"StopRunResult"},
880
- "errors":[
881
- {"shape":"ArgumentException"},
882
- {"shape":"NotFoundException"},
883
- {"shape":"LimitExceededException"},
884
- {"shape":"ServiceAccountException"}
885
- ]
886
- },
887
- "TagResource":{
888
- "name":"TagResource",
889
- "http":{
890
- "method":"POST",
891
- "requestUri":"/"
892
- },
893
- "input":{"shape":"TagResourceRequest"},
894
- "output":{"shape":"TagResourceResponse"},
895
- "errors":[
896
- {"shape":"NotFoundException"},
897
- {"shape":"TagOperationException"},
898
- {"shape":"TooManyTagsException"},
899
- {"shape":"TagPolicyException"}
900
- ]
901
- },
902
- "UntagResource":{
903
- "name":"UntagResource",
904
- "http":{
905
- "method":"POST",
906
- "requestUri":"/"
907
- },
908
- "input":{"shape":"UntagResourceRequest"},
909
- "output":{"shape":"UntagResourceResponse"},
910
- "errors":[
911
- {"shape":"NotFoundException"},
912
- {"shape":"TagOperationException"}
913
- ]
914
- },
915
- "UpdateDeviceInstance":{
916
- "name":"UpdateDeviceInstance",
917
- "http":{
918
- "method":"POST",
919
- "requestUri":"/"
920
- },
921
- "input":{"shape":"UpdateDeviceInstanceRequest"},
922
- "output":{"shape":"UpdateDeviceInstanceResult"},
923
- "errors":[
924
- {"shape":"ArgumentException"},
925
- {"shape":"NotFoundException"},
926
- {"shape":"LimitExceededException"},
927
- {"shape":"ServiceAccountException"}
928
- ]
929
- },
930
- "UpdateDevicePool":{
931
- "name":"UpdateDevicePool",
932
- "http":{
933
- "method":"POST",
934
- "requestUri":"/"
935
- },
936
- "input":{"shape":"UpdateDevicePoolRequest"},
937
- "output":{"shape":"UpdateDevicePoolResult"},
938
- "errors":[
939
- {"shape":"ArgumentException"},
940
- {"shape":"NotFoundException"},
941
- {"shape":"LimitExceededException"},
942
- {"shape":"ServiceAccountException"}
943
- ]
944
- },
945
- "UpdateInstanceProfile":{
946
- "name":"UpdateInstanceProfile",
947
- "http":{
948
- "method":"POST",
949
- "requestUri":"/"
950
- },
951
- "input":{"shape":"UpdateInstanceProfileRequest"},
952
- "output":{"shape":"UpdateInstanceProfileResult"},
953
- "errors":[
954
- {"shape":"ArgumentException"},
955
- {"shape":"NotFoundException"},
956
- {"shape":"LimitExceededException"},
957
- {"shape":"ServiceAccountException"}
958
- ]
959
- },
960
- "UpdateNetworkProfile":{
961
- "name":"UpdateNetworkProfile",
962
- "http":{
963
- "method":"POST",
964
- "requestUri":"/"
965
- },
966
- "input":{"shape":"UpdateNetworkProfileRequest"},
967
- "output":{"shape":"UpdateNetworkProfileResult"},
968
- "errors":[
969
- {"shape":"ArgumentException"},
970
- {"shape":"NotFoundException"},
971
- {"shape":"LimitExceededException"},
972
- {"shape":"ServiceAccountException"}
973
- ]
974
- },
975
- "UpdateProject":{
976
- "name":"UpdateProject",
977
- "http":{
978
- "method":"POST",
979
- "requestUri":"/"
980
- },
981
- "input":{"shape":"UpdateProjectRequest"},
982
- "output":{"shape":"UpdateProjectResult"},
983
- "errors":[
984
- {"shape":"ArgumentException"},
985
- {"shape":"NotFoundException"},
986
- {"shape":"LimitExceededException"},
987
- {"shape":"ServiceAccountException"}
988
- ]
989
- },
990
- "UpdateUpload":{
991
- "name":"UpdateUpload",
992
- "http":{
993
- "method":"POST",
994
- "requestUri":"/"
995
- },
996
- "input":{"shape":"UpdateUploadRequest"},
997
- "output":{"shape":"UpdateUploadResult"},
998
- "errors":[
999
- {"shape":"ArgumentException"},
1000
- {"shape":"NotFoundException"},
1001
- {"shape":"LimitExceededException"},
1002
- {"shape":"ServiceAccountException"}
1003
- ]
1004
- },
1005
- "UpdateVPCEConfiguration":{
1006
- "name":"UpdateVPCEConfiguration",
1007
- "http":{
1008
- "method":"POST",
1009
- "requestUri":"/"
1010
- },
1011
- "input":{"shape":"UpdateVPCEConfigurationRequest"},
1012
- "output":{"shape":"UpdateVPCEConfigurationResult"},
1013
- "errors":[
1014
- {"shape":"ArgumentException"},
1015
- {"shape":"NotFoundException"},
1016
- {"shape":"ServiceAccountException"},
1017
- {"shape":"InvalidOperationException"}
1018
- ]
1019
- }
1020
- },
1021
- "shapes":{
1022
- "AWSAccountNumber":{
1023
- "type":"string",
1024
- "max":16,
1025
- "min":2
1026
- },
1027
- "AccountSettings":{
1028
- "type":"structure",
1029
- "members":{
1030
- "awsAccountNumber":{"shape":"AWSAccountNumber"},
1031
- "unmeteredDevices":{"shape":"PurchasedDevicesMap"},
1032
- "unmeteredRemoteAccessDevices":{"shape":"PurchasedDevicesMap"},
1033
- "maxJobTimeoutMinutes":{"shape":"JobTimeoutMinutes"},
1034
- "trialMinutes":{"shape":"TrialMinutes"},
1035
- "maxSlots":{"shape":"MaxSlotMap"},
1036
- "defaultJobTimeoutMinutes":{"shape":"JobTimeoutMinutes"},
1037
- "skipAppResign":{"shape":"SkipAppResign"}
1038
- }
1039
- },
1040
- "AccountsCleanup":{"type":"boolean"},
1041
- "AmazonResourceName":{
1042
- "type":"string",
1043
- "max":1011,
1044
- "min":32
1045
- },
1046
- "AmazonResourceNames":{
1047
- "type":"list",
1048
- "member":{"shape":"AmazonResourceName"}
1049
- },
1050
- "AndroidPaths":{
1051
- "type":"list",
1052
- "member":{"shape":"String"}
1053
- },
1054
- "AppPackagesCleanup":{"type":"boolean"},
1055
- "ArgumentException":{
1056
- "type":"structure",
1057
- "members":{
1058
- "message":{"shape":"Message"}
1059
- },
1060
- "exception":true
1061
- },
1062
- "Artifact":{
1063
- "type":"structure",
1064
- "members":{
1065
- "arn":{"shape":"AmazonResourceName"},
1066
- "name":{"shape":"Name"},
1067
- "type":{"shape":"ArtifactType"},
1068
- "extension":{"shape":"String"},
1069
- "url":{"shape":"URL"}
1070
- }
1071
- },
1072
- "ArtifactCategory":{
1073
- "type":"string",
1074
- "enum":[
1075
- "SCREENSHOT",
1076
- "FILE",
1077
- "LOG"
1078
- ]
1079
- },
1080
- "ArtifactType":{
1081
- "type":"string",
1082
- "enum":[
1083
- "UNKNOWN",
1084
- "SCREENSHOT",
1085
- "DEVICE_LOG",
1086
- "MESSAGE_LOG",
1087
- "VIDEO_LOG",
1088
- "RESULT_LOG",
1089
- "SERVICE_LOG",
1090
- "WEBKIT_LOG",
1091
- "INSTRUMENTATION_OUTPUT",
1092
- "EXERCISER_MONKEY_OUTPUT",
1093
- "CALABASH_JSON_OUTPUT",
1094
- "CALABASH_PRETTY_OUTPUT",
1095
- "CALABASH_STANDARD_OUTPUT",
1096
- "CALABASH_JAVA_XML_OUTPUT",
1097
- "AUTOMATION_OUTPUT",
1098
- "APPIUM_SERVER_OUTPUT",
1099
- "APPIUM_JAVA_OUTPUT",
1100
- "APPIUM_JAVA_XML_OUTPUT",
1101
- "APPIUM_PYTHON_OUTPUT",
1102
- "APPIUM_PYTHON_XML_OUTPUT",
1103
- "EXPLORER_EVENT_LOG",
1104
- "EXPLORER_SUMMARY_LOG",
1105
- "APPLICATION_CRASH_REPORT",
1106
- "XCTEST_LOG",
1107
- "VIDEO",
1108
- "CUSTOMER_ARTIFACT",
1109
- "CUSTOMER_ARTIFACT_LOG",
1110
- "TESTSPEC_OUTPUT"
1111
- ]
1112
- },
1113
- "Artifacts":{
1114
- "type":"list",
1115
- "member":{"shape":"Artifact"}
1116
- },
1117
- "BillingMethod":{
1118
- "type":"string",
1119
- "enum":[
1120
- "METERED",
1121
- "UNMETERED"
1122
- ]
1123
- },
1124
- "Boolean":{"type":"boolean"},
1125
- "CPU":{
1126
- "type":"structure",
1127
- "members":{
1128
- "frequency":{"shape":"String"},
1129
- "architecture":{"shape":"String"},
1130
- "clock":{"shape":"Double"}
1131
- }
1132
- },
1133
- "ClientId":{
1134
- "type":"string",
1135
- "max":64,
1136
- "min":0
1137
- },
1138
- "ContentType":{
1139
- "type":"string",
1140
- "max":64,
1141
- "min":0
1142
- },
1143
- "Counters":{
1144
- "type":"structure",
1145
- "members":{
1146
- "total":{"shape":"Integer"},
1147
- "passed":{"shape":"Integer"},
1148
- "failed":{"shape":"Integer"},
1149
- "warned":{"shape":"Integer"},
1150
- "errored":{"shape":"Integer"},
1151
- "stopped":{"shape":"Integer"},
1152
- "skipped":{"shape":"Integer"}
1153
- }
1154
- },
1155
- "CreateDevicePoolRequest":{
1156
- "type":"structure",
1157
- "required":[
1158
- "projectArn",
1159
- "name",
1160
- "rules"
1161
- ],
1162
- "members":{
1163
- "projectArn":{"shape":"AmazonResourceName"},
1164
- "name":{"shape":"Name"},
1165
- "description":{"shape":"Message"},
1166
- "rules":{"shape":"Rules"},
1167
- "maxDevices":{"shape":"Integer"}
1168
- }
1169
- },
1170
- "CreateDevicePoolResult":{
1171
- "type":"structure",
1172
- "members":{
1173
- "devicePool":{"shape":"DevicePool"}
1174
- }
1175
- },
1176
- "CreateInstanceProfileRequest":{
1177
- "type":"structure",
1178
- "required":["name"],
1179
- "members":{
1180
- "name":{"shape":"Name"},
1181
- "description":{"shape":"Message"},
1182
- "packageCleanup":{"shape":"Boolean"},
1183
- "excludeAppPackagesFromCleanup":{"shape":"PackageIds"},
1184
- "rebootAfterUse":{"shape":"Boolean"}
1185
- }
1186
- },
1187
- "CreateInstanceProfileResult":{
1188
- "type":"structure",
1189
- "members":{
1190
- "instanceProfile":{"shape":"InstanceProfile"}
1191
- }
1192
- },
1193
- "CreateNetworkProfileRequest":{
1194
- "type":"structure",
1195
- "required":[
1196
- "projectArn",
1197
- "name"
1198
- ],
1199
- "members":{
1200
- "projectArn":{"shape":"AmazonResourceName"},
1201
- "name":{"shape":"Name"},
1202
- "description":{"shape":"Message"},
1203
- "type":{"shape":"NetworkProfileType"},
1204
- "uplinkBandwidthBits":{"shape":"Long"},
1205
- "downlinkBandwidthBits":{"shape":"Long"},
1206
- "uplinkDelayMs":{"shape":"Long"},
1207
- "downlinkDelayMs":{"shape":"Long"},
1208
- "uplinkJitterMs":{"shape":"Long"},
1209
- "downlinkJitterMs":{"shape":"Long"},
1210
- "uplinkLossPercent":{"shape":"PercentInteger"},
1211
- "downlinkLossPercent":{"shape":"PercentInteger"}
1212
- }
1213
- },
1214
- "CreateNetworkProfileResult":{
1215
- "type":"structure",
1216
- "members":{
1217
- "networkProfile":{"shape":"NetworkProfile"}
1218
- }
1219
- },
1220
- "CreateProjectRequest":{
1221
- "type":"structure",
1222
- "required":["name"],
1223
- "members":{
1224
- "name":{"shape":"Name"},
1225
- "defaultJobTimeoutMinutes":{"shape":"JobTimeoutMinutes"}
1226
- }
1227
- },
1228
- "CreateProjectResult":{
1229
- "type":"structure",
1230
- "members":{
1231
- "project":{"shape":"Project"}
1232
- }
1233
- },
1234
- "CreateRemoteAccessSessionConfiguration":{
1235
- "type":"structure",
1236
- "members":{
1237
- "billingMethod":{"shape":"BillingMethod"},
1238
- "vpceConfigurationArns":{"shape":"AmazonResourceNames"}
1239
- }
1240
- },
1241
- "CreateRemoteAccessSessionRequest":{
1242
- "type":"structure",
1243
- "required":[
1244
- "projectArn",
1245
- "deviceArn"
1246
- ],
1247
- "members":{
1248
- "projectArn":{"shape":"AmazonResourceName"},
1249
- "deviceArn":{"shape":"AmazonResourceName"},
1250
- "instanceArn":{"shape":"AmazonResourceName"},
1251
- "sshPublicKey":{"shape":"SshPublicKey"},
1252
- "remoteDebugEnabled":{"shape":"Boolean"},
1253
- "remoteRecordEnabled":{"shape":"Boolean"},
1254
- "remoteRecordAppArn":{"shape":"AmazonResourceName"},
1255
- "name":{"shape":"Name"},
1256
- "clientId":{"shape":"ClientId"},
1257
- "configuration":{"shape":"CreateRemoteAccessSessionConfiguration"},
1258
- "interactionMode":{"shape":"InteractionMode"},
1259
- "skipAppResign":{"shape":"Boolean"}
1260
- }
1261
- },
1262
- "CreateRemoteAccessSessionResult":{
1263
- "type":"structure",
1264
- "members":{
1265
- "remoteAccessSession":{"shape":"RemoteAccessSession"}
1266
- }
1267
- },
1268
- "CreateUploadRequest":{
1269
- "type":"structure",
1270
- "required":[
1271
- "projectArn",
1272
- "name",
1273
- "type"
1274
- ],
1275
- "members":{
1276
- "projectArn":{"shape":"AmazonResourceName"},
1277
- "name":{"shape":"Name"},
1278
- "type":{"shape":"UploadType"},
1279
- "contentType":{"shape":"ContentType"}
1280
- }
1281
- },
1282
- "CreateUploadResult":{
1283
- "type":"structure",
1284
- "members":{
1285
- "upload":{"shape":"Upload"}
1286
- }
1287
- },
1288
- "CreateVPCEConfigurationRequest":{
1289
- "type":"structure",
1290
- "required":[
1291
- "vpceConfigurationName",
1292
- "vpceServiceName",
1293
- "serviceDnsName"
1294
- ],
1295
- "members":{
1296
- "vpceConfigurationName":{"shape":"VPCEConfigurationName"},
1297
- "vpceServiceName":{"shape":"VPCEServiceName"},
1298
- "serviceDnsName":{"shape":"ServiceDnsName"},
1299
- "vpceConfigurationDescription":{"shape":"VPCEConfigurationDescription"}
1300
- }
1301
- },
1302
- "CreateVPCEConfigurationResult":{
1303
- "type":"structure",
1304
- "members":{
1305
- "vpceConfiguration":{"shape":"VPCEConfiguration"}
1306
- }
1307
- },
1308
- "CurrencyCode":{
1309
- "type":"string",
1310
- "enum":["USD"]
1311
- },
1312
- "CustomerArtifactPaths":{
1313
- "type":"structure",
1314
- "members":{
1315
- "iosPaths":{"shape":"IosPaths"},
1316
- "androidPaths":{"shape":"AndroidPaths"},
1317
- "deviceHostPaths":{"shape":"DeviceHostPaths"}
1318
- }
1319
- },
1320
- "DateTime":{"type":"timestamp"},
1321
- "DeleteDevicePoolRequest":{
1322
- "type":"structure",
1323
- "required":["arn"],
1324
- "members":{
1325
- "arn":{"shape":"AmazonResourceName"}
1326
- }
1327
- },
1328
- "DeleteDevicePoolResult":{
1329
- "type":"structure",
1330
- "members":{
1331
- }
1332
- },
1333
- "DeleteInstanceProfileRequest":{
1334
- "type":"structure",
1335
- "required":["arn"],
1336
- "members":{
1337
- "arn":{"shape":"AmazonResourceName"}
1338
- }
1339
- },
1340
- "DeleteInstanceProfileResult":{
1341
- "type":"structure",
1342
- "members":{
1343
- }
1344
- },
1345
- "DeleteNetworkProfileRequest":{
1346
- "type":"structure",
1347
- "required":["arn"],
1348
- "members":{
1349
- "arn":{"shape":"AmazonResourceName"}
1350
- }
1351
- },
1352
- "DeleteNetworkProfileResult":{
1353
- "type":"structure",
1354
- "members":{
1355
- }
1356
- },
1357
- "DeleteProjectRequest":{
1358
- "type":"structure",
1359
- "required":["arn"],
1360
- "members":{
1361
- "arn":{"shape":"AmazonResourceName"}
1362
- }
1363
- },
1364
- "DeleteProjectResult":{
1365
- "type":"structure",
1366
- "members":{
1367
- }
1368
- },
1369
- "DeleteRemoteAccessSessionRequest":{
1370
- "type":"structure",
1371
- "required":["arn"],
1372
- "members":{
1373
- "arn":{"shape":"AmazonResourceName"}
1374
- }
1375
- },
1376
- "DeleteRemoteAccessSessionResult":{
1377
- "type":"structure",
1378
- "members":{
1379
- }
1380
- },
1381
- "DeleteRunRequest":{
1382
- "type":"structure",
1383
- "required":["arn"],
1384
- "members":{
1385
- "arn":{"shape":"AmazonResourceName"}
1386
- }
1387
- },
1388
- "DeleteRunResult":{
1389
- "type":"structure",
1390
- "members":{
1391
- }
1392
- },
1393
- "DeleteUploadRequest":{
1394
- "type":"structure",
1395
- "required":["arn"],
1396
- "members":{
1397
- "arn":{"shape":"AmazonResourceName"}
1398
- }
1399
- },
1400
- "DeleteUploadResult":{
1401
- "type":"structure",
1402
- "members":{
1403
- }
1404
- },
1405
- "DeleteVPCEConfigurationRequest":{
1406
- "type":"structure",
1407
- "required":["arn"],
1408
- "members":{
1409
- "arn":{"shape":"AmazonResourceName"}
1410
- }
1411
- },
1412
- "DeleteVPCEConfigurationResult":{
1413
- "type":"structure",
1414
- "members":{
1415
- }
1416
- },
1417
- "Device":{
1418
- "type":"structure",
1419
- "members":{
1420
- "arn":{"shape":"AmazonResourceName"},
1421
- "name":{"shape":"Name"},
1422
- "manufacturer":{"shape":"String"},
1423
- "model":{"shape":"String"},
1424
- "modelId":{"shape":"String"},
1425
- "formFactor":{"shape":"DeviceFormFactor"},
1426
- "platform":{"shape":"DevicePlatform"},
1427
- "os":{"shape":"String"},
1428
- "cpu":{"shape":"CPU"},
1429
- "resolution":{"shape":"Resolution"},
1430
- "heapSize":{"shape":"Long"},
1431
- "memory":{"shape":"Long"},
1432
- "image":{"shape":"String"},
1433
- "carrier":{"shape":"String"},
1434
- "radio":{"shape":"String"},
1435
- "remoteAccessEnabled":{"shape":"Boolean"},
1436
- "remoteDebugEnabled":{"shape":"Boolean"},
1437
- "fleetType":{"shape":"String"},
1438
- "fleetName":{"shape":"String"},
1439
- "instances":{"shape":"DeviceInstances"},
1440
- "availability":{"shape":"DeviceAvailability"}
1441
- }
1442
- },
1443
- "DeviceAttribute":{
1444
- "type":"string",
1445
- "enum":[
1446
- "ARN",
1447
- "PLATFORM",
1448
- "FORM_FACTOR",
1449
- "MANUFACTURER",
1450
- "REMOTE_ACCESS_ENABLED",
1451
- "REMOTE_DEBUG_ENABLED",
1452
- "APPIUM_VERSION",
1453
- "INSTANCE_ARN",
1454
- "INSTANCE_LABELS",
1455
- "FLEET_TYPE",
1456
- "OS_VERSION",
1457
- "MODEL",
1458
- "AVAILABILITY"
1459
- ]
1460
- },
1461
- "DeviceAvailability":{
1462
- "type":"string",
1463
- "enum":[
1464
- "TEMPORARY_NOT_AVAILABLE",
1465
- "BUSY",
1466
- "AVAILABLE",
1467
- "HIGHLY_AVAILABLE"
1468
- ]
1469
- },
1470
- "DeviceFilter":{
1471
- "type":"structure",
1472
- "members":{
1473
- "attribute":{"shape":"DeviceFilterAttribute"},
1474
- "operator":{"shape":"RuleOperator"},
1475
- "values":{"shape":"DeviceFilterValues"}
1476
- }
1477
- },
1478
- "DeviceFilterAttribute":{
1479
- "type":"string",
1480
- "enum":[
1481
- "ARN",
1482
- "PLATFORM",
1483
- "OS_VERSION",
1484
- "MODEL",
1485
- "AVAILABILITY",
1486
- "FORM_FACTOR",
1487
- "MANUFACTURER",
1488
- "REMOTE_ACCESS_ENABLED",
1489
- "REMOTE_DEBUG_ENABLED",
1490
- "INSTANCE_ARN",
1491
- "INSTANCE_LABELS",
1492
- "FLEET_TYPE"
1493
- ]
1494
- },
1495
- "DeviceFilterValues":{
1496
- "type":"list",
1497
- "member":{"shape":"String"}
1498
- },
1499
- "DeviceFilters":{
1500
- "type":"list",
1501
- "member":{"shape":"DeviceFilter"}
1502
- },
1503
- "DeviceFormFactor":{
1504
- "type":"string",
1505
- "enum":[
1506
- "PHONE",
1507
- "TABLET"
1508
- ]
1509
- },
1510
- "DeviceHostPaths":{
1511
- "type":"list",
1512
- "member":{"shape":"String"}
1513
- },
1514
- "DeviceInstance":{
1515
- "type":"structure",
1516
- "members":{
1517
- "arn":{"shape":"AmazonResourceName"},
1518
- "deviceArn":{"shape":"AmazonResourceName"},
1519
- "labels":{"shape":"InstanceLabels"},
1520
- "status":{"shape":"InstanceStatus"},
1521
- "udid":{"shape":"String"},
1522
- "instanceProfile":{"shape":"InstanceProfile"}
1523
- }
1524
- },
1525
- "DeviceInstances":{
1526
- "type":"list",
1527
- "member":{"shape":"DeviceInstance"}
1528
- },
1529
- "DeviceMinutes":{
1530
- "type":"structure",
1531
- "members":{
1532
- "total":{"shape":"Double"},
1533
- "metered":{"shape":"Double"},
1534
- "unmetered":{"shape":"Double"}
1535
- }
1536
- },
1537
- "DevicePlatform":{
1538
- "type":"string",
1539
- "enum":[
1540
- "ANDROID",
1541
- "IOS"
1542
- ]
1543
- },
1544
- "DevicePool":{
1545
- "type":"structure",
1546
- "members":{
1547
- "arn":{"shape":"AmazonResourceName"},
1548
- "name":{"shape":"Name"},
1549
- "description":{"shape":"Message"},
1550
- "type":{"shape":"DevicePoolType"},
1551
- "rules":{"shape":"Rules"},
1552
- "maxDevices":{"shape":"Integer"}
1553
- }
1554
- },
1555
- "DevicePoolCompatibilityResult":{
1556
- "type":"structure",
1557
- "members":{
1558
- "device":{"shape":"Device"},
1559
- "compatible":{"shape":"Boolean"},
1560
- "incompatibilityMessages":{"shape":"IncompatibilityMessages"}
1561
- }
1562
- },
1563
- "DevicePoolCompatibilityResults":{
1564
- "type":"list",
1565
- "member":{"shape":"DevicePoolCompatibilityResult"}
1566
- },
1567
- "DevicePoolType":{
1568
- "type":"string",
1569
- "enum":[
1570
- "CURATED",
1571
- "PRIVATE"
1572
- ]
1573
- },
1574
- "DevicePools":{
1575
- "type":"list",
1576
- "member":{"shape":"DevicePool"}
1577
- },
1578
- "DeviceSelectionConfiguration":{
1579
- "type":"structure",
1580
- "required":[
1581
- "filters",
1582
- "maxDevices"
1583
- ],
1584
- "members":{
1585
- "filters":{"shape":"DeviceFilters"},
1586
- "maxDevices":{"shape":"Integer"}
1587
- }
1588
- },
1589
- "DeviceSelectionResult":{
1590
- "type":"structure",
1591
- "members":{
1592
- "filters":{"shape":"DeviceFilters"},
1593
- "matchedDevicesCount":{"shape":"Integer"},
1594
- "maxDevices":{"shape":"Integer"}
1595
- }
1596
- },
1597
- "Devices":{
1598
- "type":"list",
1599
- "member":{"shape":"Device"}
1600
- },
1601
- "Double":{"type":"double"},
1602
- "ExceptionMessage":{"type":"string"},
1603
- "ExecutionConfiguration":{
1604
- "type":"structure",
1605
- "members":{
1606
- "jobTimeoutMinutes":{"shape":"JobTimeoutMinutes"},
1607
- "accountsCleanup":{"shape":"AccountsCleanup"},
1608
- "appPackagesCleanup":{"shape":"AppPackagesCleanup"},
1609
- "videoCapture":{"shape":"VideoCapture"},
1610
- "skipAppResign":{"shape":"SkipAppResign"}
1611
- }
1612
- },
1613
- "ExecutionResult":{
1614
- "type":"string",
1615
- "enum":[
1616
- "PENDING",
1617
- "PASSED",
1618
- "WARNED",
1619
- "FAILED",
1620
- "SKIPPED",
1621
- "ERRORED",
1622
- "STOPPED"
1623
- ]
1624
- },
1625
- "ExecutionResultCode":{
1626
- "type":"string",
1627
- "enum":[
1628
- "PARSING_FAILED",
1629
- "VPC_ENDPOINT_SETUP_FAILED"
1630
- ]
1631
- },
1632
- "ExecutionStatus":{
1633
- "type":"string",
1634
- "enum":[
1635
- "PENDING",
1636
- "PENDING_CONCURRENCY",
1637
- "PENDING_DEVICE",
1638
- "PROCESSING",
1639
- "SCHEDULING",
1640
- "PREPARING",
1641
- "RUNNING",
1642
- "COMPLETED",
1643
- "STOPPING"
1644
- ]
1645
- },
1646
- "Filter":{
1647
- "type":"string",
1648
- "max":8192,
1649
- "min":0
1650
- },
1651
- "GetAccountSettingsRequest":{
1652
- "type":"structure",
1653
- "members":{
1654
- }
1655
- },
1656
- "GetAccountSettingsResult":{
1657
- "type":"structure",
1658
- "members":{
1659
- "accountSettings":{"shape":"AccountSettings"}
1660
- }
1661
- },
1662
- "GetDeviceInstanceRequest":{
1663
- "type":"structure",
1664
- "required":["arn"],
1665
- "members":{
1666
- "arn":{"shape":"AmazonResourceName"}
1667
- }
1668
- },
1669
- "GetDeviceInstanceResult":{
1670
- "type":"structure",
1671
- "members":{
1672
- "deviceInstance":{"shape":"DeviceInstance"}
1673
- }
1674
- },
1675
- "GetDevicePoolCompatibilityRequest":{
1676
- "type":"structure",
1677
- "required":["devicePoolArn"],
1678
- "members":{
1679
- "devicePoolArn":{"shape":"AmazonResourceName"},
1680
- "appArn":{"shape":"AmazonResourceName"},
1681
- "testType":{"shape":"TestType"},
1682
- "test":{"shape":"ScheduleRunTest"},
1683
- "configuration":{"shape":"ScheduleRunConfiguration"}
1684
- }
1685
- },
1686
- "GetDevicePoolCompatibilityResult":{
1687
- "type":"structure",
1688
- "members":{
1689
- "compatibleDevices":{"shape":"DevicePoolCompatibilityResults"},
1690
- "incompatibleDevices":{"shape":"DevicePoolCompatibilityResults"}
1691
- }
1692
- },
1693
- "GetDevicePoolRequest":{
1694
- "type":"structure",
1695
- "required":["arn"],
1696
- "members":{
1697
- "arn":{"shape":"AmazonResourceName"}
1698
- }
1699
- },
1700
- "GetDevicePoolResult":{
1701
- "type":"structure",
1702
- "members":{
1703
- "devicePool":{"shape":"DevicePool"}
1704
- }
1705
- },
1706
- "GetDeviceRequest":{
1707
- "type":"structure",
1708
- "required":["arn"],
1709
- "members":{
1710
- "arn":{"shape":"AmazonResourceName"}
1711
- }
1712
- },
1713
- "GetDeviceResult":{
1714
- "type":"structure",
1715
- "members":{
1716
- "device":{"shape":"Device"}
1717
- }
1718
- },
1719
- "GetInstanceProfileRequest":{
1720
- "type":"structure",
1721
- "required":["arn"],
1722
- "members":{
1723
- "arn":{"shape":"AmazonResourceName"}
1724
- }
1725
- },
1726
- "GetInstanceProfileResult":{
1727
- "type":"structure",
1728
- "members":{
1729
- "instanceProfile":{"shape":"InstanceProfile"}
1730
- }
1731
- },
1732
- "GetJobRequest":{
1733
- "type":"structure",
1734
- "required":["arn"],
1735
- "members":{
1736
- "arn":{"shape":"AmazonResourceName"}
1737
- }
1738
- },
1739
- "GetJobResult":{
1740
- "type":"structure",
1741
- "members":{
1742
- "job":{"shape":"Job"}
1743
- }
1744
- },
1745
- "GetNetworkProfileRequest":{
1746
- "type":"structure",
1747
- "required":["arn"],
1748
- "members":{
1749
- "arn":{"shape":"AmazonResourceName"}
1750
- }
1751
- },
1752
- "GetNetworkProfileResult":{
1753
- "type":"structure",
1754
- "members":{
1755
- "networkProfile":{"shape":"NetworkProfile"}
1756
- }
1757
- },
1758
- "GetOfferingStatusRequest":{
1759
- "type":"structure",
1760
- "members":{
1761
- "nextToken":{"shape":"PaginationToken"}
1762
- }
1763
- },
1764
- "GetOfferingStatusResult":{
1765
- "type":"structure",
1766
- "members":{
1767
- "current":{"shape":"OfferingStatusMap"},
1768
- "nextPeriod":{"shape":"OfferingStatusMap"},
1769
- "nextToken":{"shape":"PaginationToken"}
1770
- }
1771
- },
1772
- "GetProjectRequest":{
1773
- "type":"structure",
1774
- "required":["arn"],
1775
- "members":{
1776
- "arn":{"shape":"AmazonResourceName"}
1777
- }
1778
- },
1779
- "GetProjectResult":{
1780
- "type":"structure",
1781
- "members":{
1782
- "project":{"shape":"Project"}
1783
- }
1784
- },
1785
- "GetRemoteAccessSessionRequest":{
1786
- "type":"structure",
1787
- "required":["arn"],
1788
- "members":{
1789
- "arn":{"shape":"AmazonResourceName"}
1790
- }
1791
- },
1792
- "GetRemoteAccessSessionResult":{
1793
- "type":"structure",
1794
- "members":{
1795
- "remoteAccessSession":{"shape":"RemoteAccessSession"}
1796
- }
1797
- },
1798
- "GetRunRequest":{
1799
- "type":"structure",
1800
- "required":["arn"],
1801
- "members":{
1802
- "arn":{"shape":"AmazonResourceName"}
1803
- }
1804
- },
1805
- "GetRunResult":{
1806
- "type":"structure",
1807
- "members":{
1808
- "run":{"shape":"Run"}
1809
- }
1810
- },
1811
- "GetSuiteRequest":{
1812
- "type":"structure",
1813
- "required":["arn"],
1814
- "members":{
1815
- "arn":{"shape":"AmazonResourceName"}
1816
- }
1817
- },
1818
- "GetSuiteResult":{
1819
- "type":"structure",
1820
- "members":{
1821
- "suite":{"shape":"Suite"}
1822
- }
1823
- },
1824
- "GetTestRequest":{
1825
- "type":"structure",
1826
- "required":["arn"],
1827
- "members":{
1828
- "arn":{"shape":"AmazonResourceName"}
1829
- }
1830
- },
1831
- "GetTestResult":{
1832
- "type":"structure",
1833
- "members":{
1834
- "test":{"shape":"Test"}
1835
- }
1836
- },
1837
- "GetUploadRequest":{
1838
- "type":"structure",
1839
- "required":["arn"],
1840
- "members":{
1841
- "arn":{"shape":"AmazonResourceName"}
1842
- }
1843
- },
1844
- "GetUploadResult":{
1845
- "type":"structure",
1846
- "members":{
1847
- "upload":{"shape":"Upload"}
1848
- }
1849
- },
1850
- "GetVPCEConfigurationRequest":{
1851
- "type":"structure",
1852
- "required":["arn"],
1853
- "members":{
1854
- "arn":{"shape":"AmazonResourceName"}
1855
- }
1856
- },
1857
- "GetVPCEConfigurationResult":{
1858
- "type":"structure",
1859
- "members":{
1860
- "vpceConfiguration":{"shape":"VPCEConfiguration"}
1861
- }
1862
- },
1863
- "HostAddress":{
1864
- "type":"string",
1865
- "max":1024
1866
- },
1867
- "IdempotencyException":{
1868
- "type":"structure",
1869
- "members":{
1870
- "message":{"shape":"Message"}
1871
- },
1872
- "exception":true
1873
- },
1874
- "IncompatibilityMessage":{
1875
- "type":"structure",
1876
- "members":{
1877
- "message":{"shape":"Message"},
1878
- "type":{"shape":"DeviceAttribute"}
1879
- }
1880
- },
1881
- "IncompatibilityMessages":{
1882
- "type":"list",
1883
- "member":{"shape":"IncompatibilityMessage"}
1884
- },
1885
- "InstallToRemoteAccessSessionRequest":{
1886
- "type":"structure",
1887
- "required":[
1888
- "remoteAccessSessionArn",
1889
- "appArn"
1890
- ],
1891
- "members":{
1892
- "remoteAccessSessionArn":{"shape":"AmazonResourceName"},
1893
- "appArn":{"shape":"AmazonResourceName"}
1894
- }
1895
- },
1896
- "InstallToRemoteAccessSessionResult":{
1897
- "type":"structure",
1898
- "members":{
1899
- "appUpload":{"shape":"Upload"}
1900
- }
1901
- },
1902
- "InstanceLabels":{
1903
- "type":"list",
1904
- "member":{"shape":"String"}
1905
- },
1906
- "InstanceProfile":{
1907
- "type":"structure",
1908
- "members":{
1909
- "arn":{"shape":"AmazonResourceName"},
1910
- "packageCleanup":{"shape":"Boolean"},
1911
- "excludeAppPackagesFromCleanup":{"shape":"PackageIds"},
1912
- "rebootAfterUse":{"shape":"Boolean"},
1913
- "name":{"shape":"Name"},
1914
- "description":{"shape":"Message"}
1915
- }
1916
- },
1917
- "InstanceProfiles":{
1918
- "type":"list",
1919
- "member":{"shape":"InstanceProfile"}
1920
- },
1921
- "InstanceStatus":{
1922
- "type":"string",
1923
- "enum":[
1924
- "IN_USE",
1925
- "PREPARING",
1926
- "AVAILABLE",
1927
- "NOT_AVAILABLE"
1928
- ]
1929
- },
1930
- "Integer":{"type":"integer"},
1931
- "InteractionMode":{
1932
- "type":"string",
1933
- "enum":[
1934
- "INTERACTIVE",
1935
- "NO_VIDEO",
1936
- "VIDEO_ONLY"
1937
- ],
1938
- "max":64,
1939
- "min":0
1940
- },
1941
- "InvalidOperationException":{
1942
- "type":"structure",
1943
- "members":{
1944
- "message":{"shape":"Message"}
1945
- },
1946
- "exception":true
1947
- },
1948
- "IosPaths":{
1949
- "type":"list",
1950
- "member":{"shape":"String"}
1951
- },
1952
- "Job":{
1953
- "type":"structure",
1954
- "members":{
1955
- "arn":{"shape":"AmazonResourceName"},
1956
- "name":{"shape":"Name"},
1957
- "type":{"shape":"TestType"},
1958
- "created":{"shape":"DateTime"},
1959
- "status":{"shape":"ExecutionStatus"},
1960
- "result":{"shape":"ExecutionResult"},
1961
- "started":{"shape":"DateTime"},
1962
- "stopped":{"shape":"DateTime"},
1963
- "counters":{"shape":"Counters"},
1964
- "message":{"shape":"Message"},
1965
- "device":{"shape":"Device"},
1966
- "instanceArn":{"shape":"AmazonResourceName"},
1967
- "deviceMinutes":{"shape":"DeviceMinutes"},
1968
- "videoEndpoint":{"shape":"String"},
1969
- "videoCapture":{"shape":"VideoCapture"}
1970
- }
1971
- },
1972
- "JobTimeoutMinutes":{"type":"integer"},
1973
- "Jobs":{
1974
- "type":"list",
1975
- "member":{"shape":"Job"}
1976
- },
1977
- "LimitExceededException":{
1978
- "type":"structure",
1979
- "members":{
1980
- "message":{"shape":"Message"}
1981
- },
1982
- "exception":true
1983
- },
1984
- "ListArtifactsRequest":{
1985
- "type":"structure",
1986
- "required":[
1987
- "arn",
1988
- "type"
1989
- ],
1990
- "members":{
1991
- "arn":{"shape":"AmazonResourceName"},
1992
- "type":{"shape":"ArtifactCategory"},
1993
- "nextToken":{"shape":"PaginationToken"}
1994
- }
1995
- },
1996
- "ListArtifactsResult":{
1997
- "type":"structure",
1998
- "members":{
1999
- "artifacts":{"shape":"Artifacts"},
2000
- "nextToken":{"shape":"PaginationToken"}
2001
- }
2002
- },
2003
- "ListDeviceInstancesRequest":{
2004
- "type":"structure",
2005
- "members":{
2006
- "maxResults":{"shape":"Integer"},
2007
- "nextToken":{"shape":"PaginationToken"}
2008
- }
2009
- },
2010
- "ListDeviceInstancesResult":{
2011
- "type":"structure",
2012
- "members":{
2013
- "deviceInstances":{"shape":"DeviceInstances"},
2014
- "nextToken":{"shape":"PaginationToken"}
2015
- }
2016
- },
2017
- "ListDevicePoolsRequest":{
2018
- "type":"structure",
2019
- "required":["arn"],
2020
- "members":{
2021
- "arn":{"shape":"AmazonResourceName"},
2022
- "type":{"shape":"DevicePoolType"},
2023
- "nextToken":{"shape":"PaginationToken"}
2024
- }
2025
- },
2026
- "ListDevicePoolsResult":{
2027
- "type":"structure",
2028
- "members":{
2029
- "devicePools":{"shape":"DevicePools"},
2030
- "nextToken":{"shape":"PaginationToken"}
2031
- }
2032
- },
2033
- "ListDevicesRequest":{
2034
- "type":"structure",
2035
- "members":{
2036
- "arn":{"shape":"AmazonResourceName"},
2037
- "nextToken":{"shape":"PaginationToken"},
2038
- "filters":{"shape":"DeviceFilters"}
2039
- }
2040
- },
2041
- "ListDevicesResult":{
2042
- "type":"structure",
2043
- "members":{
2044
- "devices":{"shape":"Devices"},
2045
- "nextToken":{"shape":"PaginationToken"}
2046
- }
2047
- },
2048
- "ListInstanceProfilesRequest":{
2049
- "type":"structure",
2050
- "members":{
2051
- "maxResults":{"shape":"Integer"},
2052
- "nextToken":{"shape":"PaginationToken"}
2053
- }
2054
- },
2055
- "ListInstanceProfilesResult":{
2056
- "type":"structure",
2057
- "members":{
2058
- "instanceProfiles":{"shape":"InstanceProfiles"},
2059
- "nextToken":{"shape":"PaginationToken"}
2060
- }
2061
- },
2062
- "ListJobsRequest":{
2063
- "type":"structure",
2064
- "required":["arn"],
2065
- "members":{
2066
- "arn":{"shape":"AmazonResourceName"},
2067
- "nextToken":{"shape":"PaginationToken"}
2068
- }
2069
- },
2070
- "ListJobsResult":{
2071
- "type":"structure",
2072
- "members":{
2073
- "jobs":{"shape":"Jobs"},
2074
- "nextToken":{"shape":"PaginationToken"}
2075
- }
2076
- },
2077
- "ListNetworkProfilesRequest":{
2078
- "type":"structure",
2079
- "required":["arn"],
2080
- "members":{
2081
- "arn":{"shape":"AmazonResourceName"},
2082
- "type":{"shape":"NetworkProfileType"},
2083
- "nextToken":{"shape":"PaginationToken"}
2084
- }
2085
- },
2086
- "ListNetworkProfilesResult":{
2087
- "type":"structure",
2088
- "members":{
2089
- "networkProfiles":{"shape":"NetworkProfiles"},
2090
- "nextToken":{"shape":"PaginationToken"}
2091
- }
2092
- },
2093
- "ListOfferingPromotionsRequest":{
2094
- "type":"structure",
2095
- "members":{
2096
- "nextToken":{"shape":"PaginationToken"}
2097
- }
2098
- },
2099
- "ListOfferingPromotionsResult":{
2100
- "type":"structure",
2101
- "members":{
2102
- "offeringPromotions":{"shape":"OfferingPromotions"},
2103
- "nextToken":{"shape":"PaginationToken"}
2104
- }
2105
- },
2106
- "ListOfferingTransactionsRequest":{
2107
- "type":"structure",
2108
- "members":{
2109
- "nextToken":{"shape":"PaginationToken"}
2110
- }
2111
- },
2112
- "ListOfferingTransactionsResult":{
2113
- "type":"structure",
2114
- "members":{
2115
- "offeringTransactions":{"shape":"OfferingTransactions"},
2116
- "nextToken":{"shape":"PaginationToken"}
2117
- }
2118
- },
2119
- "ListOfferingsRequest":{
2120
- "type":"structure",
2121
- "members":{
2122
- "nextToken":{"shape":"PaginationToken"}
2123
- }
2124
- },
2125
- "ListOfferingsResult":{
2126
- "type":"structure",
2127
- "members":{
2128
- "offerings":{"shape":"Offerings"},
2129
- "nextToken":{"shape":"PaginationToken"}
2130
- }
2131
- },
2132
- "ListProjectsRequest":{
2133
- "type":"structure",
2134
- "members":{
2135
- "arn":{"shape":"AmazonResourceName"},
2136
- "nextToken":{"shape":"PaginationToken"}
2137
- }
2138
- },
2139
- "ListProjectsResult":{
2140
- "type":"structure",
2141
- "members":{
2142
- "projects":{"shape":"Projects"},
2143
- "nextToken":{"shape":"PaginationToken"}
2144
- }
2145
- },
2146
- "ListRemoteAccessSessionsRequest":{
2147
- "type":"structure",
2148
- "required":["arn"],
2149
- "members":{
2150
- "arn":{"shape":"AmazonResourceName"},
2151
- "nextToken":{"shape":"PaginationToken"}
2152
- }
2153
- },
2154
- "ListRemoteAccessSessionsResult":{
2155
- "type":"structure",
2156
- "members":{
2157
- "remoteAccessSessions":{"shape":"RemoteAccessSessions"},
2158
- "nextToken":{"shape":"PaginationToken"}
2159
- }
2160
- },
2161
- "ListRunsRequest":{
2162
- "type":"structure",
2163
- "required":["arn"],
2164
- "members":{
2165
- "arn":{"shape":"AmazonResourceName"},
2166
- "nextToken":{"shape":"PaginationToken"}
2167
- }
2168
- },
2169
- "ListRunsResult":{
2170
- "type":"structure",
2171
- "members":{
2172
- "runs":{"shape":"Runs"},
2173
- "nextToken":{"shape":"PaginationToken"}
2174
- }
2175
- },
2176
- "ListSamplesRequest":{
2177
- "type":"structure",
2178
- "required":["arn"],
2179
- "members":{
2180
- "arn":{"shape":"AmazonResourceName"},
2181
- "nextToken":{"shape":"PaginationToken"}
2182
- }
2183
- },
2184
- "ListSamplesResult":{
2185
- "type":"structure",
2186
- "members":{
2187
- "samples":{"shape":"Samples"},
2188
- "nextToken":{"shape":"PaginationToken"}
2189
- }
2190
- },
2191
- "ListSuitesRequest":{
2192
- "type":"structure",
2193
- "required":["arn"],
2194
- "members":{
2195
- "arn":{"shape":"AmazonResourceName"},
2196
- "nextToken":{"shape":"PaginationToken"}
2197
- }
2198
- },
2199
- "ListSuitesResult":{
2200
- "type":"structure",
2201
- "members":{
2202
- "suites":{"shape":"Suites"},
2203
- "nextToken":{"shape":"PaginationToken"}
2204
- }
2205
- },
2206
- "ListTagsForResourceRequest":{
2207
- "type":"structure",
2208
- "required":["ResourceARN"],
2209
- "members":{
2210
- "ResourceARN":{"shape":"AmazonResourceName"}
2211
- }
2212
- },
2213
- "ListTagsForResourceResponse":{
2214
- "type":"structure",
2215
- "members":{
2216
- "Tags":{"shape":"TagList"}
2217
- }
2218
- },
2219
- "ListTestsRequest":{
2220
- "type":"structure",
2221
- "required":["arn"],
2222
- "members":{
2223
- "arn":{"shape":"AmazonResourceName"},
2224
- "nextToken":{"shape":"PaginationToken"}
2225
- }
2226
- },
2227
- "ListTestsResult":{
2228
- "type":"structure",
2229
- "members":{
2230
- "tests":{"shape":"Tests"},
2231
- "nextToken":{"shape":"PaginationToken"}
2232
- }
2233
- },
2234
- "ListUniqueProblemsRequest":{
2235
- "type":"structure",
2236
- "required":["arn"],
2237
- "members":{
2238
- "arn":{"shape":"AmazonResourceName"},
2239
- "nextToken":{"shape":"PaginationToken"}
2240
- }
2241
- },
2242
- "ListUniqueProblemsResult":{
2243
- "type":"structure",
2244
- "members":{
2245
- "uniqueProblems":{"shape":"UniqueProblemsByExecutionResultMap"},
2246
- "nextToken":{"shape":"PaginationToken"}
2247
- }
2248
- },
2249
- "ListUploadsRequest":{
2250
- "type":"structure",
2251
- "required":["arn"],
2252
- "members":{
2253
- "arn":{"shape":"AmazonResourceName"},
2254
- "type":{"shape":"UploadType"},
2255
- "nextToken":{"shape":"PaginationToken"}
2256
- }
2257
- },
2258
- "ListUploadsResult":{
2259
- "type":"structure",
2260
- "members":{
2261
- "uploads":{"shape":"Uploads"},
2262
- "nextToken":{"shape":"PaginationToken"}
2263
- }
2264
- },
2265
- "ListVPCEConfigurationsRequest":{
2266
- "type":"structure",
2267
- "members":{
2268
- "maxResults":{"shape":"Integer"},
2269
- "nextToken":{"shape":"PaginationToken"}
2270
- }
2271
- },
2272
- "ListVPCEConfigurationsResult":{
2273
- "type":"structure",
2274
- "members":{
2275
- "vpceConfigurations":{"shape":"VPCEConfigurations"},
2276
- "nextToken":{"shape":"PaginationToken"}
2277
- }
2278
- },
2279
- "Location":{
2280
- "type":"structure",
2281
- "required":[
2282
- "latitude",
2283
- "longitude"
2284
- ],
2285
- "members":{
2286
- "latitude":{"shape":"Double"},
2287
- "longitude":{"shape":"Double"}
2288
- }
2289
- },
2290
- "Long":{"type":"long"},
2291
- "MaxSlotMap":{
2292
- "type":"map",
2293
- "key":{"shape":"String"},
2294
- "value":{"shape":"Integer"}
2295
- },
2296
- "Message":{
2297
- "type":"string",
2298
- "max":16384,
2299
- "min":0
2300
- },
2301
- "Metadata":{
2302
- "type":"string",
2303
- "max":8192,
2304
- "min":0
2305
- },
2306
- "MonetaryAmount":{
2307
- "type":"structure",
2308
- "members":{
2309
- "amount":{"shape":"Double"},
2310
- "currencyCode":{"shape":"CurrencyCode"}
2311
- }
2312
- },
2313
- "Name":{
2314
- "type":"string",
2315
- "max":256,
2316
- "min":0
2317
- },
2318
- "NetworkProfile":{
2319
- "type":"structure",
2320
- "members":{
2321
- "arn":{"shape":"AmazonResourceName"},
2322
- "name":{"shape":"Name"},
2323
- "description":{"shape":"Message"},
2324
- "type":{"shape":"NetworkProfileType"},
2325
- "uplinkBandwidthBits":{"shape":"Long"},
2326
- "downlinkBandwidthBits":{"shape":"Long"},
2327
- "uplinkDelayMs":{"shape":"Long"},
2328
- "downlinkDelayMs":{"shape":"Long"},
2329
- "uplinkJitterMs":{"shape":"Long"},
2330
- "downlinkJitterMs":{"shape":"Long"},
2331
- "uplinkLossPercent":{"shape":"PercentInteger"},
2332
- "downlinkLossPercent":{"shape":"PercentInteger"}
2333
- }
2334
- },
2335
- "NetworkProfileType":{
2336
- "type":"string",
2337
- "enum":[
2338
- "CURATED",
2339
- "PRIVATE"
2340
- ]
2341
- },
2342
- "NetworkProfiles":{
2343
- "type":"list",
2344
- "member":{"shape":"NetworkProfile"}
2345
- },
2346
- "NotEligibleException":{
2347
- "type":"structure",
2348
- "members":{
2349
- "message":{"shape":"Message"}
2350
- },
2351
- "exception":true
2352
- },
2353
- "NotFoundException":{
2354
- "type":"structure",
2355
- "members":{
2356
- "message":{"shape":"Message"}
2357
- },
2358
- "exception":true
2359
- },
2360
- "Offering":{
2361
- "type":"structure",
2362
- "members":{
2363
- "id":{"shape":"OfferingIdentifier"},
2364
- "description":{"shape":"Message"},
2365
- "type":{"shape":"OfferingType"},
2366
- "platform":{"shape":"DevicePlatform"},
2367
- "recurringCharges":{"shape":"RecurringCharges"}
2368
- }
2369
- },
2370
- "OfferingIdentifier":{
2371
- "type":"string",
2372
- "min":32
2373
- },
2374
- "OfferingPromotion":{
2375
- "type":"structure",
2376
- "members":{
2377
- "id":{"shape":"OfferingPromotionIdentifier"},
2378
- "description":{"shape":"Message"}
2379
- }
2380
- },
2381
- "OfferingPromotionIdentifier":{
2382
- "type":"string",
2383
- "min":4
2384
- },
2385
- "OfferingPromotions":{
2386
- "type":"list",
2387
- "member":{"shape":"OfferingPromotion"}
2388
- },
2389
- "OfferingStatus":{
2390
- "type":"structure",
2391
- "members":{
2392
- "type":{"shape":"OfferingTransactionType"},
2393
- "offering":{"shape":"Offering"},
2394
- "quantity":{"shape":"Integer"},
2395
- "effectiveOn":{"shape":"DateTime"}
2396
- }
2397
- },
2398
- "OfferingStatusMap":{
2399
- "type":"map",
2400
- "key":{"shape":"OfferingIdentifier"},
2401
- "value":{"shape":"OfferingStatus"}
2402
- },
2403
- "OfferingTransaction":{
2404
- "type":"structure",
2405
- "members":{
2406
- "offeringStatus":{"shape":"OfferingStatus"},
2407
- "transactionId":{"shape":"TransactionIdentifier"},
2408
- "offeringPromotionId":{"shape":"OfferingPromotionIdentifier"},
2409
- "createdOn":{"shape":"DateTime"},
2410
- "cost":{"shape":"MonetaryAmount"}
2411
- }
2412
- },
2413
- "OfferingTransactionType":{
2414
- "type":"string",
2415
- "enum":[
2416
- "PURCHASE",
2417
- "RENEW",
2418
- "SYSTEM"
2419
- ]
2420
- },
2421
- "OfferingTransactions":{
2422
- "type":"list",
2423
- "member":{"shape":"OfferingTransaction"}
2424
- },
2425
- "OfferingType":{
2426
- "type":"string",
2427
- "enum":["RECURRING"]
2428
- },
2429
- "Offerings":{
2430
- "type":"list",
2431
- "member":{"shape":"Offering"}
2432
- },
2433
- "PackageIds":{
2434
- "type":"list",
2435
- "member":{"shape":"String"}
2436
- },
2437
- "PaginationToken":{
2438
- "type":"string",
2439
- "max":1024,
2440
- "min":4
2441
- },
2442
- "PercentInteger":{
2443
- "type":"integer",
2444
- "max":100,
2445
- "min":0
2446
- },
2447
- "Problem":{
2448
- "type":"structure",
2449
- "members":{
2450
- "run":{"shape":"ProblemDetail"},
2451
- "job":{"shape":"ProblemDetail"},
2452
- "suite":{"shape":"ProblemDetail"},
2453
- "test":{"shape":"ProblemDetail"},
2454
- "device":{"shape":"Device"},
2455
- "result":{"shape":"ExecutionResult"},
2456
- "message":{"shape":"Message"}
2457
- }
2458
- },
2459
- "ProblemDetail":{
2460
- "type":"structure",
2461
- "members":{
2462
- "arn":{"shape":"AmazonResourceName"},
2463
- "name":{"shape":"Name"}
2464
- }
2465
- },
2466
- "Problems":{
2467
- "type":"list",
2468
- "member":{"shape":"Problem"}
2469
- },
2470
- "Project":{
2471
- "type":"structure",
2472
- "members":{
2473
- "arn":{"shape":"AmazonResourceName"},
2474
- "name":{"shape":"Name"},
2475
- "defaultJobTimeoutMinutes":{"shape":"JobTimeoutMinutes"},
2476
- "created":{"shape":"DateTime"}
2477
- }
2478
- },
2479
- "Projects":{
2480
- "type":"list",
2481
- "member":{"shape":"Project"}
2482
- },
2483
- "PurchaseOfferingRequest":{
2484
- "type":"structure",
2485
- "members":{
2486
- "offeringId":{"shape":"OfferingIdentifier"},
2487
- "quantity":{"shape":"Integer"},
2488
- "offeringPromotionId":{"shape":"OfferingPromotionIdentifier"}
2489
- }
2490
- },
2491
- "PurchaseOfferingResult":{
2492
- "type":"structure",
2493
- "members":{
2494
- "offeringTransaction":{"shape":"OfferingTransaction"}
2495
- }
2496
- },
2497
- "PurchasedDevicesMap":{
2498
- "type":"map",
2499
- "key":{"shape":"DevicePlatform"},
2500
- "value":{"shape":"Integer"}
2501
- },
2502
- "Radios":{
2503
- "type":"structure",
2504
- "members":{
2505
- "wifi":{"shape":"Boolean"},
2506
- "bluetooth":{"shape":"Boolean"},
2507
- "nfc":{"shape":"Boolean"},
2508
- "gps":{"shape":"Boolean"}
2509
- }
2510
- },
2511
- "RecurringCharge":{
2512
- "type":"structure",
2513
- "members":{
2514
- "cost":{"shape":"MonetaryAmount"},
2515
- "frequency":{"shape":"RecurringChargeFrequency"}
2516
- }
2517
- },
2518
- "RecurringChargeFrequency":{
2519
- "type":"string",
2520
- "enum":["MONTHLY"]
2521
- },
2522
- "RecurringCharges":{
2523
- "type":"list",
2524
- "member":{"shape":"RecurringCharge"}
2525
- },
2526
- "RemoteAccessSession":{
2527
- "type":"structure",
2528
- "members":{
2529
- "arn":{"shape":"AmazonResourceName"},
2530
- "name":{"shape":"Name"},
2531
- "created":{"shape":"DateTime"},
2532
- "status":{"shape":"ExecutionStatus"},
2533
- "result":{"shape":"ExecutionResult"},
2534
- "message":{"shape":"Message"},
2535
- "started":{"shape":"DateTime"},
2536
- "stopped":{"shape":"DateTime"},
2537
- "device":{"shape":"Device"},
2538
- "instanceArn":{"shape":"AmazonResourceName"},
2539
- "remoteDebugEnabled":{"shape":"Boolean"},
2540
- "remoteRecordEnabled":{"shape":"Boolean"},
2541
- "remoteRecordAppArn":{"shape":"AmazonResourceName"},
2542
- "hostAddress":{"shape":"HostAddress"},
2543
- "clientId":{"shape":"ClientId"},
2544
- "billingMethod":{"shape":"BillingMethod"},
2545
- "deviceMinutes":{"shape":"DeviceMinutes"},
2546
- "endpoint":{"shape":"String"},
2547
- "deviceUdid":{"shape":"String"},
2548
- "interactionMode":{"shape":"InteractionMode"},
2549
- "skipAppResign":{"shape":"SkipAppResign"}
2550
- }
2551
- },
2552
- "RemoteAccessSessions":{
2553
- "type":"list",
2554
- "member":{"shape":"RemoteAccessSession"}
2555
- },
2556
- "RenewOfferingRequest":{
2557
- "type":"structure",
2558
- "members":{
2559
- "offeringId":{"shape":"OfferingIdentifier"},
2560
- "quantity":{"shape":"Integer"}
2561
- }
2562
- },
2563
- "RenewOfferingResult":{
2564
- "type":"structure",
2565
- "members":{
2566
- "offeringTransaction":{"shape":"OfferingTransaction"}
2567
- }
2568
- },
2569
- "Resolution":{
2570
- "type":"structure",
2571
- "members":{
2572
- "width":{"shape":"Integer"},
2573
- "height":{"shape":"Integer"}
2574
- }
2575
- },
2576
- "Rule":{
2577
- "type":"structure",
2578
- "members":{
2579
- "attribute":{"shape":"DeviceAttribute"},
2580
- "operator":{"shape":"RuleOperator"},
2581
- "value":{"shape":"String"}
2582
- }
2583
- },
2584
- "RuleOperator":{
2585
- "type":"string",
2586
- "enum":[
2587
- "EQUALS",
2588
- "LESS_THAN",
2589
- "LESS_THAN_OR_EQUALS",
2590
- "GREATER_THAN",
2591
- "GREATER_THAN_OR_EQUALS",
2592
- "IN",
2593
- "NOT_IN",
2594
- "CONTAINS"
2595
- ]
2596
- },
2597
- "Rules":{
2598
- "type":"list",
2599
- "member":{"shape":"Rule"}
2600
- },
2601
- "Run":{
2602
- "type":"structure",
2603
- "members":{
2604
- "arn":{"shape":"AmazonResourceName"},
2605
- "name":{"shape":"Name"},
2606
- "type":{"shape":"TestType"},
2607
- "platform":{"shape":"DevicePlatform"},
2608
- "created":{"shape":"DateTime"},
2609
- "status":{"shape":"ExecutionStatus"},
2610
- "result":{"shape":"ExecutionResult"},
2611
- "started":{"shape":"DateTime"},
2612
- "stopped":{"shape":"DateTime"},
2613
- "counters":{"shape":"Counters"},
2614
- "message":{"shape":"Message"},
2615
- "totalJobs":{"shape":"Integer"},
2616
- "completedJobs":{"shape":"Integer"},
2617
- "billingMethod":{"shape":"BillingMethod"},
2618
- "deviceMinutes":{"shape":"DeviceMinutes"},
2619
- "networkProfile":{"shape":"NetworkProfile"},
2620
- "parsingResultUrl":{"shape":"String"},
2621
- "resultCode":{"shape":"ExecutionResultCode"},
2622
- "seed":{"shape":"Integer"},
2623
- "appUpload":{"shape":"AmazonResourceName"},
2624
- "eventCount":{"shape":"Integer"},
2625
- "jobTimeoutMinutes":{"shape":"JobTimeoutMinutes"},
2626
- "devicePoolArn":{"shape":"AmazonResourceName"},
2627
- "locale":{"shape":"String"},
2628
- "radios":{"shape":"Radios"},
2629
- "location":{"shape":"Location"},
2630
- "customerArtifactPaths":{"shape":"CustomerArtifactPaths"},
2631
- "webUrl":{"shape":"String"},
2632
- "skipAppResign":{"shape":"SkipAppResign"},
2633
- "testSpecArn":{"shape":"AmazonResourceName"},
2634
- "deviceSelectionResult":{"shape":"DeviceSelectionResult"}
2635
- }
2636
- },
2637
- "Runs":{
2638
- "type":"list",
2639
- "member":{"shape":"Run"}
2640
- },
2641
- "Sample":{
2642
- "type":"structure",
2643
- "members":{
2644
- "arn":{"shape":"AmazonResourceName"},
2645
- "type":{"shape":"SampleType"},
2646
- "url":{"shape":"URL"}
2647
- }
2648
- },
2649
- "SampleType":{
2650
- "type":"string",
2651
- "enum":[
2652
- "CPU",
2653
- "MEMORY",
2654
- "THREADS",
2655
- "RX_RATE",
2656
- "TX_RATE",
2657
- "RX",
2658
- "TX",
2659
- "NATIVE_FRAMES",
2660
- "NATIVE_FPS",
2661
- "NATIVE_MIN_DRAWTIME",
2662
- "NATIVE_AVG_DRAWTIME",
2663
- "NATIVE_MAX_DRAWTIME",
2664
- "OPENGL_FRAMES",
2665
- "OPENGL_FPS",
2666
- "OPENGL_MIN_DRAWTIME",
2667
- "OPENGL_AVG_DRAWTIME",
2668
- "OPENGL_MAX_DRAWTIME"
2669
- ]
2670
- },
2671
- "Samples":{
2672
- "type":"list",
2673
- "member":{"shape":"Sample"}
2674
- },
2675
- "ScheduleRunConfiguration":{
2676
- "type":"structure",
2677
- "members":{
2678
- "extraDataPackageArn":{"shape":"AmazonResourceName"},
2679
- "networkProfileArn":{"shape":"AmazonResourceName"},
2680
- "locale":{"shape":"String"},
2681
- "location":{"shape":"Location"},
2682
- "vpceConfigurationArns":{"shape":"AmazonResourceNames"},
2683
- "customerArtifactPaths":{"shape":"CustomerArtifactPaths"},
2684
- "radios":{"shape":"Radios"},
2685
- "auxiliaryApps":{"shape":"AmazonResourceNames"},
2686
- "billingMethod":{"shape":"BillingMethod"}
2687
- }
2688
- },
2689
- "ScheduleRunRequest":{
2690
- "type":"structure",
2691
- "required":[
2692
- "projectArn",
2693
- "test"
2694
- ],
2695
- "members":{
2696
- "projectArn":{"shape":"AmazonResourceName"},
2697
- "appArn":{"shape":"AmazonResourceName"},
2698
- "devicePoolArn":{"shape":"AmazonResourceName"},
2699
- "deviceSelectionConfiguration":{"shape":"DeviceSelectionConfiguration"},
2700
- "name":{"shape":"Name"},
2701
- "test":{"shape":"ScheduleRunTest"},
2702
- "configuration":{"shape":"ScheduleRunConfiguration"},
2703
- "executionConfiguration":{"shape":"ExecutionConfiguration"}
2704
- }
2705
- },
2706
- "ScheduleRunResult":{
2707
- "type":"structure",
2708
- "members":{
2709
- "run":{"shape":"Run"}
2710
- }
2711
- },
2712
- "ScheduleRunTest":{
2713
- "type":"structure",
2714
- "required":["type"],
2715
- "members":{
2716
- "type":{"shape":"TestType"},
2717
- "testPackageArn":{"shape":"AmazonResourceName"},
2718
- "testSpecArn":{"shape":"AmazonResourceName"},
2719
- "filter":{"shape":"Filter"},
2720
- "parameters":{"shape":"TestParameters"}
2721
- }
2722
- },
2723
- "ServiceAccountException":{
2724
- "type":"structure",
2725
- "members":{
2726
- "message":{"shape":"Message"}
2727
- },
2728
- "exception":true
2729
- },
2730
- "ServiceDnsName":{
2731
- "type":"string",
2732
- "max":2048,
2733
- "min":0
2734
- },
2735
- "SkipAppResign":{"type":"boolean"},
2736
- "SshPublicKey":{
2737
- "type":"string",
2738
- "max":8192,
2739
- "min":0
2740
- },
2741
- "StopJobRequest":{
2742
- "type":"structure",
2743
- "required":["arn"],
2744
- "members":{
2745
- "arn":{"shape":"AmazonResourceName"}
2746
- }
2747
- },
2748
- "StopJobResult":{
2749
- "type":"structure",
2750
- "members":{
2751
- "job":{"shape":"Job"}
2752
- }
2753
- },
2754
- "StopRemoteAccessSessionRequest":{
2755
- "type":"structure",
2756
- "required":["arn"],
2757
- "members":{
2758
- "arn":{"shape":"AmazonResourceName"}
2759
- }
2760
- },
2761
- "StopRemoteAccessSessionResult":{
2762
- "type":"structure",
2763
- "members":{
2764
- "remoteAccessSession":{"shape":"RemoteAccessSession"}
2765
- }
2766
- },
2767
- "StopRunRequest":{
2768
- "type":"structure",
2769
- "required":["arn"],
2770
- "members":{
2771
- "arn":{"shape":"AmazonResourceName"}
2772
- }
2773
- },
2774
- "StopRunResult":{
2775
- "type":"structure",
2776
- "members":{
2777
- "run":{"shape":"Run"}
2778
- }
2779
- },
2780
- "String":{"type":"string"},
2781
- "Suite":{
2782
- "type":"structure",
2783
- "members":{
2784
- "arn":{"shape":"AmazonResourceName"},
2785
- "name":{"shape":"Name"},
2786
- "type":{"shape":"TestType"},
2787
- "created":{"shape":"DateTime"},
2788
- "status":{"shape":"ExecutionStatus"},
2789
- "result":{"shape":"ExecutionResult"},
2790
- "started":{"shape":"DateTime"},
2791
- "stopped":{"shape":"DateTime"},
2792
- "counters":{"shape":"Counters"},
2793
- "message":{"shape":"Message"},
2794
- "deviceMinutes":{"shape":"DeviceMinutes"}
2795
- }
2796
- },
2797
- "Suites":{
2798
- "type":"list",
2799
- "member":{"shape":"Suite"}
2800
- },
2801
- "Tag":{
2802
- "type":"structure",
2803
- "required":[
2804
- "Key",
2805
- "Value"
2806
- ],
2807
- "members":{
2808
- "Key":{"shape":"TagKey"},
2809
- "Value":{"shape":"TagValue"}
2810
- }
2811
- },
2812
- "TagKey":{
2813
- "type":"string",
2814
- "max":128,
2815
- "min":1
2816
- },
2817
- "TagKeyList":{
2818
- "type":"list",
2819
- "member":{"shape":"TagKey"},
2820
- "max":150
2821
- },
2822
- "TagList":{
2823
- "type":"list",
2824
- "member":{"shape":"Tag"},
2825
- "max":150
2826
- },
2827
- "TagOperationException":{
2828
- "type":"structure",
2829
- "members":{
2830
- "message":{"shape":"ExceptionMessage"},
2831
- "resourceName":{"shape":"AmazonResourceName"}
2832
- },
2833
- "exception":true
2834
- },
2835
- "TagPolicyException":{
2836
- "type":"structure",
2837
- "members":{
2838
- "message":{"shape":"ExceptionMessage"},
2839
- "resourceName":{"shape":"AmazonResourceName"}
2840
- },
2841
- "exception":true
2842
- },
2843
- "TagResourceRequest":{
2844
- "type":"structure",
2845
- "required":[
2846
- "ResourceARN",
2847
- "Tags"
2848
- ],
2849
- "members":{
2850
- "ResourceARN":{"shape":"AmazonResourceName"},
2851
- "Tags":{"shape":"TagList"}
2852
- }
2853
- },
2854
- "TagResourceResponse":{
2855
- "type":"structure",
2856
- "members":{
2857
- }
2858
- },
2859
- "TagValue":{
2860
- "type":"string",
2861
- "max":256,
2862
- "min":0
2863
- },
2864
- "Test":{
2865
- "type":"structure",
2866
- "members":{
2867
- "arn":{"shape":"AmazonResourceName"},
2868
- "name":{"shape":"Name"},
2869
- "type":{"shape":"TestType"},
2870
- "created":{"shape":"DateTime"},
2871
- "status":{"shape":"ExecutionStatus"},
2872
- "result":{"shape":"ExecutionResult"},
2873
- "started":{"shape":"DateTime"},
2874
- "stopped":{"shape":"DateTime"},
2875
- "counters":{"shape":"Counters"},
2876
- "message":{"shape":"Message"},
2877
- "deviceMinutes":{"shape":"DeviceMinutes"}
2878
- }
2879
- },
2880
- "TestParameters":{
2881
- "type":"map",
2882
- "key":{"shape":"String"},
2883
- "value":{"shape":"String"}
2884
- },
2885
- "TestType":{
2886
- "type":"string",
2887
- "enum":[
2888
- "BUILTIN_FUZZ",
2889
- "BUILTIN_EXPLORER",
2890
- "WEB_PERFORMANCE_PROFILE",
2891
- "APPIUM_JAVA_JUNIT",
2892
- "APPIUM_JAVA_TESTNG",
2893
- "APPIUM_PYTHON",
2894
- "APPIUM_NODE",
2895
- "APPIUM_RUBY",
2896
- "APPIUM_WEB_JAVA_JUNIT",
2897
- "APPIUM_WEB_JAVA_TESTNG",
2898
- "APPIUM_WEB_PYTHON",
2899
- "APPIUM_WEB_NODE",
2900
- "APPIUM_WEB_RUBY",
2901
- "CALABASH",
2902
- "INSTRUMENTATION",
2903
- "UIAUTOMATION",
2904
- "UIAUTOMATOR",
2905
- "XCTEST",
2906
- "XCTEST_UI",
2907
- "REMOTE_ACCESS_RECORD",
2908
- "REMOTE_ACCESS_REPLAY"
2909
- ]
2910
- },
2911
- "Tests":{
2912
- "type":"list",
2913
- "member":{"shape":"Test"}
2914
- },
2915
- "TooManyTagsException":{
2916
- "type":"structure",
2917
- "members":{
2918
- "message":{"shape":"ExceptionMessage"},
2919
- "resourceName":{"shape":"AmazonResourceName"}
2920
- },
2921
- "exception":true
2922
- },
2923
- "TransactionIdentifier":{
2924
- "type":"string",
2925
- "min":32
2926
- },
2927
- "TrialMinutes":{
2928
- "type":"structure",
2929
- "members":{
2930
- "total":{"shape":"Double"},
2931
- "remaining":{"shape":"Double"}
2932
- }
2933
- },
2934
- "URL":{
2935
- "type":"string",
2936
- "max":2048,
2937
- "min":0
2938
- },
2939
- "UniqueProblem":{
2940
- "type":"structure",
2941
- "members":{
2942
- "message":{"shape":"Message"},
2943
- "problems":{"shape":"Problems"}
2944
- }
2945
- },
2946
- "UniqueProblems":{
2947
- "type":"list",
2948
- "member":{"shape":"UniqueProblem"}
2949
- },
2950
- "UniqueProblemsByExecutionResultMap":{
2951
- "type":"map",
2952
- "key":{"shape":"ExecutionResult"},
2953
- "value":{"shape":"UniqueProblems"}
2954
- },
2955
- "UntagResourceRequest":{
2956
- "type":"structure",
2957
- "required":[
2958
- "ResourceARN",
2959
- "TagKeys"
2960
- ],
2961
- "members":{
2962
- "ResourceARN":{"shape":"AmazonResourceName"},
2963
- "TagKeys":{"shape":"TagKeyList"}
2964
- }
2965
- },
2966
- "UntagResourceResponse":{
2967
- "type":"structure",
2968
- "members":{
2969
- }
2970
- },
2971
- "UpdateDeviceInstanceRequest":{
2972
- "type":"structure",
2973
- "required":["arn"],
2974
- "members":{
2975
- "arn":{"shape":"AmazonResourceName"},
2976
- "profileArn":{"shape":"AmazonResourceName"},
2977
- "labels":{"shape":"InstanceLabels"}
2978
- }
2979
- },
2980
- "UpdateDeviceInstanceResult":{
2981
- "type":"structure",
2982
- "members":{
2983
- "deviceInstance":{"shape":"DeviceInstance"}
2984
- }
2985
- },
2986
- "UpdateDevicePoolRequest":{
2987
- "type":"structure",
2988
- "required":["arn"],
2989
- "members":{
2990
- "arn":{"shape":"AmazonResourceName"},
2991
- "name":{"shape":"Name"},
2992
- "description":{"shape":"Message"},
2993
- "rules":{"shape":"Rules"},
2994
- "maxDevices":{"shape":"Integer"},
2995
- "clearMaxDevices":{"shape":"Boolean"}
2996
- }
2997
- },
2998
- "UpdateDevicePoolResult":{
2999
- "type":"structure",
3000
- "members":{
3001
- "devicePool":{"shape":"DevicePool"}
3002
- }
3003
- },
3004
- "UpdateInstanceProfileRequest":{
3005
- "type":"structure",
3006
- "required":["arn"],
3007
- "members":{
3008
- "arn":{"shape":"AmazonResourceName"},
3009
- "name":{"shape":"Name"},
3010
- "description":{"shape":"Message"},
3011
- "packageCleanup":{"shape":"Boolean"},
3012
- "excludeAppPackagesFromCleanup":{"shape":"PackageIds"},
3013
- "rebootAfterUse":{"shape":"Boolean"}
3014
- }
3015
- },
3016
- "UpdateInstanceProfileResult":{
3017
- "type":"structure",
3018
- "members":{
3019
- "instanceProfile":{"shape":"InstanceProfile"}
3020
- }
3021
- },
3022
- "UpdateNetworkProfileRequest":{
3023
- "type":"structure",
3024
- "required":["arn"],
3025
- "members":{
3026
- "arn":{"shape":"AmazonResourceName"},
3027
- "name":{"shape":"Name"},
3028
- "description":{"shape":"Message"},
3029
- "type":{"shape":"NetworkProfileType"},
3030
- "uplinkBandwidthBits":{"shape":"Long"},
3031
- "downlinkBandwidthBits":{"shape":"Long"},
3032
- "uplinkDelayMs":{"shape":"Long"},
3033
- "downlinkDelayMs":{"shape":"Long"},
3034
- "uplinkJitterMs":{"shape":"Long"},
3035
- "downlinkJitterMs":{"shape":"Long"},
3036
- "uplinkLossPercent":{"shape":"PercentInteger"},
3037
- "downlinkLossPercent":{"shape":"PercentInteger"}
3038
- }
3039
- },
3040
- "UpdateNetworkProfileResult":{
3041
- "type":"structure",
3042
- "members":{
3043
- "networkProfile":{"shape":"NetworkProfile"}
3044
- }
3045
- },
3046
- "UpdateProjectRequest":{
3047
- "type":"structure",
3048
- "required":["arn"],
3049
- "members":{
3050
- "arn":{"shape":"AmazonResourceName"},
3051
- "name":{"shape":"Name"},
3052
- "defaultJobTimeoutMinutes":{"shape":"JobTimeoutMinutes"}
3053
- }
3054
- },
3055
- "UpdateProjectResult":{
3056
- "type":"structure",
3057
- "members":{
3058
- "project":{"shape":"Project"}
3059
- }
3060
- },
3061
- "UpdateUploadRequest":{
3062
- "type":"structure",
3063
- "required":["arn"],
3064
- "members":{
3065
- "arn":{"shape":"AmazonResourceName"},
3066
- "name":{"shape":"Name"},
3067
- "contentType":{"shape":"ContentType"},
3068
- "editContent":{"shape":"Boolean"}
3069
- }
3070
- },
3071
- "UpdateUploadResult":{
3072
- "type":"structure",
3073
- "members":{
3074
- "upload":{"shape":"Upload"}
3075
- }
3076
- },
3077
- "UpdateVPCEConfigurationRequest":{
3078
- "type":"structure",
3079
- "required":["arn"],
3080
- "members":{
3081
- "arn":{"shape":"AmazonResourceName"},
3082
- "vpceConfigurationName":{"shape":"VPCEConfigurationName"},
3083
- "vpceServiceName":{"shape":"VPCEServiceName"},
3084
- "serviceDnsName":{"shape":"ServiceDnsName"},
3085
- "vpceConfigurationDescription":{"shape":"VPCEConfigurationDescription"}
3086
- }
3087
- },
3088
- "UpdateVPCEConfigurationResult":{
3089
- "type":"structure",
3090
- "members":{
3091
- "vpceConfiguration":{"shape":"VPCEConfiguration"}
3092
- }
3093
- },
3094
- "Upload":{
3095
- "type":"structure",
3096
- "members":{
3097
- "arn":{"shape":"AmazonResourceName"},
3098
- "name":{"shape":"Name"},
3099
- "created":{"shape":"DateTime"},
3100
- "type":{"shape":"UploadType"},
3101
- "status":{"shape":"UploadStatus"},
3102
- "url":{"shape":"URL"},
3103
- "metadata":{"shape":"Metadata"},
3104
- "contentType":{"shape":"ContentType"},
3105
- "message":{"shape":"Message"},
3106
- "category":{"shape":"UploadCategory"}
3107
- }
3108
- },
3109
- "UploadCategory":{
3110
- "type":"string",
3111
- "enum":[
3112
- "CURATED",
3113
- "PRIVATE"
3114
- ]
3115
- },
3116
- "UploadStatus":{
3117
- "type":"string",
3118
- "enum":[
3119
- "INITIALIZED",
3120
- "PROCESSING",
3121
- "SUCCEEDED",
3122
- "FAILED"
3123
- ]
3124
- },
3125
- "UploadType":{
3126
- "type":"string",
3127
- "enum":[
3128
- "ANDROID_APP",
3129
- "IOS_APP",
3130
- "WEB_APP",
3131
- "EXTERNAL_DATA",
3132
- "APPIUM_JAVA_JUNIT_TEST_PACKAGE",
3133
- "APPIUM_JAVA_TESTNG_TEST_PACKAGE",
3134
- "APPIUM_PYTHON_TEST_PACKAGE",
3135
- "APPIUM_NODE_TEST_PACKAGE",
3136
- "APPIUM_RUBY_TEST_PACKAGE",
3137
- "APPIUM_WEB_JAVA_JUNIT_TEST_PACKAGE",
3138
- "APPIUM_WEB_JAVA_TESTNG_TEST_PACKAGE",
3139
- "APPIUM_WEB_PYTHON_TEST_PACKAGE",
3140
- "APPIUM_WEB_NODE_TEST_PACKAGE",
3141
- "APPIUM_WEB_RUBY_TEST_PACKAGE",
3142
- "CALABASH_TEST_PACKAGE",
3143
- "INSTRUMENTATION_TEST_PACKAGE",
3144
- "UIAUTOMATION_TEST_PACKAGE",
3145
- "UIAUTOMATOR_TEST_PACKAGE",
3146
- "XCTEST_TEST_PACKAGE",
3147
- "XCTEST_UI_TEST_PACKAGE",
3148
- "APPIUM_JAVA_JUNIT_TEST_SPEC",
3149
- "APPIUM_JAVA_TESTNG_TEST_SPEC",
3150
- "APPIUM_PYTHON_TEST_SPEC",
3151
- "APPIUM_NODE_TEST_SPEC",
3152
- "APPIUM_RUBY_TEST_SPEC",
3153
- "APPIUM_WEB_JAVA_JUNIT_TEST_SPEC",
3154
- "APPIUM_WEB_JAVA_TESTNG_TEST_SPEC",
3155
- "APPIUM_WEB_PYTHON_TEST_SPEC",
3156
- "APPIUM_WEB_NODE_TEST_SPEC",
3157
- "APPIUM_WEB_RUBY_TEST_SPEC",
3158
- "INSTRUMENTATION_TEST_SPEC",
3159
- "XCTEST_UI_TEST_SPEC"
3160
- ]
3161
- },
3162
- "Uploads":{
3163
- "type":"list",
3164
- "member":{"shape":"Upload"}
3165
- },
3166
- "VPCEConfiguration":{
3167
- "type":"structure",
3168
- "members":{
3169
- "arn":{"shape":"AmazonResourceName"},
3170
- "vpceConfigurationName":{"shape":"VPCEConfigurationName"},
3171
- "vpceServiceName":{"shape":"VPCEServiceName"},
3172
- "serviceDnsName":{"shape":"ServiceDnsName"},
3173
- "vpceConfigurationDescription":{"shape":"VPCEConfigurationDescription"}
3174
- }
3175
- },
3176
- "VPCEConfigurationDescription":{
3177
- "type":"string",
3178
- "max":2048,
3179
- "min":0
3180
- },
3181
- "VPCEConfigurationName":{
3182
- "type":"string",
3183
- "max":1024,
3184
- "min":0
3185
- },
3186
- "VPCEConfigurations":{
3187
- "type":"list",
3188
- "member":{"shape":"VPCEConfiguration"}
3189
- },
3190
- "VPCEServiceName":{
3191
- "type":"string",
3192
- "max":2048,
3193
- "min":0
3194
- },
3195
- "VideoCapture":{"type":"boolean"}
3196
- }
3197
- }