aws-sdk-core 2.11.212 → 3.170.0

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