aws-sdk-core 2.3.23 → 3.89.1

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