aws-sdk-core 2.8.4 → 3.129.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (714) hide show
  1. checksums.yaml +5 -5
  2. data/CHANGELOG.md +1287 -0
  3. data/LICENSE.txt +202 -0
  4. data/VERSION +1 -0
  5. data/ca-bundle.crt +3615 -3541
  6. data/lib/aws-defaults/default_configuration.rb +153 -0
  7. data/lib/aws-defaults/defaults_mode_config_resolver.rb +107 -0
  8. data/lib/aws-defaults.rb +3 -0
  9. data/lib/aws-sdk-core/arn.rb +92 -0
  10. data/lib/aws-sdk-core/arn_parser.rb +40 -0
  11. data/lib/aws-sdk-core/assume_role_credentials.rb +20 -0
  12. data/lib/aws-sdk-core/assume_role_web_identity_credentials.rb +109 -0
  13. data/lib/aws-sdk-core/async_client_stubs.rb +82 -0
  14. data/lib/aws-sdk-core/binary/decode_handler.rb +58 -0
  15. data/lib/aws-sdk-core/binary/encode_handler.rb +34 -0
  16. data/lib/aws-sdk-core/binary/event_builder.rb +124 -0
  17. data/lib/aws-sdk-core/binary/event_parser.rb +136 -0
  18. data/lib/aws-sdk-core/binary/event_stream_decoder.rb +64 -0
  19. data/lib/aws-sdk-core/binary/event_stream_encoder.rb +55 -0
  20. data/lib/aws-sdk-core/binary.rb +8 -0
  21. data/lib/aws-sdk-core/client_side_monitoring/publisher.rb +51 -0
  22. data/lib/aws-sdk-core/client_side_monitoring/request_metrics.rb +199 -0
  23. data/lib/aws-sdk-core/client_stubs.rb +69 -12
  24. data/lib/aws-sdk-core/credential_provider.rb +2 -29
  25. data/lib/aws-sdk-core/credential_provider_chain.rb +111 -32
  26. data/lib/aws-sdk-core/credentials.rb +2 -0
  27. data/lib/aws-sdk-core/deprecations.rb +17 -11
  28. data/lib/aws-sdk-core/eager_loader.rb +2 -0
  29. data/lib/aws-sdk-core/ec2_metadata.rb +238 -0
  30. data/lib/aws-sdk-core/ecs_credentials.rb +20 -11
  31. data/lib/aws-sdk-core/endpoint_cache.rb +193 -0
  32. data/lib/aws-sdk-core/errors.rb +227 -18
  33. data/lib/aws-sdk-core/event_emitter.rb +64 -0
  34. data/lib/aws-sdk-core/ini_parser.rb +3 -0
  35. data/lib/aws-sdk-core/instance_profile_credentials.rb +237 -45
  36. data/lib/aws-sdk-core/json/builder.rb +6 -2
  37. data/lib/aws-sdk-core/json/error_handler.rb +21 -2
  38. data/lib/aws-sdk-core/json/handler.rb +24 -3
  39. data/lib/aws-sdk-core/json/json_engine.rb +12 -8
  40. data/lib/aws-sdk-core/json/oj_engine.rb +35 -6
  41. data/lib/aws-sdk-core/json/parser.rb +11 -1
  42. data/lib/aws-sdk-core/json.rb +15 -33
  43. data/lib/aws-sdk-core/log/formatter.rb +16 -4
  44. data/lib/aws-sdk-core/log/handler.rb +2 -0
  45. data/lib/aws-sdk-core/log/param_filter.rb +41 -15
  46. data/lib/aws-sdk-core/log/param_formatter.rb +2 -0
  47. data/lib/aws-sdk-core/pageable_response.rb +112 -47
  48. data/lib/aws-sdk-core/pager.rb +35 -25
  49. data/lib/aws-sdk-core/param_converter.rb +5 -3
  50. data/lib/aws-sdk-core/param_validator.rb +109 -26
  51. data/lib/aws-sdk-core/plugins/api_key.rb +56 -0
  52. data/lib/aws-sdk-core/plugins/apig_authorizer_token.rb +32 -0
  53. data/lib/aws-sdk-core/plugins/apig_credentials_configuration.rb +36 -0
  54. data/lib/aws-sdk-core/plugins/apig_user_agent.rb +39 -0
  55. data/lib/aws-sdk-core/plugins/checksum_algorithm.rb +340 -0
  56. data/lib/aws-sdk-core/plugins/client_metrics_plugin.rb +283 -0
  57. data/lib/aws-sdk-core/plugins/client_metrics_send_plugin.rb +86 -0
  58. data/lib/aws-sdk-core/plugins/credentials_configuration.rb +81 -0
  59. data/lib/aws-sdk-core/plugins/defaults_mode.rb +40 -0
  60. data/lib/aws-sdk-core/plugins/endpoint_discovery.rb +168 -0
  61. data/lib/aws-sdk-core/plugins/endpoint_pattern.rb +65 -0
  62. data/lib/aws-sdk-core/plugins/event_stream_configuration.rb +32 -0
  63. data/lib/aws-sdk-core/plugins/global_configuration.rb +21 -10
  64. data/lib/aws-sdk-core/plugins/helpful_socket_errors.rb +2 -0
  65. data/lib/aws-sdk-core/plugins/http_checksum.rb +64 -0
  66. data/lib/aws-sdk-core/plugins/idempotency_token.rb +3 -2
  67. data/lib/aws-sdk-core/plugins/invocation_id.rb +35 -0
  68. data/lib/aws-sdk-core/plugins/jsonvalue_converter.rb +31 -0
  69. data/lib/aws-sdk-core/plugins/logging.rb +20 -18
  70. data/lib/aws-sdk-core/plugins/param_converter.rb +11 -5
  71. data/lib/aws-sdk-core/plugins/param_validator.rb +10 -5
  72. data/lib/aws-sdk-core/plugins/protocols/api_gateway.rb +29 -0
  73. data/lib/aws-sdk-core/plugins/protocols/ec2.rb +4 -1
  74. data/lib/aws-sdk-core/plugins/protocols/json_rpc.rb +15 -12
  75. data/lib/aws-sdk-core/plugins/protocols/query.rb +4 -2
  76. data/lib/aws-sdk-core/plugins/protocols/rest_json.rb +18 -1
  77. data/lib/aws-sdk-core/plugins/protocols/rest_xml.rb +2 -0
  78. data/lib/aws-sdk-core/plugins/recursion_detection.rb +27 -0
  79. data/lib/aws-sdk-core/plugins/regional_endpoint.rb +96 -28
  80. data/lib/aws-sdk-core/plugins/response_paging.rb +8 -19
  81. data/lib/aws-sdk-core/plugins/retries/client_rate_limiter.rb +139 -0
  82. data/lib/aws-sdk-core/plugins/retries/clock_skew.rb +100 -0
  83. data/lib/aws-sdk-core/plugins/retries/error_inspector.rb +146 -0
  84. data/lib/aws-sdk-core/plugins/retries/retry_quota.rb +59 -0
  85. data/lib/aws-sdk-core/plugins/retry_errors.rb +342 -82
  86. data/lib/aws-sdk-core/plugins/signature_v2.rb +53 -0
  87. data/lib/aws-sdk-core/plugins/signature_v4.rb +144 -0
  88. data/lib/aws-sdk-core/plugins/stub_responses.rb +44 -18
  89. data/lib/aws-sdk-core/plugins/transfer_encoding.rb +53 -0
  90. data/lib/aws-sdk-core/plugins/user_agent.rb +25 -10
  91. data/lib/aws-sdk-core/process_credentials.rb +81 -0
  92. data/lib/aws-sdk-core/query/ec2_param_builder.rb +11 -3
  93. data/lib/aws-sdk-core/query/handler.rb +22 -16
  94. data/lib/aws-sdk-core/query/param.rb +2 -0
  95. data/lib/aws-sdk-core/query/param_builder.rb +12 -4
  96. data/lib/aws-sdk-core/query/param_list.rb +2 -0
  97. data/lib/aws-sdk-core/query.rb +7 -0
  98. data/lib/aws-sdk-core/refreshing_credentials.rb +16 -3
  99. data/lib/aws-sdk-core/resources/collection.rb +123 -0
  100. data/lib/aws-sdk-core/rest/handler.rb +3 -0
  101. data/lib/aws-sdk-core/rest/request/body.rb +21 -1
  102. data/lib/aws-sdk-core/rest/request/builder.rb +4 -1
  103. data/lib/aws-sdk-core/rest/request/endpoint.rb +13 -6
  104. data/lib/aws-sdk-core/rest/request/headers.rb +38 -5
  105. data/lib/aws-sdk-core/rest/request/querystring_builder.rb +17 -2
  106. data/lib/aws-sdk-core/rest/response/body.rb +16 -1
  107. data/lib/aws-sdk-core/rest/response/headers.rb +13 -1
  108. data/lib/aws-sdk-core/rest/response/parser.rb +20 -14
  109. data/lib/aws-sdk-core/rest/response/status_code.rb +2 -0
  110. data/lib/aws-sdk-core/rest.rb +12 -0
  111. data/lib/aws-sdk-core/shared_config.rb +205 -69
  112. data/lib/aws-sdk-core/shared_credentials.rb +11 -1
  113. data/lib/aws-sdk-core/sso_credentials.rb +136 -0
  114. data/lib/aws-sdk-core/structure.rb +33 -13
  115. data/lib/aws-sdk-core/stubbing/data_applicator.rb +3 -1
  116. data/lib/aws-sdk-core/stubbing/empty_stub.rb +12 -3
  117. data/lib/aws-sdk-core/stubbing/protocols/api_gateway.rb +10 -0
  118. data/lib/aws-sdk-core/stubbing/protocols/ec2.rb +3 -1
  119. data/lib/aws-sdk-core/stubbing/protocols/json.rb +3 -1
  120. data/lib/aws-sdk-core/stubbing/protocols/query.rb +4 -2
  121. data/lib/aws-sdk-core/stubbing/protocols/rest.rb +120 -2
  122. data/lib/aws-sdk-core/stubbing/protocols/rest_json.rb +8 -2
  123. data/lib/aws-sdk-core/stubbing/protocols/rest_xml.rb +11 -7
  124. data/lib/aws-sdk-core/stubbing/stub_data.rb +18 -3
  125. data/lib/aws-sdk-core/stubbing/xml_error.rb +2 -0
  126. data/lib/aws-sdk-core/type_builder.rb +2 -0
  127. data/lib/aws-sdk-core/util.rb +72 -0
  128. data/lib/aws-sdk-core/waiters/errors.rb +2 -0
  129. data/lib/aws-sdk-core/waiters/poller.rb +7 -9
  130. data/lib/aws-sdk-core/waiters/waiter.rb +5 -2
  131. data/lib/aws-sdk-core/waiters.rb +5 -0
  132. data/lib/aws-sdk-core/xml/builder.rb +15 -7
  133. data/lib/aws-sdk-core/xml/default_list.rb +2 -0
  134. data/lib/aws-sdk-core/xml/default_map.rb +2 -0
  135. data/lib/aws-sdk-core/xml/doc_builder.rb +15 -4
  136. data/lib/aws-sdk-core/xml/error_handler.rb +30 -6
  137. data/lib/aws-sdk-core/xml/parser/engines/libxml.rb +2 -0
  138. data/lib/aws-sdk-core/xml/parser/engines/nokogiri.rb +2 -0
  139. data/lib/aws-sdk-core/xml/parser/engines/oga.rb +2 -0
  140. data/lib/aws-sdk-core/xml/parser/engines/ox.rb +7 -1
  141. data/lib/aws-sdk-core/xml/parser/engines/rexml.rb +4 -1
  142. data/lib/aws-sdk-core/xml/parser/frame.rb +31 -6
  143. data/lib/aws-sdk-core/xml/parser/parsing_error.rb +2 -0
  144. data/lib/aws-sdk-core/xml/parser/stack.rb +2 -0
  145. data/lib/aws-sdk-core/xml/parser.rb +8 -11
  146. data/lib/aws-sdk-core/xml.rb +11 -0
  147. data/lib/aws-sdk-core.rb +112 -440
  148. data/lib/aws-sdk-sso/client.rb +570 -0
  149. data/lib/aws-sdk-sso/client_api.rb +190 -0
  150. data/lib/aws-sdk-sso/customizations.rb +1 -0
  151. data/lib/aws-sdk-sso/errors.rb +102 -0
  152. data/lib/aws-sdk-sso/resource.rb +26 -0
  153. data/lib/aws-sdk-sso/types.rb +352 -0
  154. data/lib/aws-sdk-sso.rb +55 -0
  155. data/lib/aws-sdk-sts/client.rb +2315 -0
  156. data/lib/aws-sdk-sts/client_api.rb +344 -0
  157. data/lib/aws-sdk-sts/customizations.rb +4 -0
  158. data/lib/aws-sdk-sts/errors.rb +166 -0
  159. data/lib/aws-sdk-sts/plugins/sts_regional_endpoints.rb +38 -0
  160. data/lib/aws-sdk-sts/presigner.rb +75 -0
  161. data/lib/aws-sdk-sts/resource.rb +26 -0
  162. data/lib/aws-sdk-sts/types.rb +1673 -0
  163. data/lib/aws-sdk-sts.rb +55 -0
  164. data/lib/seahorse/client/async_base.rb +52 -0
  165. data/lib/seahorse/client/async_response.rb +64 -0
  166. data/lib/seahorse/client/base.rb +8 -9
  167. data/lib/seahorse/client/block_io.rb +6 -2
  168. data/lib/seahorse/client/configuration.rb +16 -2
  169. data/lib/seahorse/client/events.rb +3 -1
  170. data/lib/seahorse/client/h2/connection.rb +250 -0
  171. data/lib/seahorse/client/h2/handler.rb +152 -0
  172. data/lib/seahorse/client/handler.rb +2 -0
  173. data/lib/seahorse/client/handler_builder.rb +2 -0
  174. data/lib/seahorse/client/handler_list.rb +2 -0
  175. data/lib/seahorse/client/handler_list_entry.rb +6 -4
  176. data/lib/seahorse/client/http/async_response.rb +44 -0
  177. data/lib/seahorse/client/http/headers.rb +2 -0
  178. data/lib/seahorse/client/http/request.rb +5 -3
  179. data/lib/seahorse/client/http/response.rb +18 -11
  180. data/lib/seahorse/client/logging/formatter.rb +9 -1
  181. data/lib/seahorse/client/logging/handler.rb +4 -0
  182. data/lib/seahorse/client/managed_file.rb +2 -0
  183. data/lib/seahorse/client/net_http/connection_pool.rb +46 -27
  184. data/lib/seahorse/client/net_http/handler.rb +29 -7
  185. data/lib/seahorse/client/net_http/patches.rb +18 -79
  186. data/lib/seahorse/client/networking_error.rb +30 -0
  187. data/lib/seahorse/client/plugin.rb +69 -6
  188. data/lib/seahorse/client/plugin_list.rb +2 -0
  189. data/lib/seahorse/client/plugins/content_length.rb +14 -3
  190. data/lib/seahorse/client/plugins/endpoint.rb +16 -10
  191. data/lib/seahorse/client/plugins/h2.rb +69 -0
  192. data/lib/seahorse/client/plugins/logging.rb +19 -19
  193. data/lib/seahorse/client/plugins/net_http.rb +58 -14
  194. data/lib/seahorse/client/plugins/operation_methods.rb +2 -0
  195. data/lib/seahorse/client/plugins/raise_response_errors.rb +6 -4
  196. data/lib/seahorse/client/plugins/request_callback.rb +110 -0
  197. data/lib/seahorse/client/plugins/response_target.rb +28 -10
  198. data/lib/seahorse/client/request.rb +2 -0
  199. data/lib/seahorse/client/request_context.rb +7 -0
  200. data/lib/seahorse/client/response.rb +5 -5
  201. data/lib/seahorse/model/api.rb +43 -0
  202. data/lib/seahorse/model/authorizer.rb +23 -0
  203. data/lib/seahorse/model/operation.rb +28 -0
  204. data/lib/seahorse/model/shapes.rb +71 -2
  205. data/lib/seahorse/util.rb +9 -22
  206. data/lib/seahorse/version.rb +2 -0
  207. data/lib/seahorse.rb +63 -60
  208. metadata +132 -520
  209. data/apis/acm/2015-12-08/api-2.json +0 -595
  210. data/apis/acm/2015-12-08/examples-1.json +0 -5
  211. data/apis/acm/2015-12-08/paginators-1.json +0 -10
  212. data/apis/apigateway/2015-07-09/api-2.json +0 -4523
  213. data/apis/apigateway/2015-07-09/examples-1.json +0 -5
  214. data/apis/apigateway/2015-07-09/paginators-1.json +0 -70
  215. data/apis/application-autoscaling/2016-02-06/api-2.json +0 -511
  216. data/apis/application-autoscaling/2016-02-06/examples-1.json +0 -257
  217. data/apis/application-autoscaling/2016-02-06/paginators-1.json +0 -22
  218. data/apis/appstream/2016-12-01/api-2.json +0 -820
  219. data/apis/appstream/2016-12-01/examples-1.json +0 -5
  220. data/apis/appstream/2016-12-01/waiters-2.json +0 -55
  221. data/apis/autoscaling/2011-01-01/api-2.json +0 -2172
  222. data/apis/autoscaling/2011-01-01/examples-1.json +0 -1395
  223. data/apis/autoscaling/2011-01-01/paginators-1.json +0 -52
  224. data/apis/autoscaling/2011-01-01/resources-1.json +0 -1624
  225. data/apis/autoscaling/2011-01-01/waiters-2.json +0 -62
  226. data/apis/batch/2016-08-10/api-2.json +0 -885
  227. data/apis/batch/2016-08-10/examples-1.json +0 -589
  228. data/apis/budgets/2016-10-20/api-2.json +0 -697
  229. data/apis/budgets/2016-10-20/examples-1.json +0 -5
  230. data/apis/budgets/2016-10-20/paginators-1.json +0 -4
  231. data/apis/clouddirectory/2016-05-10/api-2.json +0 -3033
  232. data/apis/clouddirectory/2016-05-10/examples-1.json +0 -5
  233. data/apis/clouddirectory/2016-05-10/paginators-1.json +0 -84
  234. data/apis/cloudformation/2010-05-15/api-2.json +0 -1428
  235. data/apis/cloudformation/2010-05-15/examples-1.json +0 -158
  236. data/apis/cloudformation/2010-05-15/paginators-1.json +0 -27
  237. data/apis/cloudformation/2010-05-15/resources-1.json +0 -211
  238. data/apis/cloudformation/2010-05-15/waiters-2.json +0 -157
  239. data/apis/cloudfront/2016-01-28/api-2.json +0 -2219
  240. data/apis/cloudfront/2016-01-28/examples-1.json +0 -5
  241. data/apis/cloudfront/2016-01-28/paginators-1.json +0 -32
  242. data/apis/cloudfront/2016-01-28/waiters-2.json +0 -47
  243. data/apis/cloudfront/2016-08-01/api-2.json +0 -2548
  244. data/apis/cloudfront/2016-08-01/examples-1.json +0 -5
  245. data/apis/cloudfront/2016-08-01/paginators-1.json +0 -32
  246. data/apis/cloudfront/2016-08-01/waiters-2.json +0 -47
  247. data/apis/cloudfront/2016-08-20/api-2.json +0 -2586
  248. data/apis/cloudfront/2016-08-20/paginators-1.json +0 -32
  249. data/apis/cloudfront/2016-08-20/waiters-2.json +0 -47
  250. data/apis/cloudfront/2016-09-07/api-2.json +0 -2596
  251. data/apis/cloudfront/2016-09-07/examples-1.json +0 -5
  252. data/apis/cloudfront/2016-09-07/paginators-1.json +0 -32
  253. data/apis/cloudfront/2016-09-07/waiters-2.json +0 -47
  254. data/apis/cloudfront/2016-09-29/api-2.json +0 -2599
  255. data/apis/cloudfront/2016-09-29/examples-1.json +0 -5
  256. data/apis/cloudfront/2016-09-29/paginators-1.json +0 -32
  257. data/apis/cloudfront/2016-09-29/waiters-2.json +0 -47
  258. data/apis/cloudfront/2016-11-25/api-2.json +0 -2665
  259. data/apis/cloudfront/2016-11-25/examples-1.json +0 -5
  260. data/apis/cloudfront/2016-11-25/paginators-1.json +0 -32
  261. data/apis/cloudfront/2016-11-25/waiters-2.json +0 -47
  262. data/apis/cloudhsm/2014-05-30/api-2.json +0 -878
  263. data/apis/cloudhsm/2014-05-30/examples-1.json +0 -5
  264. data/apis/cloudsearch/2013-01-01/api-2.json +0 -2002
  265. data/apis/cloudsearch/2013-01-01/paginators-1.json +0 -20
  266. data/apis/cloudsearchdomain/2013-01-01/api-2.json +0 -374
  267. data/apis/cloudsearchdomain/2013-01-01/examples-1.json +0 -5
  268. data/apis/cloudtrail/2013-11-01/api-2.json +0 -907
  269. data/apis/cloudtrail/2013-11-01/examples-1.json +0 -5
  270. data/apis/cloudtrail/2013-11-01/paginators-1.json +0 -13
  271. data/apis/codebuild/2016-10-06/api-2.json +0 -702
  272. data/apis/codebuild/2016-10-06/examples-1.json +0 -5
  273. data/apis/codebuild/2016-10-06/paginators-1.json +0 -4
  274. data/apis/codecommit/2015-04-13/api-2.json +0 -1112
  275. data/apis/codecommit/2015-04-13/examples-1.json +0 -5
  276. data/apis/codecommit/2015-04-13/paginators-1.json +0 -19
  277. data/apis/codedeploy/2014-10-06/api-2.json +0 -2300
  278. data/apis/codedeploy/2014-10-06/examples-1.json +0 -5
  279. data/apis/codedeploy/2014-10-06/paginators-1.json +0 -4
  280. data/apis/codedeploy/2014-10-06/waiters-2.json +0 -30
  281. data/apis/codepipeline/2015-07-09/api-2.json +0 -1714
  282. data/apis/codepipeline/2015-07-09/examples-1.json +0 -5
  283. data/apis/cognito-identity/2014-06-30/api-2.json +0 -943
  284. data/apis/cognito-identity/2014-06-30/examples-1.json +0 -5
  285. data/apis/cognito-identity/2014-06-30/paginators-1.json +0 -4
  286. data/apis/cognito-idp/2016-04-18/api-2.json +0 -3325
  287. data/apis/cognito-idp/2016-04-18/examples-1.json +0 -5
  288. data/apis/cognito-sync/2014-06-30/api-2.json +0 -1875
  289. data/apis/config/2014-11-12/api-2.json +0 -1417
  290. data/apis/config/2014-11-12/examples-1.json +0 -5
  291. data/apis/config/2014-11-12/paginators-1.json +0 -10
  292. data/apis/cur/2017-01-06/api-2.json +0 -226
  293. data/apis/cur/2017-01-06/examples-1.json +0 -5
  294. data/apis/cur/2017-01-06/paginators-1.json +0 -9
  295. data/apis/datapipeline/2012-10-29/api-2.json +0 -1168
  296. data/apis/datapipeline/2012-10-29/paginators-1.json +0 -26
  297. data/apis/devicefarm/2015-06-23/api-2.json +0 -2031
  298. data/apis/devicefarm/2015-06-23/examples-1.json +0 -1242
  299. data/apis/devicefarm/2015-06-23/paginators-1.json +0 -74
  300. data/apis/directconnect/2012-10-25/api-2.json +0 -1347
  301. data/apis/directconnect/2012-10-25/examples-1.json +0 -5
  302. data/apis/directconnect/2012-10-25/paginators-1.json +0 -22
  303. data/apis/discovery/2015-11-01/api-2.json +0 -867
  304. data/apis/discovery/2015-11-01/examples-1.json +0 -5
  305. data/apis/dms/2016-01-01/api-2.json +0 -1505
  306. data/apis/dms/2016-01-01/examples-1.json +0 -5
  307. data/apis/ds/2015-04-16/api-2.json +0 -1972
  308. data/apis/ds/2015-04-16/examples-1.json +0 -5
  309. data/apis/dynamodb/2011-12-05/api-2.json +0 -802
  310. data/apis/dynamodb/2011-12-05/examples-1.json +0 -5
  311. data/apis/dynamodb/2011-12-05/paginators-1.json +0 -26
  312. data/apis/dynamodb/2011-12-05/waiters-2.json +0 -35
  313. data/apis/dynamodb/2012-08-10/api-2.json +0 -1405
  314. data/apis/dynamodb/2012-08-10/examples-1.json +0 -628
  315. data/apis/dynamodb/2012-08-10/paginators-1.json +0 -26
  316. data/apis/dynamodb/2012-08-10/resources-1.json +0 -136
  317. data/apis/dynamodb/2012-08-10/waiters-2.json +0 -35
  318. data/apis/ec2/2015-10-01/api-2.json +0 -13760
  319. data/apis/ec2/2015-10-01/examples-1.json +0 -5
  320. data/apis/ec2/2015-10-01/paginators-1.json +0 -138
  321. data/apis/ec2/2015-10-01/resources-1.json +0 -2582
  322. data/apis/ec2/2015-10-01/waiters-2.json +0 -593
  323. data/apis/ec2/2016-04-01/api-2.json +0 -14191
  324. data/apis/ec2/2016-04-01/examples-1.json +0 -3729
  325. data/apis/ec2/2016-04-01/paginators-1.json +0 -138
  326. data/apis/ec2/2016-04-01/resources-1.json +0 -2582
  327. data/apis/ec2/2016-04-01/waiters-2.json +0 -593
  328. data/apis/ec2/2016-09-15/api-2.json +0 -14415
  329. data/apis/ec2/2016-09-15/examples-1.json +0 -3740
  330. data/apis/ec2/2016-09-15/paginators-1.json +0 -138
  331. data/apis/ec2/2016-09-15/resources-1.json +0 -2582
  332. data/apis/ec2/2016-09-15/waiters-2.json +0 -593
  333. data/apis/ec2/2016-11-15/api-2.json +0 -15373
  334. data/apis/ec2/2016-11-15/examples-1.json +0 -3740
  335. data/apis/ec2/2016-11-15/paginators-1.json +0 -144
  336. data/apis/ec2/2016-11-15/resources-1.json +0 -2582
  337. data/apis/ec2/2016-11-15/waiters-2.json +0 -611
  338. data/apis/ecr/2015-09-21/api-2.json +0 -947
  339. data/apis/ecr/2015-09-21/examples-1.json +0 -215
  340. data/apis/ecr/2015-09-21/paginators-1.json +0 -22
  341. data/apis/ecs/2014-11-13/api-2.json +0 -1625
  342. data/apis/ecs/2014-11-13/examples-1.json +0 -883
  343. data/apis/ecs/2014-11-13/paginators-1.json +0 -40
  344. data/apis/ecs/2014-11-13/waiters-2.json +0 -93
  345. data/apis/elasticache/2015-02-02/api-2.json +0 -2474
  346. data/apis/elasticache/2015-02-02/examples-1.json +0 -2968
  347. data/apis/elasticache/2015-02-02/paginators-1.json +0 -76
  348. data/apis/elasticache/2015-02-02/waiters-2.json +0 -143
  349. data/apis/elasticbeanstalk/2010-12-01/api-2.json +0 -2332
  350. data/apis/elasticbeanstalk/2010-12-01/examples-1.json +0 -1109
  351. data/apis/elasticbeanstalk/2010-12-01/paginators-1.json +0 -25
  352. data/apis/elasticfilesystem/2015-02-01/api-2.json +0 -714
  353. data/apis/elasticfilesystem/2015-02-01/examples-1.json +0 -222
  354. data/apis/elasticloadbalancing/2012-06-01/api-2.json +0 -1590
  355. data/apis/elasticloadbalancing/2012-06-01/examples-1.json +0 -1036
  356. data/apis/elasticloadbalancing/2012-06-01/paginators-1.json +0 -18
  357. data/apis/elasticloadbalancing/2012-06-01/waiters-2.json +0 -49
  358. data/apis/elasticloadbalancingv2/2015-12-01/api-2.json +0 -1823
  359. data/apis/elasticloadbalancingv2/2015-12-01/examples-1.json +0 -1384
  360. data/apis/elasticloadbalancingv2/2015-12-01/paginators-1.json +0 -19
  361. data/apis/elasticmapreduce/2009-03-31/api-2.json +0 -1794
  362. data/apis/elasticmapreduce/2009-03-31/examples-1.json +0 -5
  363. data/apis/elasticmapreduce/2009-03-31/paginators-1.json +0 -32
  364. data/apis/elasticmapreduce/2009-03-31/waiters-2.json +0 -67
  365. data/apis/elastictranscoder/2012-09-25/api-2.json +0 -1483
  366. data/apis/elastictranscoder/2012-09-25/examples-1.json +0 -5
  367. data/apis/elastictranscoder/2012-09-25/paginators-1.json +0 -24
  368. data/apis/elastictranscoder/2012-09-25/waiters-2.json +0 -30
  369. data/apis/email/2010-12-01/api-2.json +0 -2212
  370. data/apis/email/2010-12-01/examples-1.json +0 -953
  371. data/apis/email/2010-12-01/paginators-1.json +0 -13
  372. data/apis/email/2010-12-01/waiters-2.json +0 -18
  373. data/apis/es/2015-01-01/api-2.json +0 -862
  374. data/apis/es/2015-01-01/examples-1.json +0 -5
  375. data/apis/es/2015-01-01/paginators-1.json +0 -14
  376. data/apis/events/2015-10-07/api-2.json +0 -644
  377. data/apis/events/2015-10-07/examples-1.json +0 -5
  378. data/apis/firehose/2015-08-04/api-2.json +0 -866
  379. data/apis/firehose/2015-08-04/examples-1.json +0 -5
  380. data/apis/gamelift/2015-10-01/api-2.json +0 -2256
  381. data/apis/gamelift/2015-10-01/examples-1.json +0 -5
  382. data/apis/gamelift/2015-10-01/paginators-1.json +0 -4
  383. data/apis/glacier/2012-06-01/api-2.json +0 -1734
  384. data/apis/glacier/2012-06-01/examples-1.json +0 -806
  385. data/apis/glacier/2012-06-01/paginators-1.json +0 -28
  386. data/apis/glacier/2012-06-01/resources-1.json +0 -563
  387. data/apis/glacier/2012-06-01/waiters-2.json +0 -39
  388. data/apis/health/2016-08-04/api-2.json +0 -547
  389. data/apis/health/2016-08-04/examples-1.json +0 -5
  390. data/apis/health/2016-08-04/paginators-1.json +0 -31
  391. data/apis/iam/2010-05-08/api-2.json +0 -4730
  392. data/apis/iam/2010-05-08/examples-1.json +0 -1191
  393. data/apis/iam/2010-05-08/paginators-1.json +0 -198
  394. data/apis/iam/2010-05-08/resources-1.json +0 -1740
  395. data/apis/iam/2010-05-08/waiters-2.json +0 -39
  396. data/apis/importexport/2010-06-01/api-2.json +0 -667
  397. data/apis/importexport/2010-06-01/paginators-1.json +0 -11
  398. data/apis/inspector/2016-02-16/api-2.json +0 -1965
  399. data/apis/inspector/2016-02-16/examples-1.json +0 -1140
  400. data/apis/iot/2015-05-28/api-2.json +0 -4347
  401. data/apis/iot/2015-05-28/examples-1.json +0 -5
  402. data/apis/iot-data/2015-05-28/api-2.json +0 -264
  403. data/apis/kinesis/2013-12-02/api-2.json +0 -890
  404. data/apis/kinesis/2013-12-02/examples-1.json +0 -5
  405. data/apis/kinesis/2013-12-02/paginators-1.json +0 -18
  406. data/apis/kinesis/2013-12-02/waiters-2.json +0 -18
  407. data/apis/kinesisanalytics/2015-08-14/api-2.json +0 -1049
  408. data/apis/kinesisanalytics/2015-08-14/examples-1.json +0 -5
  409. data/apis/kms/2014-11-01/api-2.json +0 -1492
  410. data/apis/kms/2014-11-01/examples-1.json +0 -862
  411. data/apis/kms/2014-11-01/paginators-1.json +0 -32
  412. data/apis/lambda/2014-11-11/api-2.json +0 -668
  413. data/apis/lambda/2014-11-11/paginators-1.json +0 -16
  414. data/apis/lambda/2015-03-31/api-2.json +0 -1514
  415. data/apis/lambda/2015-03-31/examples-1.json +0 -614
  416. data/apis/lambda/2015-03-31/paginators-1.json +0 -16
  417. data/apis/lightsail/2016-11-28/api-2.json +0 -2137
  418. data/apis/lightsail/2016-11-28/examples-1.json +0 -5
  419. data/apis/logs/2014-03-28/api-2.json +0 -1246
  420. data/apis/logs/2014-03-28/examples-1.json +0 -5
  421. data/apis/logs/2014-03-28/paginators-1.json +0 -49
  422. data/apis/machinelearning/2014-12-12/api-2.json +0 -1978
  423. data/apis/machinelearning/2014-12-12/examples-1.json +0 -5
  424. data/apis/machinelearning/2014-12-12/paginators-1.json +0 -28
  425. data/apis/machinelearning/2014-12-12/waiters-2.json +0 -81
  426. data/apis/marketplacecommerceanalytics/2015-07-01/api-2.json +0 -170
  427. data/apis/marketplacecommerceanalytics/2015-07-01/examples-1.json +0 -5
  428. data/apis/meteringmarketplace/2016-01-14/api-2.json +0 -263
  429. data/apis/meteringmarketplace/2016-01-14/examples-1.json +0 -5
  430. data/apis/monitoring/2010-08-01/api-2.json +0 -811
  431. data/apis/monitoring/2010-08-01/examples-1.json +0 -5
  432. data/apis/monitoring/2010-08-01/paginators-1.json +0 -24
  433. data/apis/monitoring/2010-08-01/resources-1.json +0 -346
  434. data/apis/monitoring/2010-08-01/waiters-2.json +0 -18
  435. data/apis/mturk-requester/2017-01-17/api-2.json +0 -1665
  436. data/apis/mturk-requester/2017-01-17/examples-1.json +0 -5
  437. data/apis/mturk-requester/2017-01-17/paginators-1.json +0 -54
  438. data/apis/opsworks/2013-02-18/api-2.json +0 -2607
  439. data/apis/opsworks/2013-02-18/examples-1.json +0 -5
  440. data/apis/opsworks/2013-02-18/paginators-1.json +0 -55
  441. data/apis/opsworks/2013-02-18/resources-1.json +0 -173
  442. data/apis/opsworks/2013-02-18/waiters-2.json +0 -295
  443. data/apis/opsworkscm/2016-11-01/api-2.json +0 -730
  444. data/apis/opsworkscm/2016-11-01/examples-1.json +0 -5
  445. data/apis/opsworkscm/2016-11-01/paginators-1.json +0 -4
  446. data/apis/organizations/2016-11-28/api-2.json +0 -1989
  447. data/apis/organizations/2016-11-28/examples-1.json +0 -1398
  448. data/apis/organizations/2016-11-28/paginators-1.json +0 -4
  449. data/apis/pinpoint/2016-12-01/api-2.json +0 -2753
  450. data/apis/pinpoint/2016-12-01/examples-1.json +0 -5
  451. data/apis/polly/2016-06-10/api-2.json +0 -504
  452. data/apis/polly/2016-06-10/examples-1.json +0 -171
  453. data/apis/rds/2013-01-10/api-2.json +0 -2902
  454. data/apis/rds/2013-01-10/examples-1.json +0 -5
  455. data/apis/rds/2013-01-10/paginators-1.json +0 -97
  456. data/apis/rds/2013-02-12/api-2.json +0 -3058
  457. data/apis/rds/2013-02-12/examples-1.json +0 -5
  458. data/apis/rds/2013-02-12/paginators-1.json +0 -110
  459. data/apis/rds/2013-09-09/api-2.json +0 -3159
  460. data/apis/rds/2013-09-09/examples-1.json +0 -5
  461. data/apis/rds/2013-09-09/paginators-1.json +0 -110
  462. data/apis/rds/2013-09-09/waiters-2.json +0 -97
  463. data/apis/rds/2014-09-01/api-2.json +0 -3272
  464. data/apis/rds/2014-09-01/examples-1.json +0 -5
  465. data/apis/rds/2014-09-01/paginators-1.json +0 -4
  466. data/apis/rds/2014-10-31/api-2.json +0 -5098
  467. data/apis/rds/2014-10-31/examples-1.json +0 -1861
  468. data/apis/rds/2014-10-31/paginators-1.json +0 -110
  469. data/apis/rds/2014-10-31/resources-1.json +0 -3272
  470. data/apis/rds/2014-10-31/waiters-2.json +0 -90
  471. data/apis/redshift/2012-12-01/api-2.json +0 -3775
  472. data/apis/redshift/2012-12-01/examples-1.json +0 -5
  473. data/apis/redshift/2012-12-01/paginators-1.json +0 -94
  474. data/apis/redshift/2012-12-01/waiters-2.json +0 -97
  475. data/apis/rekognition/2016-06-27/api-2.json +0 -844
  476. data/apis/rekognition/2016-06-27/examples-1.json +0 -651
  477. data/apis/rekognition/2016-06-27/paginators-1.json +0 -16
  478. data/apis/route53/2013-04-01/api-2.json +0 -3312
  479. data/apis/route53/2013-04-01/examples-1.json +0 -762
  480. data/apis/route53/2013-04-01/paginators-1.json +0 -33
  481. data/apis/route53/2013-04-01/waiters-2.json +0 -18
  482. data/apis/route53domains/2014-05-15/api-2.json +0 -1323
  483. data/apis/route53domains/2014-05-15/paginators-1.json +0 -17
  484. data/apis/runtime.lex/2016-11-28/api-2.json +0 -243
  485. data/apis/runtime.lex/2016-11-28/examples-1.json +0 -5
  486. data/apis/runtime.lex/2016-11-28/paginators-1.json +0 -4
  487. data/apis/s3/2006-03-01/api-2.json +0 -5368
  488. data/apis/s3/2006-03-01/examples-1.json +0 -5
  489. data/apis/s3/2006-03-01/paginators-1.json +0 -66
  490. data/apis/s3/2006-03-01/resources-1.json +0 -1176
  491. data/apis/s3/2006-03-01/waiters-2.json +0 -73
  492. data/apis/sdb/2009-04-15/api-2.json +0 -955
  493. data/apis/sdb/2009-04-15/paginators-1.json +0 -15
  494. data/apis/servicecatalog/2015-12-10/api-2.json +0 -1955
  495. data/apis/servicecatalog/2015-12-10/examples-1.json +0 -5
  496. data/apis/shield/2016-06-02/api-2.json +0 -494
  497. data/apis/shield/2016-06-02/examples-1.json +0 -5
  498. data/apis/sms/2016-10-24/api-2.json +0 -612
  499. data/apis/sms/2016-10-24/examples-1.json +0 -5
  500. data/apis/sms/2016-10-24/paginators-1.json +0 -28
  501. data/apis/snowball/2016-06-30/api-2.json +0 -834
  502. data/apis/snowball/2016-06-30/examples-1.json +0 -442
  503. data/apis/snowball/2016-06-30/paginators-1.json +0 -16
  504. data/apis/sns/2010-03-31/api-2.json +0 -1145
  505. data/apis/sns/2010-03-31/examples-1.json +0 -5
  506. data/apis/sns/2010-03-31/paginators-1.json +0 -29
  507. data/apis/sns/2010-03-31/resources-1.json +0 -327
  508. data/apis/sqs/2012-11-05/api-2.json +0 -986
  509. data/apis/sqs/2012-11-05/examples-1.json +0 -5
  510. data/apis/sqs/2012-11-05/paginators-1.json +0 -7
  511. data/apis/sqs/2012-11-05/resources-1.json +0 -232
  512. data/apis/ssm/2014-11-06/api-2.json +0 -5296
  513. data/apis/ssm/2014-11-06/examples-1.json +0 -5
  514. data/apis/ssm/2014-11-06/paginators-1.json +0 -40
  515. data/apis/states/2016-11-23/api-2.json +0 -1021
  516. data/apis/states/2016-11-23/examples-1.json +0 -5
  517. data/apis/states/2016-11-23/paginators-1.json +0 -28
  518. data/apis/storagegateway/2013-06-30/api-2.json +0 -2551
  519. data/apis/storagegateway/2013-06-30/examples-1.json +0 -1381
  520. data/apis/storagegateway/2013-06-30/paginators-1.json +0 -52
  521. data/apis/streams.dynamodb/2012-08-10/api-2.json +0 -406
  522. data/apis/streams.dynamodb/2012-08-10/examples-1.json +0 -212
  523. data/apis/streams.dynamodb/2012-08-10/paginators-1.json +0 -4
  524. data/apis/sts/2011-06-15/api-2.json +0 -522
  525. data/apis/sts/2011-06-15/examples-1.json +0 -206
  526. data/apis/support/2013-04-15/api-2.json +0 -772
  527. data/apis/support/2013-04-15/examples-1.json +0 -5
  528. data/apis/support/2013-04-15/paginators-1.json +0 -25
  529. data/apis/swf/2012-01-25/api-2.json +0 -2839
  530. data/apis/swf/2012-01-25/paginators-1.json +0 -46
  531. data/apis/waf/2015-08-24/api-2.json +0 -1959
  532. data/apis/waf/2015-08-24/examples-1.json +0 -1017
  533. data/apis/waf/2015-08-24/paginators-1.json +0 -4
  534. data/apis/waf-regional/2016-11-28/api-2.json +0 -2090
  535. data/apis/waf-regional/2016-11-28/examples-1.json +0 -1017
  536. data/apis/waf-regional/2016-11-28/paginators-1.json +0 -4
  537. data/apis/workdocs/2016-05-01/api-2.json +0 -1781
  538. data/apis/workdocs/2016-05-01/examples-1.json +0 -5
  539. data/apis/workdocs/2016-05-01/paginators-1.json +0 -25
  540. data/apis/workspaces/2015-04-08/api-2.json +0 -840
  541. data/apis/workspaces/2015-04-08/examples-1.json +0 -5
  542. data/apis/workspaces/2015-04-08/paginators-1.json +0 -20
  543. data/apis/xray/2016-04-12/api-2.json +0 -491
  544. data/apis/xray/2016-04-12/examples-1.json +0 -5
  545. data/bin/aws.rb +0 -180
  546. data/endpoints.json +0 -1935
  547. data/lib/aws-sdk-core/acm.rb +0 -6
  548. data/lib/aws-sdk-core/api/builder.rb +0 -106
  549. data/lib/aws-sdk-core/api/customizations.rb +0 -261
  550. data/lib/aws-sdk-core/api/docs/builder.rb +0 -223
  551. data/lib/aws-sdk-core/api/docs/client_type_documenter.rb +0 -118
  552. data/lib/aws-sdk-core/api/docs/crosslink.rb +0 -43
  553. data/lib/aws-sdk-core/api/docs/docstring_provider.rb +0 -75
  554. data/lib/aws-sdk-core/api/docs/operation_documenter.rb +0 -151
  555. data/lib/aws-sdk-core/api/docs/param_formatter.rb +0 -163
  556. data/lib/aws-sdk-core/api/docs/request_syntax_example.rb +0 -22
  557. data/lib/aws-sdk-core/api/docs/response_structure_example.rb +0 -91
  558. data/lib/aws-sdk-core/api/docs/shared_example.rb +0 -100
  559. data/lib/aws-sdk-core/api/docs/utils.rb +0 -133
  560. data/lib/aws-sdk-core/api/shape_map.rb +0 -142
  561. data/lib/aws-sdk-core/apigateway.rb +0 -6
  562. data/lib/aws-sdk-core/applicationautoscaling.rb +0 -6
  563. data/lib/aws-sdk-core/applicationdiscoveryservice.rb +0 -5
  564. data/lib/aws-sdk-core/appstream.rb +0 -6
  565. data/lib/aws-sdk-core/autoscaling.rb +0 -8
  566. data/lib/aws-sdk-core/batch.rb +0 -5
  567. data/lib/aws-sdk-core/budgets.rb +0 -6
  568. data/lib/aws-sdk-core/checksums.rb +0 -51
  569. data/lib/aws-sdk-core/client.rb +0 -59
  570. data/lib/aws-sdk-core/client_waiters.rb +0 -120
  571. data/lib/aws-sdk-core/clouddirectory.rb +0 -6
  572. data/lib/aws-sdk-core/cloudformation.rb +0 -8
  573. data/lib/aws-sdk-core/cloudfront/cookie_signer.rb +0 -44
  574. data/lib/aws-sdk-core/cloudfront/signer.rb +0 -141
  575. data/lib/aws-sdk-core/cloudfront/url_signer.rb +0 -48
  576. data/lib/aws-sdk-core/cloudfront.rb +0 -17
  577. data/lib/aws-sdk-core/cloudhsm.rb +0 -5
  578. data/lib/aws-sdk-core/cloudsearch.rb +0 -5
  579. data/lib/aws-sdk-core/cloudsearchdomain.rb +0 -5
  580. data/lib/aws-sdk-core/cloudtrail.rb +0 -6
  581. data/lib/aws-sdk-core/cloudwatch.rb +0 -8
  582. data/lib/aws-sdk-core/cloudwatchevents.rb +0 -5
  583. data/lib/aws-sdk-core/cloudwatchlogs.rb +0 -6
  584. data/lib/aws-sdk-core/codebuild.rb +0 -6
  585. data/lib/aws-sdk-core/codecommit.rb +0 -6
  586. data/lib/aws-sdk-core/codedeploy.rb +0 -7
  587. data/lib/aws-sdk-core/codepipeline.rb +0 -5
  588. data/lib/aws-sdk-core/cognitoidentity.rb +0 -6
  589. data/lib/aws-sdk-core/cognitoidentityprovider.rb +0 -5
  590. data/lib/aws-sdk-core/cognitosync.rb +0 -4
  591. data/lib/aws-sdk-core/configservice.rb +0 -6
  592. data/lib/aws-sdk-core/costandusagereportservice.rb +0 -6
  593. data/lib/aws-sdk-core/databasemigrationservice.rb +0 -5
  594. data/lib/aws-sdk-core/datapipeline.rb +0 -5
  595. data/lib/aws-sdk-core/devicefarm.rb +0 -6
  596. data/lib/aws-sdk-core/directconnect.rb +0 -6
  597. data/lib/aws-sdk-core/directoryservice.rb +0 -5
  598. data/lib/aws-sdk-core/dynamodb/attribute_value.rb +0 -108
  599. data/lib/aws-sdk-core/dynamodb.rb +0 -40
  600. data/lib/aws-sdk-core/dynamodbstreams.rb +0 -6
  601. data/lib/aws-sdk-core/ec2.rb +0 -8
  602. data/lib/aws-sdk-core/ecr.rb +0 -6
  603. data/lib/aws-sdk-core/ecs.rb +0 -7
  604. data/lib/aws-sdk-core/efs.rb +0 -5
  605. data/lib/aws-sdk-core/elasticache.rb +0 -7
  606. data/lib/aws-sdk-core/elasticbeanstalk.rb +0 -6
  607. data/lib/aws-sdk-core/elasticloadbalancing.rb +0 -7
  608. data/lib/aws-sdk-core/elasticloadbalancingv2.rb +0 -6
  609. data/lib/aws-sdk-core/elasticsearchservice.rb +0 -6
  610. data/lib/aws-sdk-core/elastictranscoder.rb +0 -7
  611. data/lib/aws-sdk-core/empty_structure.rb +0 -3
  612. data/lib/aws-sdk-core/emr.rb +0 -7
  613. data/lib/aws-sdk-core/endpoint_provider.rb +0 -104
  614. data/lib/aws-sdk-core/firehose.rb +0 -5
  615. data/lib/aws-sdk-core/gamelift.rb +0 -6
  616. data/lib/aws-sdk-core/glacier.rb +0 -8
  617. data/lib/aws-sdk-core/health.rb +0 -6
  618. data/lib/aws-sdk-core/iam.rb +0 -8
  619. data/lib/aws-sdk-core/importexport.rb +0 -5
  620. data/lib/aws-sdk-core/inspector.rb +0 -5
  621. data/lib/aws-sdk-core/iot.rb +0 -5
  622. data/lib/aws-sdk-core/iotdataplane.rb +0 -4
  623. data/lib/aws-sdk-core/kinesis.rb +0 -7
  624. data/lib/aws-sdk-core/kinesisanalytics.rb +0 -5
  625. data/lib/aws-sdk-core/kms.rb +0 -6
  626. data/lib/aws-sdk-core/lambda.rb +0 -6
  627. data/lib/aws-sdk-core/lambdapreview.rb +0 -5
  628. data/lib/aws-sdk-core/lex.rb +0 -6
  629. data/lib/aws-sdk-core/lightsail.rb +0 -5
  630. data/lib/aws-sdk-core/machinelearning.rb +0 -7
  631. data/lib/aws-sdk-core/marketplacecommerceanalytics.rb +0 -5
  632. data/lib/aws-sdk-core/marketplacemetering.rb +0 -5
  633. data/lib/aws-sdk-core/mturk.rb +0 -6
  634. data/lib/aws-sdk-core/opsworks.rb +0 -8
  635. data/lib/aws-sdk-core/opsworkscm.rb +0 -6
  636. data/lib/aws-sdk-core/organizations.rb +0 -6
  637. data/lib/aws-sdk-core/partitions/partition.rb +0 -95
  638. data/lib/aws-sdk-core/partitions/partition_list.rb +0 -60
  639. data/lib/aws-sdk-core/partitions/region.rb +0 -66
  640. data/lib/aws-sdk-core/partitions/service.rb +0 -74
  641. data/lib/aws-sdk-core/partitions.rb +0 -174
  642. data/lib/aws-sdk-core/pinpoint.rb +0 -5
  643. data/lib/aws-sdk-core/plugins/api_gateway_header.rb +0 -19
  644. data/lib/aws-sdk-core/plugins/csd_conditional_signing.rb +0 -30
  645. data/lib/aws-sdk-core/plugins/csd_switch_to_post.rb +0 -36
  646. data/lib/aws-sdk-core/plugins/dynamodb_crc32_validation.rb +0 -52
  647. data/lib/aws-sdk-core/plugins/dynamodb_extended_retries.rb +0 -22
  648. data/lib/aws-sdk-core/plugins/dynamodb_simple_attributes.rb +0 -209
  649. data/lib/aws-sdk-core/plugins/ec2_copy_encrypted_snapshot.rb +0 -56
  650. data/lib/aws-sdk-core/plugins/ec2_region_validation.rb +0 -17
  651. data/lib/aws-sdk-core/plugins/glacier_account_id.rb +0 -19
  652. data/lib/aws-sdk-core/plugins/glacier_api_version.rb +0 -19
  653. data/lib/aws-sdk-core/plugins/glacier_checksums.rb +0 -87
  654. data/lib/aws-sdk-core/plugins/machine_learning_predict_endpoint.rb +0 -20
  655. data/lib/aws-sdk-core/plugins/rds_cross_region_copying.rb +0 -69
  656. data/lib/aws-sdk-core/plugins/request_signer.rb +0 -142
  657. data/lib/aws-sdk-core/plugins/route_53_id_fix.rb +0 -55
  658. data/lib/aws-sdk-core/plugins/s3_accelerate.rb +0 -90
  659. data/lib/aws-sdk-core/plugins/s3_bucket_dns.rb +0 -86
  660. data/lib/aws-sdk-core/plugins/s3_bucket_name_restrictions.rb +0 -21
  661. data/lib/aws-sdk-core/plugins/s3_dualstack.rb +0 -67
  662. data/lib/aws-sdk-core/plugins/s3_expect_100_continue.rb +0 -27
  663. data/lib/aws-sdk-core/plugins/s3_get_bucket_location_fix.rb +0 -21
  664. data/lib/aws-sdk-core/plugins/s3_http_200_errors.rb +0 -45
  665. data/lib/aws-sdk-core/plugins/s3_location_constraint.rb +0 -31
  666. data/lib/aws-sdk-core/plugins/s3_md5s.rb +0 -50
  667. data/lib/aws-sdk-core/plugins/s3_redirects.rb +0 -37
  668. data/lib/aws-sdk-core/plugins/s3_request_signer.rb +0 -166
  669. data/lib/aws-sdk-core/plugins/s3_sse_cpk.rb +0 -64
  670. data/lib/aws-sdk-core/plugins/s3_url_encoded_keys.rb +0 -92
  671. data/lib/aws-sdk-core/plugins/sqs_md5s.rb +0 -162
  672. data/lib/aws-sdk-core/plugins/sqs_queue_urls.rb +0 -34
  673. data/lib/aws-sdk-core/plugins/swf_read_timeouts.rb +0 -23
  674. data/lib/aws-sdk-core/polly/presigner.rb +0 -70
  675. data/lib/aws-sdk-core/polly.rb +0 -13
  676. data/lib/aws-sdk-core/rds.rb +0 -8
  677. data/lib/aws-sdk-core/redshift.rb +0 -7
  678. data/lib/aws-sdk-core/rekognition.rb +0 -6
  679. data/lib/aws-sdk-core/route53.rb +0 -7
  680. data/lib/aws-sdk-core/route53domains.rb +0 -5
  681. data/lib/aws-sdk-core/s3/bucket_region_cache.rb +0 -75
  682. data/lib/aws-sdk-core/s3/presigner.rb +0 -116
  683. data/lib/aws-sdk-core/s3.rb +0 -26
  684. data/lib/aws-sdk-core/service.rb +0 -4
  685. data/lib/aws-sdk-core/servicecatalog.rb +0 -5
  686. data/lib/aws-sdk-core/ses.rb +0 -7
  687. data/lib/aws-sdk-core/shield.rb +0 -5
  688. data/lib/aws-sdk-core/signers/base.rb +0 -31
  689. data/lib/aws-sdk-core/signers/s3.rb +0 -184
  690. data/lib/aws-sdk-core/signers/v2.rb +0 -51
  691. data/lib/aws-sdk-core/signers/v3.rb +0 -34
  692. data/lib/aws-sdk-core/signers/v4.rb +0 -234
  693. data/lib/aws-sdk-core/simpledb.rb +0 -5
  694. data/lib/aws-sdk-core/sms.rb +0 -6
  695. data/lib/aws-sdk-core/snowball.rb +0 -6
  696. data/lib/aws-sdk-core/sns.rb +0 -7
  697. data/lib/aws-sdk-core/sqs.rb +0 -7
  698. data/lib/aws-sdk-core/ssm.rb +0 -6
  699. data/lib/aws-sdk-core/states.rb +0 -6
  700. data/lib/aws-sdk-core/storagegateway.rb +0 -6
  701. data/lib/aws-sdk-core/sts.rb +0 -5
  702. data/lib/aws-sdk-core/support.rb +0 -6
  703. data/lib/aws-sdk-core/swf.rb +0 -5
  704. data/lib/aws-sdk-core/tree_hash.rb +0 -69
  705. data/lib/aws-sdk-core/version.rb +0 -3
  706. data/lib/aws-sdk-core/waf.rb +0 -6
  707. data/lib/aws-sdk-core/wafregional.rb +0 -6
  708. data/lib/aws-sdk-core/waiters/null_provider.rb +0 -12
  709. data/lib/aws-sdk-core/waiters/provider.rb +0 -35
  710. data/lib/aws-sdk-core/workdocs.rb +0 -6
  711. data/lib/aws-sdk-core/workspaces.rb +0 -6
  712. data/lib/aws-sdk-core/xray.rb +0 -5
  713. data/lib/seahorse/client/plugins/restful_bindings.rb +0 -127
  714. data/service-models.json +0 -381
@@ -1,2031 +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
- "signatureVersion":"v4",
10
- "targetPrefix":"DeviceFarm_20150623",
11
- "uid":"devicefarm-2015-06-23"
12
- },
13
- "operations":{
14
- "CreateDevicePool":{
15
- "name":"CreateDevicePool",
16
- "http":{
17
- "method":"POST",
18
- "requestUri":"/"
19
- },
20
- "input":{"shape":"CreateDevicePoolRequest"},
21
- "output":{"shape":"CreateDevicePoolResult"},
22
- "errors":[
23
- {"shape":"ArgumentException"},
24
- {"shape":"NotFoundException"},
25
- {"shape":"LimitExceededException"},
26
- {"shape":"ServiceAccountException"}
27
- ]
28
- },
29
- "CreateProject":{
30
- "name":"CreateProject",
31
- "http":{
32
- "method":"POST",
33
- "requestUri":"/"
34
- },
35
- "input":{"shape":"CreateProjectRequest"},
36
- "output":{"shape":"CreateProjectResult"},
37
- "errors":[
38
- {"shape":"ArgumentException"},
39
- {"shape":"NotFoundException"},
40
- {"shape":"LimitExceededException"},
41
- {"shape":"ServiceAccountException"}
42
- ]
43
- },
44
- "CreateRemoteAccessSession":{
45
- "name":"CreateRemoteAccessSession",
46
- "http":{
47
- "method":"POST",
48
- "requestUri":"/"
49
- },
50
- "input":{"shape":"CreateRemoteAccessSessionRequest"},
51
- "output":{"shape":"CreateRemoteAccessSessionResult"},
52
- "errors":[
53
- {"shape":"ArgumentException"},
54
- {"shape":"NotFoundException"},
55
- {"shape":"LimitExceededException"},
56
- {"shape":"ServiceAccountException"}
57
- ]
58
- },
59
- "CreateUpload":{
60
- "name":"CreateUpload",
61
- "http":{
62
- "method":"POST",
63
- "requestUri":"/"
64
- },
65
- "input":{"shape":"CreateUploadRequest"},
66
- "output":{"shape":"CreateUploadResult"},
67
- "errors":[
68
- {"shape":"ArgumentException"},
69
- {"shape":"NotFoundException"},
70
- {"shape":"LimitExceededException"},
71
- {"shape":"ServiceAccountException"}
72
- ]
73
- },
74
- "DeleteDevicePool":{
75
- "name":"DeleteDevicePool",
76
- "http":{
77
- "method":"POST",
78
- "requestUri":"/"
79
- },
80
- "input":{"shape":"DeleteDevicePoolRequest"},
81
- "output":{"shape":"DeleteDevicePoolResult"},
82
- "errors":[
83
- {"shape":"ArgumentException"},
84
- {"shape":"NotFoundException"},
85
- {"shape":"LimitExceededException"},
86
- {"shape":"ServiceAccountException"}
87
- ]
88
- },
89
- "DeleteProject":{
90
- "name":"DeleteProject",
91
- "http":{
92
- "method":"POST",
93
- "requestUri":"/"
94
- },
95
- "input":{"shape":"DeleteProjectRequest"},
96
- "output":{"shape":"DeleteProjectResult"},
97
- "errors":[
98
- {"shape":"ArgumentException"},
99
- {"shape":"NotFoundException"},
100
- {"shape":"LimitExceededException"},
101
- {"shape":"ServiceAccountException"}
102
- ]
103
- },
104
- "DeleteRemoteAccessSession":{
105
- "name":"DeleteRemoteAccessSession",
106
- "http":{
107
- "method":"POST",
108
- "requestUri":"/"
109
- },
110
- "input":{"shape":"DeleteRemoteAccessSessionRequest"},
111
- "output":{"shape":"DeleteRemoteAccessSessionResult"},
112
- "errors":[
113
- {"shape":"ArgumentException"},
114
- {"shape":"NotFoundException"},
115
- {"shape":"LimitExceededException"},
116
- {"shape":"ServiceAccountException"}
117
- ]
118
- },
119
- "DeleteRun":{
120
- "name":"DeleteRun",
121
- "http":{
122
- "method":"POST",
123
- "requestUri":"/"
124
- },
125
- "input":{"shape":"DeleteRunRequest"},
126
- "output":{"shape":"DeleteRunResult"},
127
- "errors":[
128
- {"shape":"ArgumentException"},
129
- {"shape":"NotFoundException"},
130
- {"shape":"LimitExceededException"},
131
- {"shape":"ServiceAccountException"}
132
- ]
133
- },
134
- "DeleteUpload":{
135
- "name":"DeleteUpload",
136
- "http":{
137
- "method":"POST",
138
- "requestUri":"/"
139
- },
140
- "input":{"shape":"DeleteUploadRequest"},
141
- "output":{"shape":"DeleteUploadResult"},
142
- "errors":[
143
- {"shape":"ArgumentException"},
144
- {"shape":"NotFoundException"},
145
- {"shape":"LimitExceededException"},
146
- {"shape":"ServiceAccountException"}
147
- ]
148
- },
149
- "GetAccountSettings":{
150
- "name":"GetAccountSettings",
151
- "http":{
152
- "method":"POST",
153
- "requestUri":"/"
154
- },
155
- "input":{"shape":"GetAccountSettingsRequest"},
156
- "output":{"shape":"GetAccountSettingsResult"},
157
- "errors":[
158
- {"shape":"ArgumentException"},
159
- {"shape":"NotFoundException"},
160
- {"shape":"LimitExceededException"},
161
- {"shape":"ServiceAccountException"}
162
- ]
163
- },
164
- "GetDevice":{
165
- "name":"GetDevice",
166
- "http":{
167
- "method":"POST",
168
- "requestUri":"/"
169
- },
170
- "input":{"shape":"GetDeviceRequest"},
171
- "output":{"shape":"GetDeviceResult"},
172
- "errors":[
173
- {"shape":"ArgumentException"},
174
- {"shape":"NotFoundException"},
175
- {"shape":"LimitExceededException"},
176
- {"shape":"ServiceAccountException"}
177
- ]
178
- },
179
- "GetDevicePool":{
180
- "name":"GetDevicePool",
181
- "http":{
182
- "method":"POST",
183
- "requestUri":"/"
184
- },
185
- "input":{"shape":"GetDevicePoolRequest"},
186
- "output":{"shape":"GetDevicePoolResult"},
187
- "errors":[
188
- {"shape":"ArgumentException"},
189
- {"shape":"NotFoundException"},
190
- {"shape":"LimitExceededException"},
191
- {"shape":"ServiceAccountException"}
192
- ]
193
- },
194
- "GetDevicePoolCompatibility":{
195
- "name":"GetDevicePoolCompatibility",
196
- "http":{
197
- "method":"POST",
198
- "requestUri":"/"
199
- },
200
- "input":{"shape":"GetDevicePoolCompatibilityRequest"},
201
- "output":{"shape":"GetDevicePoolCompatibilityResult"},
202
- "errors":[
203
- {"shape":"ArgumentException"},
204
- {"shape":"NotFoundException"},
205
- {"shape":"LimitExceededException"},
206
- {"shape":"ServiceAccountException"}
207
- ]
208
- },
209
- "GetJob":{
210
- "name":"GetJob",
211
- "http":{
212
- "method":"POST",
213
- "requestUri":"/"
214
- },
215
- "input":{"shape":"GetJobRequest"},
216
- "output":{"shape":"GetJobResult"},
217
- "errors":[
218
- {"shape":"ArgumentException"},
219
- {"shape":"NotFoundException"},
220
- {"shape":"LimitExceededException"},
221
- {"shape":"ServiceAccountException"}
222
- ]
223
- },
224
- "GetOfferingStatus":{
225
- "name":"GetOfferingStatus",
226
- "http":{
227
- "method":"POST",
228
- "requestUri":"/"
229
- },
230
- "input":{"shape":"GetOfferingStatusRequest"},
231
- "output":{"shape":"GetOfferingStatusResult"},
232
- "errors":[
233
- {"shape":"ArgumentException"},
234
- {"shape":"NotFoundException"},
235
- {"shape":"NotEligibleException"},
236
- {"shape":"LimitExceededException"},
237
- {"shape":"ServiceAccountException"}
238
- ]
239
- },
240
- "GetProject":{
241
- "name":"GetProject",
242
- "http":{
243
- "method":"POST",
244
- "requestUri":"/"
245
- },
246
- "input":{"shape":"GetProjectRequest"},
247
- "output":{"shape":"GetProjectResult"},
248
- "errors":[
249
- {"shape":"ArgumentException"},
250
- {"shape":"NotFoundException"},
251
- {"shape":"LimitExceededException"},
252
- {"shape":"ServiceAccountException"}
253
- ]
254
- },
255
- "GetRemoteAccessSession":{
256
- "name":"GetRemoteAccessSession",
257
- "http":{
258
- "method":"POST",
259
- "requestUri":"/"
260
- },
261
- "input":{"shape":"GetRemoteAccessSessionRequest"},
262
- "output":{"shape":"GetRemoteAccessSessionResult"},
263
- "errors":[
264
- {"shape":"ArgumentException"},
265
- {"shape":"NotFoundException"},
266
- {"shape":"LimitExceededException"},
267
- {"shape":"ServiceAccountException"}
268
- ]
269
- },
270
- "GetRun":{
271
- "name":"GetRun",
272
- "http":{
273
- "method":"POST",
274
- "requestUri":"/"
275
- },
276
- "input":{"shape":"GetRunRequest"},
277
- "output":{"shape":"GetRunResult"},
278
- "errors":[
279
- {"shape":"ArgumentException"},
280
- {"shape":"NotFoundException"},
281
- {"shape":"LimitExceededException"},
282
- {"shape":"ServiceAccountException"}
283
- ]
284
- },
285
- "GetSuite":{
286
- "name":"GetSuite",
287
- "http":{
288
- "method":"POST",
289
- "requestUri":"/"
290
- },
291
- "input":{"shape":"GetSuiteRequest"},
292
- "output":{"shape":"GetSuiteResult"},
293
- "errors":[
294
- {"shape":"ArgumentException"},
295
- {"shape":"NotFoundException"},
296
- {"shape":"LimitExceededException"},
297
- {"shape":"ServiceAccountException"}
298
- ]
299
- },
300
- "GetTest":{
301
- "name":"GetTest",
302
- "http":{
303
- "method":"POST",
304
- "requestUri":"/"
305
- },
306
- "input":{"shape":"GetTestRequest"},
307
- "output":{"shape":"GetTestResult"},
308
- "errors":[
309
- {"shape":"ArgumentException"},
310
- {"shape":"NotFoundException"},
311
- {"shape":"LimitExceededException"},
312
- {"shape":"ServiceAccountException"}
313
- ]
314
- },
315
- "GetUpload":{
316
- "name":"GetUpload",
317
- "http":{
318
- "method":"POST",
319
- "requestUri":"/"
320
- },
321
- "input":{"shape":"GetUploadRequest"},
322
- "output":{"shape":"GetUploadResult"},
323
- "errors":[
324
- {"shape":"ArgumentException"},
325
- {"shape":"NotFoundException"},
326
- {"shape":"LimitExceededException"},
327
- {"shape":"ServiceAccountException"}
328
- ]
329
- },
330
- "InstallToRemoteAccessSession":{
331
- "name":"InstallToRemoteAccessSession",
332
- "http":{
333
- "method":"POST",
334
- "requestUri":"/"
335
- },
336
- "input":{"shape":"InstallToRemoteAccessSessionRequest"},
337
- "output":{"shape":"InstallToRemoteAccessSessionResult"},
338
- "errors":[
339
- {"shape":"ArgumentException"},
340
- {"shape":"NotFoundException"},
341
- {"shape":"LimitExceededException"},
342
- {"shape":"ServiceAccountException"}
343
- ]
344
- },
345
- "ListArtifacts":{
346
- "name":"ListArtifacts",
347
- "http":{
348
- "method":"POST",
349
- "requestUri":"/"
350
- },
351
- "input":{"shape":"ListArtifactsRequest"},
352
- "output":{"shape":"ListArtifactsResult"},
353
- "errors":[
354
- {"shape":"ArgumentException"},
355
- {"shape":"NotFoundException"},
356
- {"shape":"LimitExceededException"},
357
- {"shape":"ServiceAccountException"}
358
- ]
359
- },
360
- "ListDevicePools":{
361
- "name":"ListDevicePools",
362
- "http":{
363
- "method":"POST",
364
- "requestUri":"/"
365
- },
366
- "input":{"shape":"ListDevicePoolsRequest"},
367
- "output":{"shape":"ListDevicePoolsResult"},
368
- "errors":[
369
- {"shape":"ArgumentException"},
370
- {"shape":"NotFoundException"},
371
- {"shape":"LimitExceededException"},
372
- {"shape":"ServiceAccountException"}
373
- ]
374
- },
375
- "ListDevices":{
376
- "name":"ListDevices",
377
- "http":{
378
- "method":"POST",
379
- "requestUri":"/"
380
- },
381
- "input":{"shape":"ListDevicesRequest"},
382
- "output":{"shape":"ListDevicesResult"},
383
- "errors":[
384
- {"shape":"ArgumentException"},
385
- {"shape":"NotFoundException"},
386
- {"shape":"LimitExceededException"},
387
- {"shape":"ServiceAccountException"}
388
- ]
389
- },
390
- "ListJobs":{
391
- "name":"ListJobs",
392
- "http":{
393
- "method":"POST",
394
- "requestUri":"/"
395
- },
396
- "input":{"shape":"ListJobsRequest"},
397
- "output":{"shape":"ListJobsResult"},
398
- "errors":[
399
- {"shape":"ArgumentException"},
400
- {"shape":"NotFoundException"},
401
- {"shape":"LimitExceededException"},
402
- {"shape":"ServiceAccountException"}
403
- ]
404
- },
405
- "ListOfferingTransactions":{
406
- "name":"ListOfferingTransactions",
407
- "http":{
408
- "method":"POST",
409
- "requestUri":"/"
410
- },
411
- "input":{"shape":"ListOfferingTransactionsRequest"},
412
- "output":{"shape":"ListOfferingTransactionsResult"},
413
- "errors":[
414
- {"shape":"ArgumentException"},
415
- {"shape":"NotFoundException"},
416
- {"shape":"NotEligibleException"},
417
- {"shape":"LimitExceededException"},
418
- {"shape":"ServiceAccountException"}
419
- ]
420
- },
421
- "ListOfferings":{
422
- "name":"ListOfferings",
423
- "http":{
424
- "method":"POST",
425
- "requestUri":"/"
426
- },
427
- "input":{"shape":"ListOfferingsRequest"},
428
- "output":{"shape":"ListOfferingsResult"},
429
- "errors":[
430
- {"shape":"ArgumentException"},
431
- {"shape":"NotFoundException"},
432
- {"shape":"NotEligibleException"},
433
- {"shape":"LimitExceededException"},
434
- {"shape":"ServiceAccountException"}
435
- ]
436
- },
437
- "ListProjects":{
438
- "name":"ListProjects",
439
- "http":{
440
- "method":"POST",
441
- "requestUri":"/"
442
- },
443
- "input":{"shape":"ListProjectsRequest"},
444
- "output":{"shape":"ListProjectsResult"},
445
- "errors":[
446
- {"shape":"ArgumentException"},
447
- {"shape":"NotFoundException"},
448
- {"shape":"LimitExceededException"},
449
- {"shape":"ServiceAccountException"}
450
- ]
451
- },
452
- "ListRemoteAccessSessions":{
453
- "name":"ListRemoteAccessSessions",
454
- "http":{
455
- "method":"POST",
456
- "requestUri":"/"
457
- },
458
- "input":{"shape":"ListRemoteAccessSessionsRequest"},
459
- "output":{"shape":"ListRemoteAccessSessionsResult"},
460
- "errors":[
461
- {"shape":"ArgumentException"},
462
- {"shape":"NotFoundException"},
463
- {"shape":"LimitExceededException"},
464
- {"shape":"ServiceAccountException"}
465
- ]
466
- },
467
- "ListRuns":{
468
- "name":"ListRuns",
469
- "http":{
470
- "method":"POST",
471
- "requestUri":"/"
472
- },
473
- "input":{"shape":"ListRunsRequest"},
474
- "output":{"shape":"ListRunsResult"},
475
- "errors":[
476
- {"shape":"ArgumentException"},
477
- {"shape":"NotFoundException"},
478
- {"shape":"LimitExceededException"},
479
- {"shape":"ServiceAccountException"}
480
- ]
481
- },
482
- "ListSamples":{
483
- "name":"ListSamples",
484
- "http":{
485
- "method":"POST",
486
- "requestUri":"/"
487
- },
488
- "input":{"shape":"ListSamplesRequest"},
489
- "output":{"shape":"ListSamplesResult"},
490
- "errors":[
491
- {"shape":"ArgumentException"},
492
- {"shape":"NotFoundException"},
493
- {"shape":"LimitExceededException"},
494
- {"shape":"ServiceAccountException"}
495
- ]
496
- },
497
- "ListSuites":{
498
- "name":"ListSuites",
499
- "http":{
500
- "method":"POST",
501
- "requestUri":"/"
502
- },
503
- "input":{"shape":"ListSuitesRequest"},
504
- "output":{"shape":"ListSuitesResult"},
505
- "errors":[
506
- {"shape":"ArgumentException"},
507
- {"shape":"NotFoundException"},
508
- {"shape":"LimitExceededException"},
509
- {"shape":"ServiceAccountException"}
510
- ]
511
- },
512
- "ListTests":{
513
- "name":"ListTests",
514
- "http":{
515
- "method":"POST",
516
- "requestUri":"/"
517
- },
518
- "input":{"shape":"ListTestsRequest"},
519
- "output":{"shape":"ListTestsResult"},
520
- "errors":[
521
- {"shape":"ArgumentException"},
522
- {"shape":"NotFoundException"},
523
- {"shape":"LimitExceededException"},
524
- {"shape":"ServiceAccountException"}
525
- ]
526
- },
527
- "ListUniqueProblems":{
528
- "name":"ListUniqueProblems",
529
- "http":{
530
- "method":"POST",
531
- "requestUri":"/"
532
- },
533
- "input":{"shape":"ListUniqueProblemsRequest"},
534
- "output":{"shape":"ListUniqueProblemsResult"},
535
- "errors":[
536
- {"shape":"ArgumentException"},
537
- {"shape":"NotFoundException"},
538
- {"shape":"LimitExceededException"},
539
- {"shape":"ServiceAccountException"}
540
- ]
541
- },
542
- "ListUploads":{
543
- "name":"ListUploads",
544
- "http":{
545
- "method":"POST",
546
- "requestUri":"/"
547
- },
548
- "input":{"shape":"ListUploadsRequest"},
549
- "output":{"shape":"ListUploadsResult"},
550
- "errors":[
551
- {"shape":"ArgumentException"},
552
- {"shape":"NotFoundException"},
553
- {"shape":"LimitExceededException"},
554
- {"shape":"ServiceAccountException"}
555
- ]
556
- },
557
- "PurchaseOffering":{
558
- "name":"PurchaseOffering",
559
- "http":{
560
- "method":"POST",
561
- "requestUri":"/"
562
- },
563
- "input":{"shape":"PurchaseOfferingRequest"},
564
- "output":{"shape":"PurchaseOfferingResult"},
565
- "errors":[
566
- {"shape":"ArgumentException"},
567
- {"shape":"NotFoundException"},
568
- {"shape":"NotEligibleException"},
569
- {"shape":"LimitExceededException"},
570
- {"shape":"ServiceAccountException"}
571
- ]
572
- },
573
- "RenewOffering":{
574
- "name":"RenewOffering",
575
- "http":{
576
- "method":"POST",
577
- "requestUri":"/"
578
- },
579
- "input":{"shape":"RenewOfferingRequest"},
580
- "output":{"shape":"RenewOfferingResult"},
581
- "errors":[
582
- {"shape":"ArgumentException"},
583
- {"shape":"NotFoundException"},
584
- {"shape":"NotEligibleException"},
585
- {"shape":"LimitExceededException"},
586
- {"shape":"ServiceAccountException"}
587
- ]
588
- },
589
- "ScheduleRun":{
590
- "name":"ScheduleRun",
591
- "http":{
592
- "method":"POST",
593
- "requestUri":"/"
594
- },
595
- "input":{"shape":"ScheduleRunRequest"},
596
- "output":{"shape":"ScheduleRunResult"},
597
- "errors":[
598
- {"shape":"ArgumentException"},
599
- {"shape":"NotFoundException"},
600
- {"shape":"LimitExceededException"},
601
- {"shape":"IdempotencyException"},
602
- {"shape":"ServiceAccountException"}
603
- ]
604
- },
605
- "StopRemoteAccessSession":{
606
- "name":"StopRemoteAccessSession",
607
- "http":{
608
- "method":"POST",
609
- "requestUri":"/"
610
- },
611
- "input":{"shape":"StopRemoteAccessSessionRequest"},
612
- "output":{"shape":"StopRemoteAccessSessionResult"},
613
- "errors":[
614
- {"shape":"ArgumentException"},
615
- {"shape":"NotFoundException"},
616
- {"shape":"LimitExceededException"},
617
- {"shape":"ServiceAccountException"}
618
- ]
619
- },
620
- "StopRun":{
621
- "name":"StopRun",
622
- "http":{
623
- "method":"POST",
624
- "requestUri":"/"
625
- },
626
- "input":{"shape":"StopRunRequest"},
627
- "output":{"shape":"StopRunResult"},
628
- "errors":[
629
- {"shape":"ArgumentException"},
630
- {"shape":"NotFoundException"},
631
- {"shape":"LimitExceededException"},
632
- {"shape":"ServiceAccountException"}
633
- ]
634
- },
635
- "UpdateDevicePool":{
636
- "name":"UpdateDevicePool",
637
- "http":{
638
- "method":"POST",
639
- "requestUri":"/"
640
- },
641
- "input":{"shape":"UpdateDevicePoolRequest"},
642
- "output":{"shape":"UpdateDevicePoolResult"},
643
- "errors":[
644
- {"shape":"ArgumentException"},
645
- {"shape":"NotFoundException"},
646
- {"shape":"LimitExceededException"},
647
- {"shape":"ServiceAccountException"}
648
- ]
649
- },
650
- "UpdateProject":{
651
- "name":"UpdateProject",
652
- "http":{
653
- "method":"POST",
654
- "requestUri":"/"
655
- },
656
- "input":{"shape":"UpdateProjectRequest"},
657
- "output":{"shape":"UpdateProjectResult"},
658
- "errors":[
659
- {"shape":"ArgumentException"},
660
- {"shape":"NotFoundException"},
661
- {"shape":"LimitExceededException"},
662
- {"shape":"ServiceAccountException"}
663
- ]
664
- }
665
- },
666
- "shapes":{
667
- "AWSAccountNumber":{
668
- "type":"string",
669
- "max":16,
670
- "min":2
671
- },
672
- "AccountSettings":{
673
- "type":"structure",
674
- "members":{
675
- "awsAccountNumber":{"shape":"AWSAccountNumber"},
676
- "unmeteredDevices":{"shape":"PurchasedDevicesMap"},
677
- "unmeteredRemoteAccessDevices":{"shape":"PurchasedDevicesMap"}
678
- }
679
- },
680
- "AmazonResourceName":{
681
- "type":"string",
682
- "min":32
683
- },
684
- "AmazonResourceNames":{
685
- "type":"list",
686
- "member":{"shape":"AmazonResourceName"}
687
- },
688
- "ArgumentException":{
689
- "type":"structure",
690
- "members":{
691
- "message":{"shape":"Message"}
692
- },
693
- "exception":true
694
- },
695
- "Artifact":{
696
- "type":"structure",
697
- "members":{
698
- "arn":{"shape":"AmazonResourceName"},
699
- "name":{"shape":"Name"},
700
- "type":{"shape":"ArtifactType"},
701
- "extension":{"shape":"String"},
702
- "url":{"shape":"URL"}
703
- }
704
- },
705
- "ArtifactCategory":{
706
- "type":"string",
707
- "enum":[
708
- "SCREENSHOT",
709
- "FILE",
710
- "LOG"
711
- ]
712
- },
713
- "ArtifactType":{
714
- "type":"string",
715
- "enum":[
716
- "UNKNOWN",
717
- "SCREENSHOT",
718
- "DEVICE_LOG",
719
- "MESSAGE_LOG",
720
- "VIDEO_LOG",
721
- "RESULT_LOG",
722
- "SERVICE_LOG",
723
- "WEBKIT_LOG",
724
- "INSTRUMENTATION_OUTPUT",
725
- "EXERCISER_MONKEY_OUTPUT",
726
- "CALABASH_JSON_OUTPUT",
727
- "CALABASH_PRETTY_OUTPUT",
728
- "CALABASH_STANDARD_OUTPUT",
729
- "CALABASH_JAVA_XML_OUTPUT",
730
- "AUTOMATION_OUTPUT",
731
- "APPIUM_SERVER_OUTPUT",
732
- "APPIUM_JAVA_OUTPUT",
733
- "APPIUM_JAVA_XML_OUTPUT",
734
- "APPIUM_PYTHON_OUTPUT",
735
- "APPIUM_PYTHON_XML_OUTPUT",
736
- "EXPLORER_EVENT_LOG",
737
- "EXPLORER_SUMMARY_LOG",
738
- "APPLICATION_CRASH_REPORT",
739
- "XCTEST_LOG",
740
- "VIDEO"
741
- ]
742
- },
743
- "Artifacts":{
744
- "type":"list",
745
- "member":{"shape":"Artifact"}
746
- },
747
- "BillingMethod":{
748
- "type":"string",
749
- "enum":[
750
- "METERED",
751
- "UNMETERED"
752
- ]
753
- },
754
- "Boolean":{"type":"boolean"},
755
- "CPU":{
756
- "type":"structure",
757
- "members":{
758
- "frequency":{"shape":"String"},
759
- "architecture":{"shape":"String"},
760
- "clock":{"shape":"Double"}
761
- }
762
- },
763
- "ContentType":{
764
- "type":"string",
765
- "max":64,
766
- "min":0
767
- },
768
- "Counters":{
769
- "type":"structure",
770
- "members":{
771
- "total":{"shape":"Integer"},
772
- "passed":{"shape":"Integer"},
773
- "failed":{"shape":"Integer"},
774
- "warned":{"shape":"Integer"},
775
- "errored":{"shape":"Integer"},
776
- "stopped":{"shape":"Integer"},
777
- "skipped":{"shape":"Integer"}
778
- }
779
- },
780
- "CreateDevicePoolRequest":{
781
- "type":"structure",
782
- "required":[
783
- "projectArn",
784
- "name",
785
- "rules"
786
- ],
787
- "members":{
788
- "projectArn":{"shape":"AmazonResourceName"},
789
- "name":{"shape":"Name"},
790
- "description":{"shape":"Message"},
791
- "rules":{"shape":"Rules"}
792
- }
793
- },
794
- "CreateDevicePoolResult":{
795
- "type":"structure",
796
- "members":{
797
- "devicePool":{"shape":"DevicePool"}
798
- }
799
- },
800
- "CreateProjectRequest":{
801
- "type":"structure",
802
- "required":["name"],
803
- "members":{
804
- "name":{"shape":"Name"}
805
- }
806
- },
807
- "CreateProjectResult":{
808
- "type":"structure",
809
- "members":{
810
- "project":{"shape":"Project"}
811
- }
812
- },
813
- "CreateRemoteAccessSessionConfiguration":{
814
- "type":"structure",
815
- "members":{
816
- "billingMethod":{"shape":"BillingMethod"}
817
- }
818
- },
819
- "CreateRemoteAccessSessionRequest":{
820
- "type":"structure",
821
- "required":[
822
- "projectArn",
823
- "deviceArn"
824
- ],
825
- "members":{
826
- "projectArn":{"shape":"AmazonResourceName"},
827
- "deviceArn":{"shape":"AmazonResourceName"},
828
- "name":{"shape":"Name"},
829
- "configuration":{"shape":"CreateRemoteAccessSessionConfiguration"}
830
- }
831
- },
832
- "CreateRemoteAccessSessionResult":{
833
- "type":"structure",
834
- "members":{
835
- "remoteAccessSession":{"shape":"RemoteAccessSession"}
836
- }
837
- },
838
- "CreateUploadRequest":{
839
- "type":"structure",
840
- "required":[
841
- "projectArn",
842
- "name",
843
- "type"
844
- ],
845
- "members":{
846
- "projectArn":{"shape":"AmazonResourceName"},
847
- "name":{"shape":"Name"},
848
- "type":{"shape":"UploadType"},
849
- "contentType":{"shape":"ContentType"}
850
- }
851
- },
852
- "CreateUploadResult":{
853
- "type":"structure",
854
- "members":{
855
- "upload":{"shape":"Upload"}
856
- }
857
- },
858
- "CurrencyCode":{
859
- "type":"string",
860
- "enum":["USD"]
861
- },
862
- "DateTime":{"type":"timestamp"},
863
- "DeleteDevicePoolRequest":{
864
- "type":"structure",
865
- "required":["arn"],
866
- "members":{
867
- "arn":{"shape":"AmazonResourceName"}
868
- }
869
- },
870
- "DeleteDevicePoolResult":{
871
- "type":"structure",
872
- "members":{
873
- }
874
- },
875
- "DeleteProjectRequest":{
876
- "type":"structure",
877
- "required":["arn"],
878
- "members":{
879
- "arn":{"shape":"AmazonResourceName"}
880
- }
881
- },
882
- "DeleteProjectResult":{
883
- "type":"structure",
884
- "members":{
885
- }
886
- },
887
- "DeleteRemoteAccessSessionRequest":{
888
- "type":"structure",
889
- "required":["arn"],
890
- "members":{
891
- "arn":{"shape":"AmazonResourceName"}
892
- }
893
- },
894
- "DeleteRemoteAccessSessionResult":{
895
- "type":"structure",
896
- "members":{
897
- }
898
- },
899
- "DeleteRunRequest":{
900
- "type":"structure",
901
- "required":["arn"],
902
- "members":{
903
- "arn":{"shape":"AmazonResourceName"}
904
- }
905
- },
906
- "DeleteRunResult":{
907
- "type":"structure",
908
- "members":{
909
- }
910
- },
911
- "DeleteUploadRequest":{
912
- "type":"structure",
913
- "required":["arn"],
914
- "members":{
915
- "arn":{"shape":"AmazonResourceName"}
916
- }
917
- },
918
- "DeleteUploadResult":{
919
- "type":"structure",
920
- "members":{
921
- }
922
- },
923
- "Device":{
924
- "type":"structure",
925
- "members":{
926
- "arn":{"shape":"AmazonResourceName"},
927
- "name":{"shape":"Name"},
928
- "manufacturer":{"shape":"String"},
929
- "model":{"shape":"String"},
930
- "formFactor":{"shape":"DeviceFormFactor"},
931
- "platform":{"shape":"DevicePlatform"},
932
- "os":{"shape":"String"},
933
- "cpu":{"shape":"CPU"},
934
- "resolution":{"shape":"Resolution"},
935
- "heapSize":{"shape":"Long"},
936
- "memory":{"shape":"Long"},
937
- "image":{"shape":"String"},
938
- "carrier":{"shape":"String"},
939
- "radio":{"shape":"String"},
940
- "remoteAccessEnabled":{"shape":"Boolean"},
941
- "fleetType":{"shape":"String"},
942
- "fleetName":{"shape":"String"}
943
- }
944
- },
945
- "DeviceAttribute":{
946
- "type":"string",
947
- "enum":[
948
- "ARN",
949
- "PLATFORM",
950
- "FORM_FACTOR",
951
- "MANUFACTURER",
952
- "REMOTE_ACCESS_ENABLED"
953
- ]
954
- },
955
- "DeviceFormFactor":{
956
- "type":"string",
957
- "enum":[
958
- "PHONE",
959
- "TABLET"
960
- ]
961
- },
962
- "DeviceMinutes":{
963
- "type":"structure",
964
- "members":{
965
- "total":{"shape":"Double"},
966
- "metered":{"shape":"Double"},
967
- "unmetered":{"shape":"Double"}
968
- }
969
- },
970
- "DevicePlatform":{
971
- "type":"string",
972
- "enum":[
973
- "ANDROID",
974
- "IOS"
975
- ]
976
- },
977
- "DevicePool":{
978
- "type":"structure",
979
- "members":{
980
- "arn":{"shape":"AmazonResourceName"},
981
- "name":{"shape":"Name"},
982
- "description":{"shape":"Message"},
983
- "type":{"shape":"DevicePoolType"},
984
- "rules":{"shape":"Rules"}
985
- }
986
- },
987
- "DevicePoolCompatibilityResult":{
988
- "type":"structure",
989
- "members":{
990
- "device":{"shape":"Device"},
991
- "compatible":{"shape":"Boolean"},
992
- "incompatibilityMessages":{"shape":"IncompatibilityMessages"}
993
- }
994
- },
995
- "DevicePoolCompatibilityResults":{
996
- "type":"list",
997
- "member":{"shape":"DevicePoolCompatibilityResult"}
998
- },
999
- "DevicePoolType":{
1000
- "type":"string",
1001
- "enum":[
1002
- "CURATED",
1003
- "PRIVATE"
1004
- ]
1005
- },
1006
- "DevicePools":{
1007
- "type":"list",
1008
- "member":{"shape":"DevicePool"}
1009
- },
1010
- "Devices":{
1011
- "type":"list",
1012
- "member":{"shape":"Device"}
1013
- },
1014
- "Double":{"type":"double"},
1015
- "ExecutionResult":{
1016
- "type":"string",
1017
- "enum":[
1018
- "PENDING",
1019
- "PASSED",
1020
- "WARNED",
1021
- "FAILED",
1022
- "SKIPPED",
1023
- "ERRORED",
1024
- "STOPPED"
1025
- ]
1026
- },
1027
- "ExecutionStatus":{
1028
- "type":"string",
1029
- "enum":[
1030
- "PENDING",
1031
- "PENDING_CONCURRENCY",
1032
- "PENDING_DEVICE",
1033
- "PROCESSING",
1034
- "SCHEDULING",
1035
- "PREPARING",
1036
- "RUNNING",
1037
- "COMPLETED",
1038
- "STOPPING"
1039
- ]
1040
- },
1041
- "Filter":{
1042
- "type":"string",
1043
- "max":8192,
1044
- "min":0
1045
- },
1046
- "GetAccountSettingsRequest":{
1047
- "type":"structure",
1048
- "members":{
1049
- }
1050
- },
1051
- "GetAccountSettingsResult":{
1052
- "type":"structure",
1053
- "members":{
1054
- "accountSettings":{"shape":"AccountSettings"}
1055
- }
1056
- },
1057
- "GetDevicePoolCompatibilityRequest":{
1058
- "type":"structure",
1059
- "required":["devicePoolArn"],
1060
- "members":{
1061
- "devicePoolArn":{"shape":"AmazonResourceName"},
1062
- "appArn":{"shape":"AmazonResourceName"},
1063
- "testType":{"shape":"TestType"}
1064
- }
1065
- },
1066
- "GetDevicePoolCompatibilityResult":{
1067
- "type":"structure",
1068
- "members":{
1069
- "compatibleDevices":{"shape":"DevicePoolCompatibilityResults"},
1070
- "incompatibleDevices":{"shape":"DevicePoolCompatibilityResults"}
1071
- }
1072
- },
1073
- "GetDevicePoolRequest":{
1074
- "type":"structure",
1075
- "required":["arn"],
1076
- "members":{
1077
- "arn":{"shape":"AmazonResourceName"}
1078
- }
1079
- },
1080
- "GetDevicePoolResult":{
1081
- "type":"structure",
1082
- "members":{
1083
- "devicePool":{"shape":"DevicePool"}
1084
- }
1085
- },
1086
- "GetDeviceRequest":{
1087
- "type":"structure",
1088
- "required":["arn"],
1089
- "members":{
1090
- "arn":{"shape":"AmazonResourceName"}
1091
- }
1092
- },
1093
- "GetDeviceResult":{
1094
- "type":"structure",
1095
- "members":{
1096
- "device":{"shape":"Device"}
1097
- }
1098
- },
1099
- "GetJobRequest":{
1100
- "type":"structure",
1101
- "required":["arn"],
1102
- "members":{
1103
- "arn":{"shape":"AmazonResourceName"}
1104
- }
1105
- },
1106
- "GetJobResult":{
1107
- "type":"structure",
1108
- "members":{
1109
- "job":{"shape":"Job"}
1110
- }
1111
- },
1112
- "GetOfferingStatusRequest":{
1113
- "type":"structure",
1114
- "members":{
1115
- "nextToken":{"shape":"PaginationToken"}
1116
- }
1117
- },
1118
- "GetOfferingStatusResult":{
1119
- "type":"structure",
1120
- "members":{
1121
- "current":{"shape":"OfferingStatusMap"},
1122
- "nextPeriod":{"shape":"OfferingStatusMap"},
1123
- "nextToken":{"shape":"PaginationToken"}
1124
- }
1125
- },
1126
- "GetProjectRequest":{
1127
- "type":"structure",
1128
- "required":["arn"],
1129
- "members":{
1130
- "arn":{"shape":"AmazonResourceName"}
1131
- }
1132
- },
1133
- "GetProjectResult":{
1134
- "type":"structure",
1135
- "members":{
1136
- "project":{"shape":"Project"}
1137
- }
1138
- },
1139
- "GetRemoteAccessSessionRequest":{
1140
- "type":"structure",
1141
- "required":["arn"],
1142
- "members":{
1143
- "arn":{"shape":"AmazonResourceName"}
1144
- }
1145
- },
1146
- "GetRemoteAccessSessionResult":{
1147
- "type":"structure",
1148
- "members":{
1149
- "remoteAccessSession":{"shape":"RemoteAccessSession"}
1150
- }
1151
- },
1152
- "GetRunRequest":{
1153
- "type":"structure",
1154
- "required":["arn"],
1155
- "members":{
1156
- "arn":{"shape":"AmazonResourceName"}
1157
- }
1158
- },
1159
- "GetRunResult":{
1160
- "type":"structure",
1161
- "members":{
1162
- "run":{"shape":"Run"}
1163
- }
1164
- },
1165
- "GetSuiteRequest":{
1166
- "type":"structure",
1167
- "required":["arn"],
1168
- "members":{
1169
- "arn":{"shape":"AmazonResourceName"}
1170
- }
1171
- },
1172
- "GetSuiteResult":{
1173
- "type":"structure",
1174
- "members":{
1175
- "suite":{"shape":"Suite"}
1176
- }
1177
- },
1178
- "GetTestRequest":{
1179
- "type":"structure",
1180
- "required":["arn"],
1181
- "members":{
1182
- "arn":{"shape":"AmazonResourceName"}
1183
- }
1184
- },
1185
- "GetTestResult":{
1186
- "type":"structure",
1187
- "members":{
1188
- "test":{"shape":"Test"}
1189
- }
1190
- },
1191
- "GetUploadRequest":{
1192
- "type":"structure",
1193
- "required":["arn"],
1194
- "members":{
1195
- "arn":{"shape":"AmazonResourceName"}
1196
- }
1197
- },
1198
- "GetUploadResult":{
1199
- "type":"structure",
1200
- "members":{
1201
- "upload":{"shape":"Upload"}
1202
- }
1203
- },
1204
- "IdempotencyException":{
1205
- "type":"structure",
1206
- "members":{
1207
- "message":{"shape":"Message"}
1208
- },
1209
- "exception":true
1210
- },
1211
- "IncompatibilityMessage":{
1212
- "type":"structure",
1213
- "members":{
1214
- "message":{"shape":"Message"},
1215
- "type":{"shape":"DeviceAttribute"}
1216
- }
1217
- },
1218
- "IncompatibilityMessages":{
1219
- "type":"list",
1220
- "member":{"shape":"IncompatibilityMessage"}
1221
- },
1222
- "InstallToRemoteAccessSessionRequest":{
1223
- "type":"structure",
1224
- "required":[
1225
- "remoteAccessSessionArn",
1226
- "appArn"
1227
- ],
1228
- "members":{
1229
- "remoteAccessSessionArn":{"shape":"AmazonResourceName"},
1230
- "appArn":{"shape":"AmazonResourceName"}
1231
- }
1232
- },
1233
- "InstallToRemoteAccessSessionResult":{
1234
- "type":"structure",
1235
- "members":{
1236
- "appUpload":{"shape":"Upload"}
1237
- }
1238
- },
1239
- "Integer":{"type":"integer"},
1240
- "Job":{
1241
- "type":"structure",
1242
- "members":{
1243
- "arn":{"shape":"AmazonResourceName"},
1244
- "name":{"shape":"Name"},
1245
- "type":{"shape":"TestType"},
1246
- "created":{"shape":"DateTime"},
1247
- "status":{"shape":"ExecutionStatus"},
1248
- "result":{"shape":"ExecutionResult"},
1249
- "started":{"shape":"DateTime"},
1250
- "stopped":{"shape":"DateTime"},
1251
- "counters":{"shape":"Counters"},
1252
- "message":{"shape":"Message"},
1253
- "device":{"shape":"Device"},
1254
- "deviceMinutes":{"shape":"DeviceMinutes"}
1255
- }
1256
- },
1257
- "Jobs":{
1258
- "type":"list",
1259
- "member":{"shape":"Job"}
1260
- },
1261
- "LimitExceededException":{
1262
- "type":"structure",
1263
- "members":{
1264
- "message":{"shape":"Message"}
1265
- },
1266
- "exception":true
1267
- },
1268
- "ListArtifactsRequest":{
1269
- "type":"structure",
1270
- "required":[
1271
- "arn",
1272
- "type"
1273
- ],
1274
- "members":{
1275
- "arn":{"shape":"AmazonResourceName"},
1276
- "type":{"shape":"ArtifactCategory"},
1277
- "nextToken":{"shape":"PaginationToken"}
1278
- }
1279
- },
1280
- "ListArtifactsResult":{
1281
- "type":"structure",
1282
- "members":{
1283
- "artifacts":{"shape":"Artifacts"},
1284
- "nextToken":{"shape":"PaginationToken"}
1285
- }
1286
- },
1287
- "ListDevicePoolsRequest":{
1288
- "type":"structure",
1289
- "required":["arn"],
1290
- "members":{
1291
- "arn":{"shape":"AmazonResourceName"},
1292
- "type":{"shape":"DevicePoolType"},
1293
- "nextToken":{"shape":"PaginationToken"}
1294
- }
1295
- },
1296
- "ListDevicePoolsResult":{
1297
- "type":"structure",
1298
- "members":{
1299
- "devicePools":{"shape":"DevicePools"},
1300
- "nextToken":{"shape":"PaginationToken"}
1301
- }
1302
- },
1303
- "ListDevicesRequest":{
1304
- "type":"structure",
1305
- "members":{
1306
- "arn":{"shape":"AmazonResourceName"},
1307
- "nextToken":{"shape":"PaginationToken"}
1308
- }
1309
- },
1310
- "ListDevicesResult":{
1311
- "type":"structure",
1312
- "members":{
1313
- "devices":{"shape":"Devices"},
1314
- "nextToken":{"shape":"PaginationToken"}
1315
- }
1316
- },
1317
- "ListJobsRequest":{
1318
- "type":"structure",
1319
- "required":["arn"],
1320
- "members":{
1321
- "arn":{"shape":"AmazonResourceName"},
1322
- "nextToken":{"shape":"PaginationToken"}
1323
- }
1324
- },
1325
- "ListJobsResult":{
1326
- "type":"structure",
1327
- "members":{
1328
- "jobs":{"shape":"Jobs"},
1329
- "nextToken":{"shape":"PaginationToken"}
1330
- }
1331
- },
1332
- "ListOfferingTransactionsRequest":{
1333
- "type":"structure",
1334
- "members":{
1335
- "nextToken":{"shape":"PaginationToken"}
1336
- }
1337
- },
1338
- "ListOfferingTransactionsResult":{
1339
- "type":"structure",
1340
- "members":{
1341
- "offeringTransactions":{"shape":"OfferingTransactions"},
1342
- "nextToken":{"shape":"PaginationToken"}
1343
- }
1344
- },
1345
- "ListOfferingsRequest":{
1346
- "type":"structure",
1347
- "members":{
1348
- "nextToken":{"shape":"PaginationToken"}
1349
- }
1350
- },
1351
- "ListOfferingsResult":{
1352
- "type":"structure",
1353
- "members":{
1354
- "offerings":{"shape":"Offerings"},
1355
- "nextToken":{"shape":"PaginationToken"}
1356
- }
1357
- },
1358
- "ListProjectsRequest":{
1359
- "type":"structure",
1360
- "members":{
1361
- "arn":{"shape":"AmazonResourceName"},
1362
- "nextToken":{"shape":"PaginationToken"}
1363
- }
1364
- },
1365
- "ListProjectsResult":{
1366
- "type":"structure",
1367
- "members":{
1368
- "projects":{"shape":"Projects"},
1369
- "nextToken":{"shape":"PaginationToken"}
1370
- }
1371
- },
1372
- "ListRemoteAccessSessionsRequest":{
1373
- "type":"structure",
1374
- "required":["arn"],
1375
- "members":{
1376
- "arn":{"shape":"AmazonResourceName"},
1377
- "nextToken":{"shape":"PaginationToken"}
1378
- }
1379
- },
1380
- "ListRemoteAccessSessionsResult":{
1381
- "type":"structure",
1382
- "members":{
1383
- "remoteAccessSessions":{"shape":"RemoteAccessSessions"},
1384
- "nextToken":{"shape":"PaginationToken"}
1385
- }
1386
- },
1387
- "ListRunsRequest":{
1388
- "type":"structure",
1389
- "required":["arn"],
1390
- "members":{
1391
- "arn":{"shape":"AmazonResourceName"},
1392
- "nextToken":{"shape":"PaginationToken"}
1393
- }
1394
- },
1395
- "ListRunsResult":{
1396
- "type":"structure",
1397
- "members":{
1398
- "runs":{"shape":"Runs"},
1399
- "nextToken":{"shape":"PaginationToken"}
1400
- }
1401
- },
1402
- "ListSamplesRequest":{
1403
- "type":"structure",
1404
- "required":["arn"],
1405
- "members":{
1406
- "arn":{"shape":"AmazonResourceName"},
1407
- "nextToken":{"shape":"PaginationToken"}
1408
- }
1409
- },
1410
- "ListSamplesResult":{
1411
- "type":"structure",
1412
- "members":{
1413
- "samples":{"shape":"Samples"},
1414
- "nextToken":{"shape":"PaginationToken"}
1415
- }
1416
- },
1417
- "ListSuitesRequest":{
1418
- "type":"structure",
1419
- "required":["arn"],
1420
- "members":{
1421
- "arn":{"shape":"AmazonResourceName"},
1422
- "nextToken":{"shape":"PaginationToken"}
1423
- }
1424
- },
1425
- "ListSuitesResult":{
1426
- "type":"structure",
1427
- "members":{
1428
- "suites":{"shape":"Suites"},
1429
- "nextToken":{"shape":"PaginationToken"}
1430
- }
1431
- },
1432
- "ListTestsRequest":{
1433
- "type":"structure",
1434
- "required":["arn"],
1435
- "members":{
1436
- "arn":{"shape":"AmazonResourceName"},
1437
- "nextToken":{"shape":"PaginationToken"}
1438
- }
1439
- },
1440
- "ListTestsResult":{
1441
- "type":"structure",
1442
- "members":{
1443
- "tests":{"shape":"Tests"},
1444
- "nextToken":{"shape":"PaginationToken"}
1445
- }
1446
- },
1447
- "ListUniqueProblemsRequest":{
1448
- "type":"structure",
1449
- "required":["arn"],
1450
- "members":{
1451
- "arn":{"shape":"AmazonResourceName"},
1452
- "nextToken":{"shape":"PaginationToken"}
1453
- }
1454
- },
1455
- "ListUniqueProblemsResult":{
1456
- "type":"structure",
1457
- "members":{
1458
- "uniqueProblems":{"shape":"UniqueProblemsByExecutionResultMap"},
1459
- "nextToken":{"shape":"PaginationToken"}
1460
- }
1461
- },
1462
- "ListUploadsRequest":{
1463
- "type":"structure",
1464
- "required":["arn"],
1465
- "members":{
1466
- "arn":{"shape":"AmazonResourceName"},
1467
- "nextToken":{"shape":"PaginationToken"}
1468
- }
1469
- },
1470
- "ListUploadsResult":{
1471
- "type":"structure",
1472
- "members":{
1473
- "uploads":{"shape":"Uploads"},
1474
- "nextToken":{"shape":"PaginationToken"}
1475
- }
1476
- },
1477
- "Location":{
1478
- "type":"structure",
1479
- "required":[
1480
- "latitude",
1481
- "longitude"
1482
- ],
1483
- "members":{
1484
- "latitude":{"shape":"Double"},
1485
- "longitude":{"shape":"Double"}
1486
- }
1487
- },
1488
- "Long":{"type":"long"},
1489
- "Message":{
1490
- "type":"string",
1491
- "max":16384,
1492
- "min":0
1493
- },
1494
- "Metadata":{
1495
- "type":"string",
1496
- "max":8192,
1497
- "min":0
1498
- },
1499
- "MonetaryAmount":{
1500
- "type":"structure",
1501
- "members":{
1502
- "amount":{"shape":"Double"},
1503
- "currencyCode":{"shape":"CurrencyCode"}
1504
- }
1505
- },
1506
- "Name":{
1507
- "type":"string",
1508
- "max":256,
1509
- "min":0
1510
- },
1511
- "NotEligibleException":{
1512
- "type":"structure",
1513
- "members":{
1514
- "message":{"shape":"Message"}
1515
- },
1516
- "exception":true
1517
- },
1518
- "NotFoundException":{
1519
- "type":"structure",
1520
- "members":{
1521
- "message":{"shape":"Message"}
1522
- },
1523
- "exception":true
1524
- },
1525
- "Offering":{
1526
- "type":"structure",
1527
- "members":{
1528
- "id":{"shape":"OfferingIdentifier"},
1529
- "description":{"shape":"Message"},
1530
- "type":{"shape":"OfferingType"},
1531
- "platform":{"shape":"DevicePlatform"},
1532
- "recurringCharges":{"shape":"RecurringCharges"}
1533
- }
1534
- },
1535
- "OfferingIdentifier":{
1536
- "type":"string",
1537
- "min":32
1538
- },
1539
- "OfferingStatus":{
1540
- "type":"structure",
1541
- "members":{
1542
- "type":{"shape":"OfferingTransactionType"},
1543
- "offering":{"shape":"Offering"},
1544
- "quantity":{"shape":"Integer"},
1545
- "effectiveOn":{"shape":"DateTime"}
1546
- }
1547
- },
1548
- "OfferingStatusMap":{
1549
- "type":"map",
1550
- "key":{"shape":"OfferingIdentifier"},
1551
- "value":{"shape":"OfferingStatus"}
1552
- },
1553
- "OfferingTransaction":{
1554
- "type":"structure",
1555
- "members":{
1556
- "offeringStatus":{"shape":"OfferingStatus"},
1557
- "transactionId":{"shape":"TransactionIdentifier"},
1558
- "createdOn":{"shape":"DateTime"},
1559
- "cost":{"shape":"MonetaryAmount"}
1560
- }
1561
- },
1562
- "OfferingTransactionType":{
1563
- "type":"string",
1564
- "enum":[
1565
- "PURCHASE",
1566
- "RENEW",
1567
- "SYSTEM"
1568
- ]
1569
- },
1570
- "OfferingTransactions":{
1571
- "type":"list",
1572
- "member":{"shape":"OfferingTransaction"}
1573
- },
1574
- "OfferingType":{
1575
- "type":"string",
1576
- "enum":["RECURRING"]
1577
- },
1578
- "Offerings":{
1579
- "type":"list",
1580
- "member":{"shape":"Offering"}
1581
- },
1582
- "PaginationToken":{
1583
- "type":"string",
1584
- "max":1024,
1585
- "min":4
1586
- },
1587
- "Problem":{
1588
- "type":"structure",
1589
- "members":{
1590
- "run":{"shape":"ProblemDetail"},
1591
- "job":{"shape":"ProblemDetail"},
1592
- "suite":{"shape":"ProblemDetail"},
1593
- "test":{"shape":"ProblemDetail"},
1594
- "device":{"shape":"Device"},
1595
- "result":{"shape":"ExecutionResult"},
1596
- "message":{"shape":"Message"}
1597
- }
1598
- },
1599
- "ProblemDetail":{
1600
- "type":"structure",
1601
- "members":{
1602
- "arn":{"shape":"AmazonResourceName"},
1603
- "name":{"shape":"Name"}
1604
- }
1605
- },
1606
- "Problems":{
1607
- "type":"list",
1608
- "member":{"shape":"Problem"}
1609
- },
1610
- "Project":{
1611
- "type":"structure",
1612
- "members":{
1613
- "arn":{"shape":"AmazonResourceName"},
1614
- "name":{"shape":"Name"},
1615
- "created":{"shape":"DateTime"}
1616
- }
1617
- },
1618
- "Projects":{
1619
- "type":"list",
1620
- "member":{"shape":"Project"}
1621
- },
1622
- "PurchaseOfferingRequest":{
1623
- "type":"structure",
1624
- "members":{
1625
- "offeringId":{"shape":"OfferingIdentifier"},
1626
- "quantity":{"shape":"Integer"}
1627
- }
1628
- },
1629
- "PurchaseOfferingResult":{
1630
- "type":"structure",
1631
- "members":{
1632
- "offeringTransaction":{"shape":"OfferingTransaction"}
1633
- }
1634
- },
1635
- "PurchasedDevicesMap":{
1636
- "type":"map",
1637
- "key":{"shape":"DevicePlatform"},
1638
- "value":{"shape":"Integer"}
1639
- },
1640
- "Radios":{
1641
- "type":"structure",
1642
- "members":{
1643
- "wifi":{"shape":"Boolean"},
1644
- "bluetooth":{"shape":"Boolean"},
1645
- "nfc":{"shape":"Boolean"},
1646
- "gps":{"shape":"Boolean"}
1647
- }
1648
- },
1649
- "RecurringCharge":{
1650
- "type":"structure",
1651
- "members":{
1652
- "cost":{"shape":"MonetaryAmount"},
1653
- "frequency":{"shape":"RecurringChargeFrequency"}
1654
- }
1655
- },
1656
- "RecurringChargeFrequency":{
1657
- "type":"string",
1658
- "enum":["MONTHLY"]
1659
- },
1660
- "RecurringCharges":{
1661
- "type":"list",
1662
- "member":{"shape":"RecurringCharge"}
1663
- },
1664
- "RemoteAccessSession":{
1665
- "type":"structure",
1666
- "members":{
1667
- "arn":{"shape":"AmazonResourceName"},
1668
- "name":{"shape":"Name"},
1669
- "created":{"shape":"DateTime"},
1670
- "status":{"shape":"ExecutionStatus"},
1671
- "result":{"shape":"ExecutionResult"},
1672
- "message":{"shape":"Message"},
1673
- "started":{"shape":"DateTime"},
1674
- "stopped":{"shape":"DateTime"},
1675
- "device":{"shape":"Device"},
1676
- "billingMethod":{"shape":"BillingMethod"},
1677
- "deviceMinutes":{"shape":"DeviceMinutes"},
1678
- "endpoint":{"shape":"String"}
1679
- }
1680
- },
1681
- "RemoteAccessSessions":{
1682
- "type":"list",
1683
- "member":{"shape":"RemoteAccessSession"}
1684
- },
1685
- "RenewOfferingRequest":{
1686
- "type":"structure",
1687
- "members":{
1688
- "offeringId":{"shape":"OfferingIdentifier"},
1689
- "quantity":{"shape":"Integer"}
1690
- }
1691
- },
1692
- "RenewOfferingResult":{
1693
- "type":"structure",
1694
- "members":{
1695
- "offeringTransaction":{"shape":"OfferingTransaction"}
1696
- }
1697
- },
1698
- "Resolution":{
1699
- "type":"structure",
1700
- "members":{
1701
- "width":{"shape":"Integer"},
1702
- "height":{"shape":"Integer"}
1703
- }
1704
- },
1705
- "Rule":{
1706
- "type":"structure",
1707
- "members":{
1708
- "attribute":{"shape":"DeviceAttribute"},
1709
- "operator":{"shape":"RuleOperator"},
1710
- "value":{"shape":"String"}
1711
- }
1712
- },
1713
- "RuleOperator":{
1714
- "type":"string",
1715
- "enum":[
1716
- "EQUALS",
1717
- "LESS_THAN",
1718
- "GREATER_THAN",
1719
- "IN",
1720
- "NOT_IN"
1721
- ]
1722
- },
1723
- "Rules":{
1724
- "type":"list",
1725
- "member":{"shape":"Rule"}
1726
- },
1727
- "Run":{
1728
- "type":"structure",
1729
- "members":{
1730
- "arn":{"shape":"AmazonResourceName"},
1731
- "name":{"shape":"Name"},
1732
- "type":{"shape":"TestType"},
1733
- "platform":{"shape":"DevicePlatform"},
1734
- "created":{"shape":"DateTime"},
1735
- "status":{"shape":"ExecutionStatus"},
1736
- "result":{"shape":"ExecutionResult"},
1737
- "started":{"shape":"DateTime"},
1738
- "stopped":{"shape":"DateTime"},
1739
- "counters":{"shape":"Counters"},
1740
- "message":{"shape":"Message"},
1741
- "totalJobs":{"shape":"Integer"},
1742
- "completedJobs":{"shape":"Integer"},
1743
- "billingMethod":{"shape":"BillingMethod"},
1744
- "deviceMinutes":{"shape":"DeviceMinutes"}
1745
- }
1746
- },
1747
- "Runs":{
1748
- "type":"list",
1749
- "member":{"shape":"Run"}
1750
- },
1751
- "Sample":{
1752
- "type":"structure",
1753
- "members":{
1754
- "arn":{"shape":"AmazonResourceName"},
1755
- "type":{"shape":"SampleType"},
1756
- "url":{"shape":"URL"}
1757
- }
1758
- },
1759
- "SampleType":{
1760
- "type":"string",
1761
- "enum":[
1762
- "CPU",
1763
- "MEMORY",
1764
- "THREADS",
1765
- "RX_RATE",
1766
- "TX_RATE",
1767
- "RX",
1768
- "TX",
1769
- "NATIVE_FRAMES",
1770
- "NATIVE_FPS",
1771
- "NATIVE_MIN_DRAWTIME",
1772
- "NATIVE_AVG_DRAWTIME",
1773
- "NATIVE_MAX_DRAWTIME",
1774
- "OPENGL_FRAMES",
1775
- "OPENGL_FPS",
1776
- "OPENGL_MIN_DRAWTIME",
1777
- "OPENGL_AVG_DRAWTIME",
1778
- "OPENGL_MAX_DRAWTIME"
1779
- ]
1780
- },
1781
- "Samples":{
1782
- "type":"list",
1783
- "member":{"shape":"Sample"}
1784
- },
1785
- "ScheduleRunConfiguration":{
1786
- "type":"structure",
1787
- "members":{
1788
- "extraDataPackageArn":{"shape":"AmazonResourceName"},
1789
- "networkProfileArn":{"shape":"AmazonResourceName"},
1790
- "locale":{"shape":"String"},
1791
- "location":{"shape":"Location"},
1792
- "radios":{"shape":"Radios"},
1793
- "auxiliaryApps":{"shape":"AmazonResourceNames"},
1794
- "billingMethod":{"shape":"BillingMethod"}
1795
- }
1796
- },
1797
- "ScheduleRunRequest":{
1798
- "type":"structure",
1799
- "required":[
1800
- "projectArn",
1801
- "devicePoolArn",
1802
- "test"
1803
- ],
1804
- "members":{
1805
- "projectArn":{"shape":"AmazonResourceName"},
1806
- "appArn":{"shape":"AmazonResourceName"},
1807
- "devicePoolArn":{"shape":"AmazonResourceName"},
1808
- "name":{"shape":"Name"},
1809
- "test":{"shape":"ScheduleRunTest"},
1810
- "configuration":{"shape":"ScheduleRunConfiguration"}
1811
- }
1812
- },
1813
- "ScheduleRunResult":{
1814
- "type":"structure",
1815
- "members":{
1816
- "run":{"shape":"Run"}
1817
- }
1818
- },
1819
- "ScheduleRunTest":{
1820
- "type":"structure",
1821
- "required":["type"],
1822
- "members":{
1823
- "type":{"shape":"TestType"},
1824
- "testPackageArn":{"shape":"AmazonResourceName"},
1825
- "filter":{"shape":"Filter"},
1826
- "parameters":{"shape":"TestParameters"}
1827
- }
1828
- },
1829
- "ServiceAccountException":{
1830
- "type":"structure",
1831
- "members":{
1832
- "message":{"shape":"Message"}
1833
- },
1834
- "exception":true
1835
- },
1836
- "StopRemoteAccessSessionRequest":{
1837
- "type":"structure",
1838
- "required":["arn"],
1839
- "members":{
1840
- "arn":{"shape":"AmazonResourceName"}
1841
- }
1842
- },
1843
- "StopRemoteAccessSessionResult":{
1844
- "type":"structure",
1845
- "members":{
1846
- "remoteAccessSession":{"shape":"RemoteAccessSession"}
1847
- }
1848
- },
1849
- "StopRunRequest":{
1850
- "type":"structure",
1851
- "required":["arn"],
1852
- "members":{
1853
- "arn":{"shape":"AmazonResourceName"}
1854
- }
1855
- },
1856
- "StopRunResult":{
1857
- "type":"structure",
1858
- "members":{
1859
- "run":{"shape":"Run"}
1860
- }
1861
- },
1862
- "String":{"type":"string"},
1863
- "Suite":{
1864
- "type":"structure",
1865
- "members":{
1866
- "arn":{"shape":"AmazonResourceName"},
1867
- "name":{"shape":"Name"},
1868
- "type":{"shape":"TestType"},
1869
- "created":{"shape":"DateTime"},
1870
- "status":{"shape":"ExecutionStatus"},
1871
- "result":{"shape":"ExecutionResult"},
1872
- "started":{"shape":"DateTime"},
1873
- "stopped":{"shape":"DateTime"},
1874
- "counters":{"shape":"Counters"},
1875
- "message":{"shape":"Message"},
1876
- "deviceMinutes":{"shape":"DeviceMinutes"}
1877
- }
1878
- },
1879
- "Suites":{
1880
- "type":"list",
1881
- "member":{"shape":"Suite"}
1882
- },
1883
- "Test":{
1884
- "type":"structure",
1885
- "members":{
1886
- "arn":{"shape":"AmazonResourceName"},
1887
- "name":{"shape":"Name"},
1888
- "type":{"shape":"TestType"},
1889
- "created":{"shape":"DateTime"},
1890
- "status":{"shape":"ExecutionStatus"},
1891
- "result":{"shape":"ExecutionResult"},
1892
- "started":{"shape":"DateTime"},
1893
- "stopped":{"shape":"DateTime"},
1894
- "counters":{"shape":"Counters"},
1895
- "message":{"shape":"Message"},
1896
- "deviceMinutes":{"shape":"DeviceMinutes"}
1897
- }
1898
- },
1899
- "TestParameters":{
1900
- "type":"map",
1901
- "key":{"shape":"String"},
1902
- "value":{"shape":"String"}
1903
- },
1904
- "TestType":{
1905
- "type":"string",
1906
- "enum":[
1907
- "BUILTIN_FUZZ",
1908
- "BUILTIN_EXPLORER",
1909
- "APPIUM_JAVA_JUNIT",
1910
- "APPIUM_JAVA_TESTNG",
1911
- "APPIUM_PYTHON",
1912
- "APPIUM_WEB_JAVA_JUNIT",
1913
- "APPIUM_WEB_JAVA_TESTNG",
1914
- "APPIUM_WEB_PYTHON",
1915
- "CALABASH",
1916
- "INSTRUMENTATION",
1917
- "UIAUTOMATION",
1918
- "UIAUTOMATOR",
1919
- "XCTEST",
1920
- "XCTEST_UI"
1921
- ]
1922
- },
1923
- "Tests":{
1924
- "type":"list",
1925
- "member":{"shape":"Test"}
1926
- },
1927
- "TransactionIdentifier":{
1928
- "type":"string",
1929
- "min":32
1930
- },
1931
- "URL":{
1932
- "type":"string",
1933
- "max":2048,
1934
- "min":0
1935
- },
1936
- "UniqueProblem":{
1937
- "type":"structure",
1938
- "members":{
1939
- "message":{"shape":"Message"},
1940
- "problems":{"shape":"Problems"}
1941
- }
1942
- },
1943
- "UniqueProblems":{
1944
- "type":"list",
1945
- "member":{"shape":"UniqueProblem"}
1946
- },
1947
- "UniqueProblemsByExecutionResultMap":{
1948
- "type":"map",
1949
- "key":{"shape":"ExecutionResult"},
1950
- "value":{"shape":"UniqueProblems"}
1951
- },
1952
- "UpdateDevicePoolRequest":{
1953
- "type":"structure",
1954
- "required":["arn"],
1955
- "members":{
1956
- "arn":{"shape":"AmazonResourceName"},
1957
- "name":{"shape":"Name"},
1958
- "description":{"shape":"Message"},
1959
- "rules":{"shape":"Rules"}
1960
- }
1961
- },
1962
- "UpdateDevicePoolResult":{
1963
- "type":"structure",
1964
- "members":{
1965
- "devicePool":{"shape":"DevicePool"}
1966
- }
1967
- },
1968
- "UpdateProjectRequest":{
1969
- "type":"structure",
1970
- "required":["arn"],
1971
- "members":{
1972
- "arn":{"shape":"AmazonResourceName"},
1973
- "name":{"shape":"Name"}
1974
- }
1975
- },
1976
- "UpdateProjectResult":{
1977
- "type":"structure",
1978
- "members":{
1979
- "project":{"shape":"Project"}
1980
- }
1981
- },
1982
- "Upload":{
1983
- "type":"structure",
1984
- "members":{
1985
- "arn":{"shape":"AmazonResourceName"},
1986
- "name":{"shape":"Name"},
1987
- "created":{"shape":"DateTime"},
1988
- "type":{"shape":"UploadType"},
1989
- "status":{"shape":"UploadStatus"},
1990
- "url":{"shape":"URL"},
1991
- "metadata":{"shape":"Metadata"},
1992
- "contentType":{"shape":"ContentType"},
1993
- "message":{"shape":"Message"}
1994
- }
1995
- },
1996
- "UploadStatus":{
1997
- "type":"string",
1998
- "enum":[
1999
- "INITIALIZED",
2000
- "PROCESSING",
2001
- "SUCCEEDED",
2002
- "FAILED"
2003
- ]
2004
- },
2005
- "UploadType":{
2006
- "type":"string",
2007
- "enum":[
2008
- "ANDROID_APP",
2009
- "IOS_APP",
2010
- "WEB_APP",
2011
- "EXTERNAL_DATA",
2012
- "APPIUM_JAVA_JUNIT_TEST_PACKAGE",
2013
- "APPIUM_JAVA_TESTNG_TEST_PACKAGE",
2014
- "APPIUM_PYTHON_TEST_PACKAGE",
2015
- "APPIUM_WEB_JAVA_JUNIT_TEST_PACKAGE",
2016
- "APPIUM_WEB_JAVA_TESTNG_TEST_PACKAGE",
2017
- "APPIUM_WEB_PYTHON_TEST_PACKAGE",
2018
- "CALABASH_TEST_PACKAGE",
2019
- "INSTRUMENTATION_TEST_PACKAGE",
2020
- "UIAUTOMATION_TEST_PACKAGE",
2021
- "UIAUTOMATOR_TEST_PACKAGE",
2022
- "XCTEST_TEST_PACKAGE",
2023
- "XCTEST_UI_TEST_PACKAGE"
2024
- ]
2025
- },
2026
- "Uploads":{
2027
- "type":"list",
2028
- "member":{"shape":"Upload"}
2029
- }
2030
- }
2031
- }