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,3039 +0,0 @@
1
- {
2
- "metadata" : {
3
- "apiVersion" : "2017-11-28",
4
- "endpointPrefix" : "guardduty",
5
- "signingName" : "guardduty",
6
- "serviceFullName" : "Amazon GuardDuty",
7
- "serviceId" : "GuardDuty",
8
- "protocol" : "rest-json",
9
- "jsonVersion" : "1.1",
10
- "uid" : "guardduty-2017-11-28",
11
- "signatureVersion" : "v4"
12
- },
13
- "operations" : {
14
- "AcceptInvitation" : {
15
- "name" : "AcceptInvitation",
16
- "http" : {
17
- "method" : "POST",
18
- "requestUri" : "/detector/{detectorId}/master",
19
- "responseCode" : 200
20
- },
21
- "input" : {
22
- "shape" : "AcceptInvitationRequest"
23
- },
24
- "output" : {
25
- "shape" : "AcceptInvitationResponse"
26
- },
27
- "errors" : [ {
28
- "shape" : "BadRequestException"
29
- }, {
30
- "shape" : "InternalServerErrorException"
31
- } ]
32
- },
33
- "ArchiveFindings" : {
34
- "name" : "ArchiveFindings",
35
- "http" : {
36
- "method" : "POST",
37
- "requestUri" : "/detector/{detectorId}/findings/archive",
38
- "responseCode" : 200
39
- },
40
- "input" : {
41
- "shape" : "ArchiveFindingsRequest"
42
- },
43
- "output" : {
44
- "shape" : "ArchiveFindingsResponse"
45
- },
46
- "errors" : [ {
47
- "shape" : "BadRequestException"
48
- }, {
49
- "shape" : "InternalServerErrorException"
50
- } ]
51
- },
52
- "CreateDetector" : {
53
- "name" : "CreateDetector",
54
- "http" : {
55
- "method" : "POST",
56
- "requestUri" : "/detector",
57
- "responseCode" : 200
58
- },
59
- "input" : {
60
- "shape" : "CreateDetectorRequest"
61
- },
62
- "output" : {
63
- "shape" : "CreateDetectorResponse"
64
- },
65
- "errors" : [ {
66
- "shape" : "BadRequestException"
67
- }, {
68
- "shape" : "InternalServerErrorException"
69
- } ]
70
- },
71
- "CreateFilter" : {
72
- "name" : "CreateFilter",
73
- "http" : {
74
- "method" : "POST",
75
- "requestUri" : "/detector/{detectorId}/filter",
76
- "responseCode" : 200
77
- },
78
- "input" : {
79
- "shape" : "CreateFilterRequest"
80
- },
81
- "output" : {
82
- "shape" : "CreateFilterResponse"
83
- },
84
- "errors" : [ {
85
- "shape" : "BadRequestException"
86
- }, {
87
- "shape" : "InternalServerErrorException"
88
- } ]
89
- },
90
- "CreateIPSet" : {
91
- "name" : "CreateIPSet",
92
- "http" : {
93
- "method" : "POST",
94
- "requestUri" : "/detector/{detectorId}/ipset",
95
- "responseCode" : 200
96
- },
97
- "input" : {
98
- "shape" : "CreateIPSetRequest"
99
- },
100
- "output" : {
101
- "shape" : "CreateIPSetResponse"
102
- },
103
- "errors" : [ {
104
- "shape" : "BadRequestException"
105
- }, {
106
- "shape" : "InternalServerErrorException"
107
- } ]
108
- },
109
- "CreateMembers" : {
110
- "name" : "CreateMembers",
111
- "http" : {
112
- "method" : "POST",
113
- "requestUri" : "/detector/{detectorId}/member",
114
- "responseCode" : 200
115
- },
116
- "input" : {
117
- "shape" : "CreateMembersRequest"
118
- },
119
- "output" : {
120
- "shape" : "CreateMembersResponse"
121
- },
122
- "errors" : [ {
123
- "shape" : "BadRequestException"
124
- }, {
125
- "shape" : "InternalServerErrorException"
126
- } ]
127
- },
128
- "CreateSampleFindings" : {
129
- "name" : "CreateSampleFindings",
130
- "http" : {
131
- "method" : "POST",
132
- "requestUri" : "/detector/{detectorId}/findings/create",
133
- "responseCode" : 200
134
- },
135
- "input" : {
136
- "shape" : "CreateSampleFindingsRequest"
137
- },
138
- "output" : {
139
- "shape" : "CreateSampleFindingsResponse"
140
- },
141
- "errors" : [ {
142
- "shape" : "BadRequestException"
143
- }, {
144
- "shape" : "InternalServerErrorException"
145
- } ]
146
- },
147
- "CreateThreatIntelSet" : {
148
- "name" : "CreateThreatIntelSet",
149
- "http" : {
150
- "method" : "POST",
151
- "requestUri" : "/detector/{detectorId}/threatintelset",
152
- "responseCode" : 200
153
- },
154
- "input" : {
155
- "shape" : "CreateThreatIntelSetRequest"
156
- },
157
- "output" : {
158
- "shape" : "CreateThreatIntelSetResponse"
159
- },
160
- "errors" : [ {
161
- "shape" : "BadRequestException"
162
- }, {
163
- "shape" : "InternalServerErrorException"
164
- } ]
165
- },
166
- "DeclineInvitations" : {
167
- "name" : "DeclineInvitations",
168
- "http" : {
169
- "method" : "POST",
170
- "requestUri" : "/invitation/decline",
171
- "responseCode" : 200
172
- },
173
- "input" : {
174
- "shape" : "DeclineInvitationsRequest"
175
- },
176
- "output" : {
177
- "shape" : "DeclineInvitationsResponse"
178
- },
179
- "errors" : [ {
180
- "shape" : "BadRequestException"
181
- }, {
182
- "shape" : "InternalServerErrorException"
183
- } ]
184
- },
185
- "DeleteDetector" : {
186
- "name" : "DeleteDetector",
187
- "http" : {
188
- "method" : "DELETE",
189
- "requestUri" : "/detector/{detectorId}",
190
- "responseCode" : 200
191
- },
192
- "input" : {
193
- "shape" : "DeleteDetectorRequest"
194
- },
195
- "output" : {
196
- "shape" : "DeleteDetectorResponse"
197
- },
198
- "errors" : [ {
199
- "shape" : "BadRequestException"
200
- }, {
201
- "shape" : "InternalServerErrorException"
202
- } ]
203
- },
204
- "DeleteFilter" : {
205
- "name" : "DeleteFilter",
206
- "http" : {
207
- "method" : "DELETE",
208
- "requestUri" : "/detector/{detectorId}/filter/{filterName}",
209
- "responseCode" : 200
210
- },
211
- "input" : {
212
- "shape" : "DeleteFilterRequest"
213
- },
214
- "output" : {
215
- "shape" : "DeleteFilterResponse"
216
- },
217
- "errors" : [ {
218
- "shape" : "BadRequestException"
219
- }, {
220
- "shape" : "InternalServerErrorException"
221
- } ]
222
- },
223
- "DeleteIPSet" : {
224
- "name" : "DeleteIPSet",
225
- "http" : {
226
- "method" : "DELETE",
227
- "requestUri" : "/detector/{detectorId}/ipset/{ipSetId}",
228
- "responseCode" : 200
229
- },
230
- "input" : {
231
- "shape" : "DeleteIPSetRequest"
232
- },
233
- "output" : {
234
- "shape" : "DeleteIPSetResponse"
235
- },
236
- "errors" : [ {
237
- "shape" : "BadRequestException"
238
- }, {
239
- "shape" : "InternalServerErrorException"
240
- } ]
241
- },
242
- "DeleteInvitations" : {
243
- "name" : "DeleteInvitations",
244
- "http" : {
245
- "method" : "POST",
246
- "requestUri" : "/invitation/delete",
247
- "responseCode" : 200
248
- },
249
- "input" : {
250
- "shape" : "DeleteInvitationsRequest"
251
- },
252
- "output" : {
253
- "shape" : "DeleteInvitationsResponse"
254
- },
255
- "errors" : [ {
256
- "shape" : "BadRequestException"
257
- }, {
258
- "shape" : "InternalServerErrorException"
259
- } ]
260
- },
261
- "DeleteMembers" : {
262
- "name" : "DeleteMembers",
263
- "http" : {
264
- "method" : "POST",
265
- "requestUri" : "/detector/{detectorId}/member/delete",
266
- "responseCode" : 200
267
- },
268
- "input" : {
269
- "shape" : "DeleteMembersRequest"
270
- },
271
- "output" : {
272
- "shape" : "DeleteMembersResponse"
273
- },
274
- "errors" : [ {
275
- "shape" : "BadRequestException"
276
- }, {
277
- "shape" : "InternalServerErrorException"
278
- } ]
279
- },
280
- "DeleteThreatIntelSet" : {
281
- "name" : "DeleteThreatIntelSet",
282
- "http" : {
283
- "method" : "DELETE",
284
- "requestUri" : "/detector/{detectorId}/threatintelset/{threatIntelSetId}",
285
- "responseCode" : 200
286
- },
287
- "input" : {
288
- "shape" : "DeleteThreatIntelSetRequest"
289
- },
290
- "output" : {
291
- "shape" : "DeleteThreatIntelSetResponse"
292
- },
293
- "errors" : [ {
294
- "shape" : "BadRequestException"
295
- }, {
296
- "shape" : "InternalServerErrorException"
297
- } ]
298
- },
299
- "DisassociateFromMasterAccount" : {
300
- "name" : "DisassociateFromMasterAccount",
301
- "http" : {
302
- "method" : "POST",
303
- "requestUri" : "/detector/{detectorId}/master/disassociate",
304
- "responseCode" : 200
305
- },
306
- "input" : {
307
- "shape" : "DisassociateFromMasterAccountRequest"
308
- },
309
- "output" : {
310
- "shape" : "DisassociateFromMasterAccountResponse"
311
- },
312
- "errors" : [ {
313
- "shape" : "BadRequestException"
314
- }, {
315
- "shape" : "InternalServerErrorException"
316
- } ]
317
- },
318
- "DisassociateMembers" : {
319
- "name" : "DisassociateMembers",
320
- "http" : {
321
- "method" : "POST",
322
- "requestUri" : "/detector/{detectorId}/member/disassociate",
323
- "responseCode" : 200
324
- },
325
- "input" : {
326
- "shape" : "DisassociateMembersRequest"
327
- },
328
- "output" : {
329
- "shape" : "DisassociateMembersResponse"
330
- },
331
- "errors" : [ {
332
- "shape" : "BadRequestException"
333
- }, {
334
- "shape" : "InternalServerErrorException"
335
- } ]
336
- },
337
- "GetDetector" : {
338
- "name" : "GetDetector",
339
- "http" : {
340
- "method" : "GET",
341
- "requestUri" : "/detector/{detectorId}",
342
- "responseCode" : 200
343
- },
344
- "input" : {
345
- "shape" : "GetDetectorRequest"
346
- },
347
- "output" : {
348
- "shape" : "GetDetectorResponse"
349
- },
350
- "errors" : [ {
351
- "shape" : "BadRequestException"
352
- }, {
353
- "shape" : "InternalServerErrorException"
354
- } ]
355
- },
356
- "GetFilter" : {
357
- "name" : "GetFilter",
358
- "http" : {
359
- "method" : "GET",
360
- "requestUri" : "/detector/{detectorId}/filter/{filterName}",
361
- "responseCode" : 200
362
- },
363
- "input" : {
364
- "shape" : "GetFilterRequest"
365
- },
366
- "output" : {
367
- "shape" : "GetFilterResponse"
368
- },
369
- "errors" : [ {
370
- "shape" : "BadRequestException"
371
- }, {
372
- "shape" : "InternalServerErrorException"
373
- } ]
374
- },
375
- "GetFindings" : {
376
- "name" : "GetFindings",
377
- "http" : {
378
- "method" : "POST",
379
- "requestUri" : "/detector/{detectorId}/findings/get",
380
- "responseCode" : 200
381
- },
382
- "input" : {
383
- "shape" : "GetFindingsRequest"
384
- },
385
- "output" : {
386
- "shape" : "GetFindingsResponse"
387
- },
388
- "errors" : [ {
389
- "shape" : "BadRequestException"
390
- }, {
391
- "shape" : "InternalServerErrorException"
392
- } ]
393
- },
394
- "GetFindingsStatistics" : {
395
- "name" : "GetFindingsStatistics",
396
- "http" : {
397
- "method" : "POST",
398
- "requestUri" : "/detector/{detectorId}/findings/statistics",
399
- "responseCode" : 200
400
- },
401
- "input" : {
402
- "shape" : "GetFindingsStatisticsRequest"
403
- },
404
- "output" : {
405
- "shape" : "GetFindingsStatisticsResponse"
406
- },
407
- "errors" : [ {
408
- "shape" : "BadRequestException"
409
- }, {
410
- "shape" : "InternalServerErrorException"
411
- } ]
412
- },
413
- "GetIPSet" : {
414
- "name" : "GetIPSet",
415
- "http" : {
416
- "method" : "GET",
417
- "requestUri" : "/detector/{detectorId}/ipset/{ipSetId}",
418
- "responseCode" : 200
419
- },
420
- "input" : {
421
- "shape" : "GetIPSetRequest"
422
- },
423
- "output" : {
424
- "shape" : "GetIPSetResponse"
425
- },
426
- "errors" : [ {
427
- "shape" : "BadRequestException"
428
- }, {
429
- "shape" : "InternalServerErrorException"
430
- } ]
431
- },
432
- "GetInvitationsCount" : {
433
- "name" : "GetInvitationsCount",
434
- "http" : {
435
- "method" : "GET",
436
- "requestUri" : "/invitation/count",
437
- "responseCode" : 200
438
- },
439
- "input" : {
440
- "shape" : "GetInvitationsCountRequest"
441
- },
442
- "output" : {
443
- "shape" : "GetInvitationsCountResponse"
444
- },
445
- "errors" : [ {
446
- "shape" : "BadRequestException"
447
- }, {
448
- "shape" : "InternalServerErrorException"
449
- } ]
450
- },
451
- "GetMasterAccount" : {
452
- "name" : "GetMasterAccount",
453
- "http" : {
454
- "method" : "GET",
455
- "requestUri" : "/detector/{detectorId}/master",
456
- "responseCode" : 200
457
- },
458
- "input" : {
459
- "shape" : "GetMasterAccountRequest"
460
- },
461
- "output" : {
462
- "shape" : "GetMasterAccountResponse"
463
- },
464
- "errors" : [ {
465
- "shape" : "BadRequestException"
466
- }, {
467
- "shape" : "InternalServerErrorException"
468
- } ]
469
- },
470
- "GetMembers" : {
471
- "name" : "GetMembers",
472
- "http" : {
473
- "method" : "POST",
474
- "requestUri" : "/detector/{detectorId}/member/get",
475
- "responseCode" : 200
476
- },
477
- "input" : {
478
- "shape" : "GetMembersRequest"
479
- },
480
- "output" : {
481
- "shape" : "GetMembersResponse"
482
- },
483
- "errors" : [ {
484
- "shape" : "BadRequestException"
485
- }, {
486
- "shape" : "InternalServerErrorException"
487
- } ]
488
- },
489
- "GetThreatIntelSet" : {
490
- "name" : "GetThreatIntelSet",
491
- "http" : {
492
- "method" : "GET",
493
- "requestUri" : "/detector/{detectorId}/threatintelset/{threatIntelSetId}",
494
- "responseCode" : 200
495
- },
496
- "input" : {
497
- "shape" : "GetThreatIntelSetRequest"
498
- },
499
- "output" : {
500
- "shape" : "GetThreatIntelSetResponse"
501
- },
502
- "errors" : [ {
503
- "shape" : "BadRequestException"
504
- }, {
505
- "shape" : "InternalServerErrorException"
506
- } ]
507
- },
508
- "InviteMembers" : {
509
- "name" : "InviteMembers",
510
- "http" : {
511
- "method" : "POST",
512
- "requestUri" : "/detector/{detectorId}/member/invite",
513
- "responseCode" : 200
514
- },
515
- "input" : {
516
- "shape" : "InviteMembersRequest"
517
- },
518
- "output" : {
519
- "shape" : "InviteMembersResponse"
520
- },
521
- "errors" : [ {
522
- "shape" : "BadRequestException"
523
- }, {
524
- "shape" : "InternalServerErrorException"
525
- } ]
526
- },
527
- "ListDetectors" : {
528
- "name" : "ListDetectors",
529
- "http" : {
530
- "method" : "GET",
531
- "requestUri" : "/detector",
532
- "responseCode" : 200
533
- },
534
- "input" : {
535
- "shape" : "ListDetectorsRequest"
536
- },
537
- "output" : {
538
- "shape" : "ListDetectorsResponse"
539
- },
540
- "errors" : [ {
541
- "shape" : "BadRequestException"
542
- }, {
543
- "shape" : "InternalServerErrorException"
544
- } ]
545
- },
546
- "ListFilters" : {
547
- "name" : "ListFilters",
548
- "http" : {
549
- "method" : "GET",
550
- "requestUri" : "/detector/{detectorId}/filter",
551
- "responseCode" : 200
552
- },
553
- "input" : {
554
- "shape" : "ListFiltersRequest"
555
- },
556
- "output" : {
557
- "shape" : "ListFiltersResponse"
558
- },
559
- "errors" : [ {
560
- "shape" : "BadRequestException"
561
- }, {
562
- "shape" : "InternalServerErrorException"
563
- } ]
564
- },
565
- "ListFindings" : {
566
- "name" : "ListFindings",
567
- "http" : {
568
- "method" : "POST",
569
- "requestUri" : "/detector/{detectorId}/findings",
570
- "responseCode" : 200
571
- },
572
- "input" : {
573
- "shape" : "ListFindingsRequest"
574
- },
575
- "output" : {
576
- "shape" : "ListFindingsResponse"
577
- },
578
- "errors" : [ {
579
- "shape" : "BadRequestException"
580
- }, {
581
- "shape" : "InternalServerErrorException"
582
- } ]
583
- },
584
- "ListIPSets" : {
585
- "name" : "ListIPSets",
586
- "http" : {
587
- "method" : "GET",
588
- "requestUri" : "/detector/{detectorId}/ipset",
589
- "responseCode" : 200
590
- },
591
- "input" : {
592
- "shape" : "ListIPSetsRequest"
593
- },
594
- "output" : {
595
- "shape" : "ListIPSetsResponse"
596
- },
597
- "errors" : [ {
598
- "shape" : "BadRequestException"
599
- }, {
600
- "shape" : "InternalServerErrorException"
601
- } ]
602
- },
603
- "ListInvitations" : {
604
- "name" : "ListInvitations",
605
- "http" : {
606
- "method" : "GET",
607
- "requestUri" : "/invitation",
608
- "responseCode" : 200
609
- },
610
- "input" : {
611
- "shape" : "ListInvitationsRequest"
612
- },
613
- "output" : {
614
- "shape" : "ListInvitationsResponse"
615
- },
616
- "errors" : [ {
617
- "shape" : "BadRequestException"
618
- }, {
619
- "shape" : "InternalServerErrorException"
620
- } ]
621
- },
622
- "ListMembers" : {
623
- "name" : "ListMembers",
624
- "http" : {
625
- "method" : "GET",
626
- "requestUri" : "/detector/{detectorId}/member",
627
- "responseCode" : 200
628
- },
629
- "input" : {
630
- "shape" : "ListMembersRequest"
631
- },
632
- "output" : {
633
- "shape" : "ListMembersResponse"
634
- },
635
- "errors" : [ {
636
- "shape" : "BadRequestException"
637
- }, {
638
- "shape" : "InternalServerErrorException"
639
- } ]
640
- },
641
- "ListThreatIntelSets" : {
642
- "name" : "ListThreatIntelSets",
643
- "http" : {
644
- "method" : "GET",
645
- "requestUri" : "/detector/{detectorId}/threatintelset",
646
- "responseCode" : 200
647
- },
648
- "input" : {
649
- "shape" : "ListThreatIntelSetsRequest"
650
- },
651
- "output" : {
652
- "shape" : "ListThreatIntelSetsResponse"
653
- },
654
- "errors" : [ {
655
- "shape" : "BadRequestException"
656
- }, {
657
- "shape" : "InternalServerErrorException"
658
- } ]
659
- },
660
- "StartMonitoringMembers" : {
661
- "name" : "StartMonitoringMembers",
662
- "http" : {
663
- "method" : "POST",
664
- "requestUri" : "/detector/{detectorId}/member/start",
665
- "responseCode" : 200
666
- },
667
- "input" : {
668
- "shape" : "StartMonitoringMembersRequest"
669
- },
670
- "output" : {
671
- "shape" : "StartMonitoringMembersResponse"
672
- },
673
- "errors" : [ {
674
- "shape" : "BadRequestException"
675
- }, {
676
- "shape" : "InternalServerErrorException"
677
- } ]
678
- },
679
- "StopMonitoringMembers" : {
680
- "name" : "StopMonitoringMembers",
681
- "http" : {
682
- "method" : "POST",
683
- "requestUri" : "/detector/{detectorId}/member/stop",
684
- "responseCode" : 200
685
- },
686
- "input" : {
687
- "shape" : "StopMonitoringMembersRequest"
688
- },
689
- "output" : {
690
- "shape" : "StopMonitoringMembersResponse"
691
- },
692
- "errors" : [ {
693
- "shape" : "BadRequestException"
694
- }, {
695
- "shape" : "InternalServerErrorException"
696
- } ]
697
- },
698
- "UnarchiveFindings" : {
699
- "name" : "UnarchiveFindings",
700
- "http" : {
701
- "method" : "POST",
702
- "requestUri" : "/detector/{detectorId}/findings/unarchive",
703
- "responseCode" : 200
704
- },
705
- "input" : {
706
- "shape" : "UnarchiveFindingsRequest"
707
- },
708
- "output" : {
709
- "shape" : "UnarchiveFindingsResponse"
710
- },
711
- "errors" : [ {
712
- "shape" : "BadRequestException"
713
- }, {
714
- "shape" : "InternalServerErrorException"
715
- } ]
716
- },
717
- "UpdateDetector" : {
718
- "name" : "UpdateDetector",
719
- "http" : {
720
- "method" : "POST",
721
- "requestUri" : "/detector/{detectorId}",
722
- "responseCode" : 200
723
- },
724
- "input" : {
725
- "shape" : "UpdateDetectorRequest"
726
- },
727
- "output" : {
728
- "shape" : "UpdateDetectorResponse"
729
- },
730
- "errors" : [ {
731
- "shape" : "BadRequestException"
732
- }, {
733
- "shape" : "InternalServerErrorException"
734
- } ]
735
- },
736
- "UpdateFilter" : {
737
- "name" : "UpdateFilter",
738
- "http" : {
739
- "method" : "POST",
740
- "requestUri" : "/detector/{detectorId}/filter/{filterName}",
741
- "responseCode" : 200
742
- },
743
- "input" : {
744
- "shape" : "UpdateFilterRequest"
745
- },
746
- "output" : {
747
- "shape" : "UpdateFilterResponse"
748
- },
749
- "errors" : [ {
750
- "shape" : "BadRequestException"
751
- }, {
752
- "shape" : "InternalServerErrorException"
753
- } ]
754
- },
755
- "UpdateFindingsFeedback" : {
756
- "name" : "UpdateFindingsFeedback",
757
- "http" : {
758
- "method" : "POST",
759
- "requestUri" : "/detector/{detectorId}/findings/feedback",
760
- "responseCode" : 200
761
- },
762
- "input" : {
763
- "shape" : "UpdateFindingsFeedbackRequest"
764
- },
765
- "output" : {
766
- "shape" : "UpdateFindingsFeedbackResponse"
767
- },
768
- "errors" : [ {
769
- "shape" : "BadRequestException"
770
- }, {
771
- "shape" : "InternalServerErrorException"
772
- } ]
773
- },
774
- "UpdateIPSet" : {
775
- "name" : "UpdateIPSet",
776
- "http" : {
777
- "method" : "POST",
778
- "requestUri" : "/detector/{detectorId}/ipset/{ipSetId}",
779
- "responseCode" : 200
780
- },
781
- "input" : {
782
- "shape" : "UpdateIPSetRequest"
783
- },
784
- "output" : {
785
- "shape" : "UpdateIPSetResponse"
786
- },
787
- "errors" : [ {
788
- "shape" : "BadRequestException"
789
- }, {
790
- "shape" : "InternalServerErrorException"
791
- } ]
792
- },
793
- "UpdateThreatIntelSet" : {
794
- "name" : "UpdateThreatIntelSet",
795
- "http" : {
796
- "method" : "POST",
797
- "requestUri" : "/detector/{detectorId}/threatintelset/{threatIntelSetId}",
798
- "responseCode" : 200
799
- },
800
- "input" : {
801
- "shape" : "UpdateThreatIntelSetRequest"
802
- },
803
- "output" : {
804
- "shape" : "UpdateThreatIntelSetResponse"
805
- },
806
- "errors" : [ {
807
- "shape" : "BadRequestException"
808
- }, {
809
- "shape" : "InternalServerErrorException"
810
- } ]
811
- }
812
- },
813
- "shapes" : {
814
- "AcceptInvitationRequest" : {
815
- "type" : "structure",
816
- "members" : {
817
- "DetectorId" : {
818
- "shape" : "__string",
819
- "location" : "uri",
820
- "locationName" : "detectorId"
821
- },
822
- "InvitationId" : {
823
- "shape" : "InvitationId",
824
- "locationName" : "invitationId"
825
- },
826
- "MasterId" : {
827
- "shape" : "MasterId",
828
- "locationName" : "masterId"
829
- }
830
- },
831
- "required" : [ "DetectorId", "MasterId", "InvitationId" ]
832
- },
833
- "AcceptInvitationResponse" : {
834
- "type" : "structure",
835
- "members" : { }
836
- },
837
- "AccessKeyDetails" : {
838
- "type" : "structure",
839
- "members" : {
840
- "AccessKeyId" : {
841
- "shape" : "__string",
842
- "locationName" : "accessKeyId"
843
- },
844
- "PrincipalId" : {
845
- "shape" : "__string",
846
- "locationName" : "principalId"
847
- },
848
- "UserName" : {
849
- "shape" : "__string",
850
- "locationName" : "userName"
851
- },
852
- "UserType" : {
853
- "shape" : "__string",
854
- "locationName" : "userType"
855
- }
856
- }
857
- },
858
- "AccountDetail" : {
859
- "type" : "structure",
860
- "members" : {
861
- "AccountId" : {
862
- "shape" : "AccountId",
863
- "locationName" : "accountId"
864
- },
865
- "Email" : {
866
- "shape" : "Email",
867
- "locationName" : "email"
868
- }
869
- },
870
- "required" : [ "Email", "AccountId" ]
871
- },
872
- "AccountDetails" : {
873
- "type" : "list",
874
- "member" : {
875
- "shape" : "AccountDetail"
876
- }
877
- },
878
- "AccountId" : {
879
- "type" : "string"
880
- },
881
- "AccountIds" : {
882
- "type" : "list",
883
- "member" : {
884
- "shape" : "__string"
885
- }
886
- },
887
- "Action" : {
888
- "type" : "structure",
889
- "members" : {
890
- "ActionType" : {
891
- "shape" : "__string",
892
- "locationName" : "actionType"
893
- },
894
- "AwsApiCallAction" : {
895
- "shape" : "AwsApiCallAction",
896
- "locationName" : "awsApiCallAction"
897
- },
898
- "DnsRequestAction" : {
899
- "shape" : "DnsRequestAction",
900
- "locationName" : "dnsRequestAction"
901
- },
902
- "NetworkConnectionAction" : {
903
- "shape" : "NetworkConnectionAction",
904
- "locationName" : "networkConnectionAction"
905
- },
906
- "PortProbeAction" : {
907
- "shape" : "PortProbeAction",
908
- "locationName" : "portProbeAction"
909
- }
910
- }
911
- },
912
- "Activate" : {
913
- "type" : "boolean"
914
- },
915
- "ArchiveFindingsRequest" : {
916
- "type" : "structure",
917
- "members" : {
918
- "DetectorId" : {
919
- "shape" : "__string",
920
- "location" : "uri",
921
- "locationName" : "detectorId"
922
- },
923
- "FindingIds" : {
924
- "shape" : "FindingIds",
925
- "locationName" : "findingIds"
926
- }
927
- },
928
- "required" : [ "DetectorId", "FindingIds" ]
929
- },
930
- "ArchiveFindingsResponse" : {
931
- "type" : "structure",
932
- "members" : { }
933
- },
934
- "AwsApiCallAction" : {
935
- "type" : "structure",
936
- "members" : {
937
- "Api" : {
938
- "shape" : "__string",
939
- "locationName" : "api"
940
- },
941
- "CallerType" : {
942
- "shape" : "__string",
943
- "locationName" : "callerType"
944
- },
945
- "DomainDetails" : {
946
- "shape" : "DomainDetails",
947
- "locationName" : "domainDetails"
948
- },
949
- "RemoteIpDetails" : {
950
- "shape" : "RemoteIpDetails",
951
- "locationName" : "remoteIpDetails"
952
- },
953
- "ServiceName" : {
954
- "shape" : "__string",
955
- "locationName" : "serviceName"
956
- }
957
- }
958
- },
959
- "BadRequestException" : {
960
- "type" : "structure",
961
- "members" : {
962
- "Message" : {
963
- "shape" : "__string",
964
- "locationName" : "message"
965
- },
966
- "Type" : {
967
- "shape" : "__string",
968
- "locationName" : "__type"
969
- }
970
- },
971
- "exception" : true,
972
- "error" : {
973
- "httpStatusCode" : 400
974
- }
975
- },
976
- "City" : {
977
- "type" : "structure",
978
- "members" : {
979
- "CityName" : {
980
- "shape" : "__string",
981
- "locationName" : "cityName"
982
- }
983
- }
984
- },
985
- "Comments" : {
986
- "type" : "string"
987
- },
988
- "Condition" : {
989
- "type" : "structure",
990
- "members" : {
991
- "Eq" : {
992
- "shape" : "Eq",
993
- "locationName" : "eq"
994
- },
995
- "Gt" : {
996
- "shape" : "__integer",
997
- "locationName" : "gt"
998
- },
999
- "Gte" : {
1000
- "shape" : "__integer",
1001
- "locationName" : "gte"
1002
- },
1003
- "Lt" : {
1004
- "shape" : "__integer",
1005
- "locationName" : "lt"
1006
- },
1007
- "Lte" : {
1008
- "shape" : "__integer",
1009
- "locationName" : "lte"
1010
- },
1011
- "Neq" : {
1012
- "shape" : "Neq",
1013
- "locationName" : "neq"
1014
- }
1015
- }
1016
- },
1017
- "CountBySeverityFindingStatistic" : {
1018
- "type" : "integer"
1019
- },
1020
- "Country" : {
1021
- "type" : "structure",
1022
- "members" : {
1023
- "CountryCode" : {
1024
- "shape" : "__string",
1025
- "locationName" : "countryCode"
1026
- },
1027
- "CountryName" : {
1028
- "shape" : "__string",
1029
- "locationName" : "countryName"
1030
- }
1031
- }
1032
- },
1033
- "CreateDetectorRequest" : {
1034
- "type" : "structure",
1035
- "members" : {
1036
- "ClientToken" : {
1037
- "shape" : "__stringMin0Max64",
1038
- "locationName" : "clientToken",
1039
- "idempotencyToken" : true
1040
- },
1041
- "Enable" : {
1042
- "shape" : "Enable",
1043
- "locationName" : "enable"
1044
- },
1045
- "FindingPublishingFrequency" : {
1046
- "shape" : "FindingPublishingFrequency",
1047
- "locationName" : "findingPublishingFrequency"
1048
- }
1049
- },
1050
- "required" : [ "Enable" ]
1051
- },
1052
- "CreateDetectorResponse" : {
1053
- "type" : "structure",
1054
- "members" : {
1055
- "DetectorId" : {
1056
- "shape" : "DetectorId",
1057
- "locationName" : "detectorId"
1058
- }
1059
- }
1060
- },
1061
- "CreateFilterRequest" : {
1062
- "type" : "structure",
1063
- "members" : {
1064
- "Action" : {
1065
- "shape" : "FilterAction",
1066
- "locationName" : "action"
1067
- },
1068
- "ClientToken" : {
1069
- "shape" : "__stringMin0Max64",
1070
- "locationName" : "clientToken",
1071
- "idempotencyToken" : true
1072
- },
1073
- "Description" : {
1074
- "shape" : "FilterDescription",
1075
- "locationName" : "description"
1076
- },
1077
- "DetectorId" : {
1078
- "shape" : "__string",
1079
- "location" : "uri",
1080
- "locationName" : "detectorId"
1081
- },
1082
- "FindingCriteria" : {
1083
- "shape" : "FindingCriteria",
1084
- "locationName" : "findingCriteria"
1085
- },
1086
- "Name" : {
1087
- "shape" : "FilterName",
1088
- "locationName" : "name"
1089
- },
1090
- "Rank" : {
1091
- "shape" : "FilterRank",
1092
- "locationName" : "rank"
1093
- }
1094
- },
1095
- "required" : [ "DetectorId", "FindingCriteria", "Name" ]
1096
- },
1097
- "CreateFilterResponse" : {
1098
- "type" : "structure",
1099
- "members" : {
1100
- "Name" : {
1101
- "shape" : "FilterName",
1102
- "locationName" : "name"
1103
- }
1104
- }
1105
- },
1106
- "CreateIPSetRequest" : {
1107
- "type" : "structure",
1108
- "members" : {
1109
- "Activate" : {
1110
- "shape" : "Activate",
1111
- "locationName" : "activate"
1112
- },
1113
- "ClientToken" : {
1114
- "shape" : "__stringMin0Max64",
1115
- "locationName" : "clientToken",
1116
- "idempotencyToken" : true
1117
- },
1118
- "DetectorId" : {
1119
- "shape" : "__string",
1120
- "location" : "uri",
1121
- "locationName" : "detectorId"
1122
- },
1123
- "Format" : {
1124
- "shape" : "IpSetFormat",
1125
- "locationName" : "format"
1126
- },
1127
- "Location" : {
1128
- "shape" : "Location",
1129
- "locationName" : "location"
1130
- },
1131
- "Name" : {
1132
- "shape" : "Name",
1133
- "locationName" : "name"
1134
- }
1135
- },
1136
- "required" : [ "DetectorId", "Format", "Activate", "Location", "Name" ]
1137
- },
1138
- "CreateIPSetResponse" : {
1139
- "type" : "structure",
1140
- "members" : {
1141
- "IpSetId" : {
1142
- "shape" : "IpSetId",
1143
- "locationName" : "ipSetId"
1144
- }
1145
- }
1146
- },
1147
- "CreateMembersRequest" : {
1148
- "type" : "structure",
1149
- "members" : {
1150
- "AccountDetails" : {
1151
- "shape" : "AccountDetails",
1152
- "locationName" : "accountDetails"
1153
- },
1154
- "DetectorId" : {
1155
- "shape" : "__string",
1156
- "location" : "uri",
1157
- "locationName" : "detectorId"
1158
- }
1159
- },
1160
- "required" : [ "DetectorId", "AccountDetails" ]
1161
- },
1162
- "CreateMembersResponse" : {
1163
- "type" : "structure",
1164
- "members" : {
1165
- "UnprocessedAccounts" : {
1166
- "shape" : "UnprocessedAccounts",
1167
- "locationName" : "unprocessedAccounts"
1168
- }
1169
- }
1170
- },
1171
- "CreateSampleFindingsRequest" : {
1172
- "type" : "structure",
1173
- "members" : {
1174
- "DetectorId" : {
1175
- "shape" : "__string",
1176
- "location" : "uri",
1177
- "locationName" : "detectorId"
1178
- },
1179
- "FindingTypes" : {
1180
- "shape" : "FindingTypes",
1181
- "locationName" : "findingTypes"
1182
- }
1183
- },
1184
- "required" : [ "DetectorId" ]
1185
- },
1186
- "CreateSampleFindingsResponse" : {
1187
- "type" : "structure",
1188
- "members" : { }
1189
- },
1190
- "CreateThreatIntelSetRequest" : {
1191
- "type" : "structure",
1192
- "members" : {
1193
- "Activate" : {
1194
- "shape" : "Activate",
1195
- "locationName" : "activate"
1196
- },
1197
- "ClientToken" : {
1198
- "shape" : "__stringMin0Max64",
1199
- "locationName" : "clientToken",
1200
- "idempotencyToken" : true
1201
- },
1202
- "DetectorId" : {
1203
- "shape" : "__string",
1204
- "location" : "uri",
1205
- "locationName" : "detectorId"
1206
- },
1207
- "Format" : {
1208
- "shape" : "ThreatIntelSetFormat",
1209
- "locationName" : "format"
1210
- },
1211
- "Location" : {
1212
- "shape" : "Location",
1213
- "locationName" : "location"
1214
- },
1215
- "Name" : {
1216
- "shape" : "Name",
1217
- "locationName" : "name"
1218
- }
1219
- },
1220
- "required" : [ "DetectorId", "Format", "Activate", "Location", "Name" ]
1221
- },
1222
- "CreateThreatIntelSetResponse" : {
1223
- "type" : "structure",
1224
- "members" : {
1225
- "ThreatIntelSetId" : {
1226
- "shape" : "ThreatIntelSetId",
1227
- "locationName" : "threatIntelSetId"
1228
- }
1229
- }
1230
- },
1231
- "CreatedAt" : {
1232
- "type" : "string"
1233
- },
1234
- "DeclineInvitationsRequest" : {
1235
- "type" : "structure",
1236
- "members" : {
1237
- "AccountIds" : {
1238
- "shape" : "AccountIds",
1239
- "locationName" : "accountIds"
1240
- }
1241
- },
1242
- "required" : [ "AccountIds" ]
1243
- },
1244
- "DeclineInvitationsResponse" : {
1245
- "type" : "structure",
1246
- "members" : {
1247
- "UnprocessedAccounts" : {
1248
- "shape" : "UnprocessedAccounts",
1249
- "locationName" : "unprocessedAccounts"
1250
- }
1251
- }
1252
- },
1253
- "DeleteDetectorRequest" : {
1254
- "type" : "structure",
1255
- "members" : {
1256
- "DetectorId" : {
1257
- "shape" : "__string",
1258
- "location" : "uri",
1259
- "locationName" : "detectorId"
1260
- }
1261
- },
1262
- "required" : [ "DetectorId" ]
1263
- },
1264
- "DeleteDetectorResponse" : {
1265
- "type" : "structure",
1266
- "members" : { }
1267
- },
1268
- "DeleteFilterRequest" : {
1269
- "type" : "structure",
1270
- "members" : {
1271
- "DetectorId" : {
1272
- "shape" : "__string",
1273
- "location" : "uri",
1274
- "locationName" : "detectorId"
1275
- },
1276
- "FilterName" : {
1277
- "shape" : "__string",
1278
- "location" : "uri",
1279
- "locationName" : "filterName"
1280
- }
1281
- },
1282
- "required" : [ "DetectorId", "FilterName" ]
1283
- },
1284
- "DeleteFilterResponse" : {
1285
- "type" : "structure",
1286
- "members" : { }
1287
- },
1288
- "DeleteIPSetRequest" : {
1289
- "type" : "structure",
1290
- "members" : {
1291
- "DetectorId" : {
1292
- "shape" : "__string",
1293
- "location" : "uri",
1294
- "locationName" : "detectorId"
1295
- },
1296
- "IpSetId" : {
1297
- "shape" : "__string",
1298
- "location" : "uri",
1299
- "locationName" : "ipSetId"
1300
- }
1301
- },
1302
- "required" : [ "DetectorId", "IpSetId" ]
1303
- },
1304
- "DeleteIPSetResponse" : {
1305
- "type" : "structure",
1306
- "members" : { }
1307
- },
1308
- "DeleteInvitationsRequest" : {
1309
- "type" : "structure",
1310
- "members" : {
1311
- "AccountIds" : {
1312
- "shape" : "AccountIds",
1313
- "locationName" : "accountIds"
1314
- }
1315
- },
1316
- "required" : [ "AccountIds" ]
1317
- },
1318
- "DeleteInvitationsResponse" : {
1319
- "type" : "structure",
1320
- "members" : {
1321
- "UnprocessedAccounts" : {
1322
- "shape" : "UnprocessedAccounts",
1323
- "locationName" : "unprocessedAccounts"
1324
- }
1325
- }
1326
- },
1327
- "DeleteMembersRequest" : {
1328
- "type" : "structure",
1329
- "members" : {
1330
- "AccountIds" : {
1331
- "shape" : "AccountIds",
1332
- "locationName" : "accountIds"
1333
- },
1334
- "DetectorId" : {
1335
- "shape" : "__string",
1336
- "location" : "uri",
1337
- "locationName" : "detectorId"
1338
- }
1339
- },
1340
- "required" : [ "DetectorId", "AccountIds" ]
1341
- },
1342
- "DeleteMembersResponse" : {
1343
- "type" : "structure",
1344
- "members" : {
1345
- "UnprocessedAccounts" : {
1346
- "shape" : "UnprocessedAccounts",
1347
- "locationName" : "unprocessedAccounts"
1348
- }
1349
- }
1350
- },
1351
- "DeleteThreatIntelSetRequest" : {
1352
- "type" : "structure",
1353
- "members" : {
1354
- "DetectorId" : {
1355
- "shape" : "__string",
1356
- "location" : "uri",
1357
- "locationName" : "detectorId"
1358
- },
1359
- "ThreatIntelSetId" : {
1360
- "shape" : "__string",
1361
- "location" : "uri",
1362
- "locationName" : "threatIntelSetId"
1363
- }
1364
- },
1365
- "required" : [ "ThreatIntelSetId", "DetectorId" ]
1366
- },
1367
- "DeleteThreatIntelSetResponse" : {
1368
- "type" : "structure",
1369
- "members" : { }
1370
- },
1371
- "DetectorId" : {
1372
- "type" : "string"
1373
- },
1374
- "DetectorIds" : {
1375
- "type" : "list",
1376
- "member" : {
1377
- "shape" : "DetectorId"
1378
- }
1379
- },
1380
- "DetectorStatus" : {
1381
- "type" : "string",
1382
- "enum" : [ "ENABLED", "DISABLED" ]
1383
- },
1384
- "DisassociateFromMasterAccountRequest" : {
1385
- "type" : "structure",
1386
- "members" : {
1387
- "DetectorId" : {
1388
- "shape" : "__string",
1389
- "location" : "uri",
1390
- "locationName" : "detectorId"
1391
- }
1392
- },
1393
- "required" : [ "DetectorId" ]
1394
- },
1395
- "DisassociateFromMasterAccountResponse" : {
1396
- "type" : "structure",
1397
- "members" : { }
1398
- },
1399
- "DisassociateMembersRequest" : {
1400
- "type" : "structure",
1401
- "members" : {
1402
- "AccountIds" : {
1403
- "shape" : "AccountIds",
1404
- "locationName" : "accountIds"
1405
- },
1406
- "DetectorId" : {
1407
- "shape" : "__string",
1408
- "location" : "uri",
1409
- "locationName" : "detectorId"
1410
- }
1411
- },
1412
- "required" : [ "DetectorId", "AccountIds" ]
1413
- },
1414
- "DisassociateMembersResponse" : {
1415
- "type" : "structure",
1416
- "members" : {
1417
- "UnprocessedAccounts" : {
1418
- "shape" : "UnprocessedAccounts",
1419
- "locationName" : "unprocessedAccounts"
1420
- }
1421
- }
1422
- },
1423
- "DnsRequestAction" : {
1424
- "type" : "structure",
1425
- "members" : {
1426
- "Domain" : {
1427
- "shape" : "Domain",
1428
- "locationName" : "domain"
1429
- }
1430
- }
1431
- },
1432
- "Domain" : {
1433
- "type" : "string"
1434
- },
1435
- "DomainDetails" : {
1436
- "type" : "structure",
1437
- "members" : { }
1438
- },
1439
- "Email" : {
1440
- "type" : "string"
1441
- },
1442
- "Enable" : {
1443
- "type" : "boolean"
1444
- },
1445
- "Eq" : {
1446
- "type" : "list",
1447
- "member" : {
1448
- "shape" : "__string"
1449
- }
1450
- },
1451
- "ErrorResponse" : {
1452
- "type" : "structure",
1453
- "members" : {
1454
- "Message" : {
1455
- "shape" : "__string",
1456
- "locationName" : "message"
1457
- },
1458
- "Type" : {
1459
- "shape" : "__string",
1460
- "locationName" : "__type"
1461
- }
1462
- }
1463
- },
1464
- "Feedback" : {
1465
- "type" : "string",
1466
- "enum" : [ "USEFUL", "NOT_USEFUL" ]
1467
- },
1468
- "FilterAction" : {
1469
- "type" : "string",
1470
- "enum" : [ "NOOP", "ARCHIVE" ]
1471
- },
1472
- "FilterDescription" : {
1473
- "type" : "string"
1474
- },
1475
- "FilterName" : {
1476
- "type" : "string"
1477
- },
1478
- "FilterNames" : {
1479
- "type" : "list",
1480
- "member" : {
1481
- "shape" : "FilterName"
1482
- }
1483
- },
1484
- "FilterRank" : {
1485
- "type" : "integer"
1486
- },
1487
- "Finding" : {
1488
- "type" : "structure",
1489
- "members" : {
1490
- "AccountId" : {
1491
- "shape" : "__string",
1492
- "locationName" : "accountId"
1493
- },
1494
- "Arn" : {
1495
- "shape" : "__string",
1496
- "locationName" : "arn"
1497
- },
1498
- "Confidence" : {
1499
- "shape" : "__double",
1500
- "locationName" : "confidence"
1501
- },
1502
- "CreatedAt" : {
1503
- "shape" : "CreatedAt",
1504
- "locationName" : "createdAt"
1505
- },
1506
- "Description" : {
1507
- "shape" : "__string",
1508
- "locationName" : "description"
1509
- },
1510
- "Id" : {
1511
- "shape" : "__string",
1512
- "locationName" : "id"
1513
- },
1514
- "Partition" : {
1515
- "shape" : "__string",
1516
- "locationName" : "partition"
1517
- },
1518
- "Region" : {
1519
- "shape" : "__string",
1520
- "locationName" : "region"
1521
- },
1522
- "Resource" : {
1523
- "shape" : "Resource",
1524
- "locationName" : "resource"
1525
- },
1526
- "SchemaVersion" : {
1527
- "shape" : "__string",
1528
- "locationName" : "schemaVersion"
1529
- },
1530
- "Service" : {
1531
- "shape" : "Service",
1532
- "locationName" : "service"
1533
- },
1534
- "Severity" : {
1535
- "shape" : "__double",
1536
- "locationName" : "severity"
1537
- },
1538
- "Title" : {
1539
- "shape" : "__string",
1540
- "locationName" : "title"
1541
- },
1542
- "Type" : {
1543
- "shape" : "__string",
1544
- "locationName" : "type"
1545
- },
1546
- "UpdatedAt" : {
1547
- "shape" : "UpdatedAt",
1548
- "locationName" : "updatedAt"
1549
- }
1550
- },
1551
- "required" : [ "AccountId", "SchemaVersion", "CreatedAt", "Resource", "Severity", "UpdatedAt", "Type", "Region", "Id", "Arn" ]
1552
- },
1553
- "FindingCriteria" : {
1554
- "type" : "structure",
1555
- "members" : {
1556
- "Criterion" : {
1557
- "shape" : "__mapOfCondition",
1558
- "locationName" : "criterion"
1559
- }
1560
- }
1561
- },
1562
- "FindingId" : {
1563
- "type" : "string"
1564
- },
1565
- "FindingIds" : {
1566
- "type" : "list",
1567
- "member" : {
1568
- "shape" : "FindingId"
1569
- }
1570
- },
1571
- "FindingPublishingFrequency" : {
1572
- "type" : "string",
1573
- "enum" : [ "FIFTEEN_MINUTES", "ONE_HOUR", "SIX_HOURS" ]
1574
- },
1575
- "FindingStatisticType" : {
1576
- "type" : "string",
1577
- "enum" : [ "COUNT_BY_SEVERITY" ]
1578
- },
1579
- "FindingStatisticTypes" : {
1580
- "type" : "list",
1581
- "member" : {
1582
- "shape" : "FindingStatisticType"
1583
- }
1584
- },
1585
- "FindingStatistics" : {
1586
- "type" : "structure",
1587
- "members" : {
1588
- "CountBySeverity" : {
1589
- "shape" : "__mapOfCountBySeverityFindingStatistic",
1590
- "locationName" : "countBySeverity"
1591
- }
1592
- }
1593
- },
1594
- "FindingType" : {
1595
- "type" : "string"
1596
- },
1597
- "FindingTypes" : {
1598
- "type" : "list",
1599
- "member" : {
1600
- "shape" : "FindingType"
1601
- }
1602
- },
1603
- "Findings" : {
1604
- "type" : "list",
1605
- "member" : {
1606
- "shape" : "Finding"
1607
- }
1608
- },
1609
- "GeoLocation" : {
1610
- "type" : "structure",
1611
- "members" : {
1612
- "Lat" : {
1613
- "shape" : "__double",
1614
- "locationName" : "lat"
1615
- },
1616
- "Lon" : {
1617
- "shape" : "__double",
1618
- "locationName" : "lon"
1619
- }
1620
- }
1621
- },
1622
- "GetDetectorRequest" : {
1623
- "type" : "structure",
1624
- "members" : {
1625
- "DetectorId" : {
1626
- "shape" : "__string",
1627
- "location" : "uri",
1628
- "locationName" : "detectorId"
1629
- }
1630
- },
1631
- "required" : [ "DetectorId" ]
1632
- },
1633
- "GetDetectorResponse" : {
1634
- "type" : "structure",
1635
- "members" : {
1636
- "CreatedAt" : {
1637
- "shape" : "CreatedAt",
1638
- "locationName" : "createdAt"
1639
- },
1640
- "FindingPublishingFrequency" : {
1641
- "shape" : "FindingPublishingFrequency",
1642
- "locationName" : "findingPublishingFrequency"
1643
- },
1644
- "ServiceRole" : {
1645
- "shape" : "ServiceRole",
1646
- "locationName" : "serviceRole"
1647
- },
1648
- "Status" : {
1649
- "shape" : "DetectorStatus",
1650
- "locationName" : "status"
1651
- },
1652
- "UpdatedAt" : {
1653
- "shape" : "UpdatedAt",
1654
- "locationName" : "updatedAt"
1655
- }
1656
- }
1657
- },
1658
- "GetFilterRequest" : {
1659
- "type" : "structure",
1660
- "members" : {
1661
- "DetectorId" : {
1662
- "shape" : "__string",
1663
- "location" : "uri",
1664
- "locationName" : "detectorId"
1665
- },
1666
- "FilterName" : {
1667
- "shape" : "__string",
1668
- "location" : "uri",
1669
- "locationName" : "filterName"
1670
- }
1671
- },
1672
- "required" : [ "DetectorId", "FilterName" ]
1673
- },
1674
- "GetFilterResponse" : {
1675
- "type" : "structure",
1676
- "members" : {
1677
- "Action" : {
1678
- "shape" : "FilterAction",
1679
- "locationName" : "action"
1680
- },
1681
- "Description" : {
1682
- "shape" : "FilterDescription",
1683
- "locationName" : "description"
1684
- },
1685
- "FindingCriteria" : {
1686
- "shape" : "FindingCriteria",
1687
- "locationName" : "findingCriteria"
1688
- },
1689
- "Name" : {
1690
- "shape" : "FilterName",
1691
- "locationName" : "name"
1692
- },
1693
- "Rank" : {
1694
- "shape" : "FilterRank",
1695
- "locationName" : "rank"
1696
- }
1697
- }
1698
- },
1699
- "GetFindingsRequest" : {
1700
- "type" : "structure",
1701
- "members" : {
1702
- "DetectorId" : {
1703
- "shape" : "__string",
1704
- "location" : "uri",
1705
- "locationName" : "detectorId"
1706
- },
1707
- "FindingIds" : {
1708
- "shape" : "FindingIds",
1709
- "locationName" : "findingIds"
1710
- },
1711
- "SortCriteria" : {
1712
- "shape" : "SortCriteria",
1713
- "locationName" : "sortCriteria"
1714
- }
1715
- },
1716
- "required" : [ "DetectorId", "FindingIds" ]
1717
- },
1718
- "GetFindingsResponse" : {
1719
- "type" : "structure",
1720
- "members" : {
1721
- "Findings" : {
1722
- "shape" : "Findings",
1723
- "locationName" : "findings"
1724
- }
1725
- }
1726
- },
1727
- "GetFindingsStatisticsRequest" : {
1728
- "type" : "structure",
1729
- "members" : {
1730
- "DetectorId" : {
1731
- "shape" : "__string",
1732
- "location" : "uri",
1733
- "locationName" : "detectorId"
1734
- },
1735
- "FindingCriteria" : {
1736
- "shape" : "FindingCriteria",
1737
- "locationName" : "findingCriteria"
1738
- },
1739
- "FindingStatisticTypes" : {
1740
- "shape" : "FindingStatisticTypes",
1741
- "locationName" : "findingStatisticTypes"
1742
- }
1743
- },
1744
- "required" : [ "DetectorId", "FindingStatisticTypes" ]
1745
- },
1746
- "GetFindingsStatisticsResponse" : {
1747
- "type" : "structure",
1748
- "members" : {
1749
- "FindingStatistics" : {
1750
- "shape" : "FindingStatistics",
1751
- "locationName" : "findingStatistics"
1752
- }
1753
- }
1754
- },
1755
- "GetIPSetRequest" : {
1756
- "type" : "structure",
1757
- "members" : {
1758
- "DetectorId" : {
1759
- "shape" : "__string",
1760
- "location" : "uri",
1761
- "locationName" : "detectorId"
1762
- },
1763
- "IpSetId" : {
1764
- "shape" : "__string",
1765
- "location" : "uri",
1766
- "locationName" : "ipSetId"
1767
- }
1768
- },
1769
- "required" : [ "DetectorId", "IpSetId" ]
1770
- },
1771
- "GetIPSetResponse" : {
1772
- "type" : "structure",
1773
- "members" : {
1774
- "Format" : {
1775
- "shape" : "IpSetFormat",
1776
- "locationName" : "format"
1777
- },
1778
- "Location" : {
1779
- "shape" : "Location",
1780
- "locationName" : "location"
1781
- },
1782
- "Name" : {
1783
- "shape" : "Name",
1784
- "locationName" : "name"
1785
- },
1786
- "Status" : {
1787
- "shape" : "IpSetStatus",
1788
- "locationName" : "status"
1789
- }
1790
- }
1791
- },
1792
- "GetInvitationsCountRequest" : {
1793
- "type" : "structure",
1794
- "members" : { }
1795
- },
1796
- "GetInvitationsCountResponse" : {
1797
- "type" : "structure",
1798
- "members" : {
1799
- "InvitationsCount" : {
1800
- "shape" : "__integer",
1801
- "locationName" : "invitationsCount"
1802
- }
1803
- }
1804
- },
1805
- "GetMasterAccountRequest" : {
1806
- "type" : "structure",
1807
- "members" : {
1808
- "DetectorId" : {
1809
- "shape" : "__string",
1810
- "location" : "uri",
1811
- "locationName" : "detectorId"
1812
- }
1813
- },
1814
- "required" : [ "DetectorId" ]
1815
- },
1816
- "GetMasterAccountResponse" : {
1817
- "type" : "structure",
1818
- "members" : {
1819
- "Master" : {
1820
- "shape" : "Master",
1821
- "locationName" : "master"
1822
- }
1823
- }
1824
- },
1825
- "GetMembersRequest" : {
1826
- "type" : "structure",
1827
- "members" : {
1828
- "AccountIds" : {
1829
- "shape" : "AccountIds",
1830
- "locationName" : "accountIds"
1831
- },
1832
- "DetectorId" : {
1833
- "shape" : "__string",
1834
- "location" : "uri",
1835
- "locationName" : "detectorId"
1836
- }
1837
- },
1838
- "required" : [ "DetectorId", "AccountIds" ]
1839
- },
1840
- "GetMembersResponse" : {
1841
- "type" : "structure",
1842
- "members" : {
1843
- "Members" : {
1844
- "shape" : "Members",
1845
- "locationName" : "members"
1846
- },
1847
- "UnprocessedAccounts" : {
1848
- "shape" : "UnprocessedAccounts",
1849
- "locationName" : "unprocessedAccounts"
1850
- }
1851
- }
1852
- },
1853
- "GetThreatIntelSetRequest" : {
1854
- "type" : "structure",
1855
- "members" : {
1856
- "DetectorId" : {
1857
- "shape" : "__string",
1858
- "location" : "uri",
1859
- "locationName" : "detectorId"
1860
- },
1861
- "ThreatIntelSetId" : {
1862
- "shape" : "__string",
1863
- "location" : "uri",
1864
- "locationName" : "threatIntelSetId"
1865
- }
1866
- },
1867
- "required" : [ "ThreatIntelSetId", "DetectorId" ]
1868
- },
1869
- "GetThreatIntelSetResponse" : {
1870
- "type" : "structure",
1871
- "members" : {
1872
- "Format" : {
1873
- "shape" : "ThreatIntelSetFormat",
1874
- "locationName" : "format"
1875
- },
1876
- "Location" : {
1877
- "shape" : "Location",
1878
- "locationName" : "location"
1879
- },
1880
- "Name" : {
1881
- "shape" : "Name",
1882
- "locationName" : "name"
1883
- },
1884
- "Status" : {
1885
- "shape" : "ThreatIntelSetStatus",
1886
- "locationName" : "status"
1887
- }
1888
- }
1889
- },
1890
- "IamInstanceProfile" : {
1891
- "type" : "structure",
1892
- "members" : {
1893
- "Arn" : {
1894
- "shape" : "__string",
1895
- "locationName" : "arn"
1896
- },
1897
- "Id" : {
1898
- "shape" : "__string",
1899
- "locationName" : "id"
1900
- }
1901
- }
1902
- },
1903
- "InstanceDetails" : {
1904
- "type" : "structure",
1905
- "members" : {
1906
- "AvailabilityZone" : {
1907
- "shape" : "__string",
1908
- "locationName" : "availabilityZone"
1909
- },
1910
- "IamInstanceProfile" : {
1911
- "shape" : "IamInstanceProfile",
1912
- "locationName" : "iamInstanceProfile"
1913
- },
1914
- "ImageDescription" : {
1915
- "shape" : "__string",
1916
- "locationName" : "imageDescription"
1917
- },
1918
- "ImageId" : {
1919
- "shape" : "__string",
1920
- "locationName" : "imageId"
1921
- },
1922
- "InstanceId" : {
1923
- "shape" : "__string",
1924
- "locationName" : "instanceId"
1925
- },
1926
- "InstanceState" : {
1927
- "shape" : "__string",
1928
- "locationName" : "instanceState"
1929
- },
1930
- "InstanceType" : {
1931
- "shape" : "__string",
1932
- "locationName" : "instanceType"
1933
- },
1934
- "LaunchTime" : {
1935
- "shape" : "__string",
1936
- "locationName" : "launchTime"
1937
- },
1938
- "NetworkInterfaces" : {
1939
- "shape" : "NetworkInterfaces",
1940
- "locationName" : "networkInterfaces"
1941
- },
1942
- "Platform" : {
1943
- "shape" : "__string",
1944
- "locationName" : "platform"
1945
- },
1946
- "ProductCodes" : {
1947
- "shape" : "ProductCodes",
1948
- "locationName" : "productCodes"
1949
- },
1950
- "Tags" : {
1951
- "shape" : "Tags",
1952
- "locationName" : "tags"
1953
- }
1954
- }
1955
- },
1956
- "InternalServerErrorException" : {
1957
- "type" : "structure",
1958
- "members" : {
1959
- "Message" : {
1960
- "shape" : "__string",
1961
- "locationName" : "message"
1962
- },
1963
- "Type" : {
1964
- "shape" : "__string",
1965
- "locationName" : "__type"
1966
- }
1967
- },
1968
- "exception" : true,
1969
- "error" : {
1970
- "httpStatusCode" : 500
1971
- }
1972
- },
1973
- "Invitation" : {
1974
- "type" : "structure",
1975
- "members" : {
1976
- "AccountId" : {
1977
- "shape" : "__string",
1978
- "locationName" : "accountId"
1979
- },
1980
- "InvitationId" : {
1981
- "shape" : "InvitationId",
1982
- "locationName" : "invitationId"
1983
- },
1984
- "InvitedAt" : {
1985
- "shape" : "InvitedAt",
1986
- "locationName" : "invitedAt"
1987
- },
1988
- "RelationshipStatus" : {
1989
- "shape" : "__string",
1990
- "locationName" : "relationshipStatus"
1991
- }
1992
- }
1993
- },
1994
- "InvitationId" : {
1995
- "type" : "string"
1996
- },
1997
- "Invitations" : {
1998
- "type" : "list",
1999
- "member" : {
2000
- "shape" : "Invitation"
2001
- }
2002
- },
2003
- "InviteMembersRequest" : {
2004
- "type" : "structure",
2005
- "members" : {
2006
- "AccountIds" : {
2007
- "shape" : "AccountIds",
2008
- "locationName" : "accountIds"
2009
- },
2010
- "DetectorId" : {
2011
- "shape" : "__string",
2012
- "location" : "uri",
2013
- "locationName" : "detectorId"
2014
- },
2015
- "DisableEmailNotification" : {
2016
- "shape" : "__boolean",
2017
- "locationName" : "disableEmailNotification"
2018
- },
2019
- "Message" : {
2020
- "shape" : "Message",
2021
- "locationName" : "message"
2022
- }
2023
- },
2024
- "required" : [ "DetectorId", "AccountIds" ]
2025
- },
2026
- "InviteMembersResponse" : {
2027
- "type" : "structure",
2028
- "members" : {
2029
- "UnprocessedAccounts" : {
2030
- "shape" : "UnprocessedAccounts",
2031
- "locationName" : "unprocessedAccounts"
2032
- }
2033
- }
2034
- },
2035
- "InvitedAt" : {
2036
- "type" : "string"
2037
- },
2038
- "IpSetFormat" : {
2039
- "type" : "string",
2040
- "enum" : [ "TXT", "STIX", "OTX_CSV", "ALIEN_VAULT", "PROOF_POINT", "FIRE_EYE" ]
2041
- },
2042
- "IpSetId" : {
2043
- "type" : "string"
2044
- },
2045
- "IpSetIds" : {
2046
- "type" : "list",
2047
- "member" : {
2048
- "shape" : "IpSetId"
2049
- }
2050
- },
2051
- "IpSetStatus" : {
2052
- "type" : "string",
2053
- "enum" : [ "INACTIVE", "ACTIVATING", "ACTIVE", "DEACTIVATING", "ERROR", "DELETE_PENDING", "DELETED" ]
2054
- },
2055
- "Ipv6Address" : {
2056
- "type" : "string"
2057
- },
2058
- "Ipv6Addresses" : {
2059
- "type" : "list",
2060
- "member" : {
2061
- "shape" : "Ipv6Address"
2062
- }
2063
- },
2064
- "ListDetectorsRequest" : {
2065
- "type" : "structure",
2066
- "members" : {
2067
- "MaxResults" : {
2068
- "shape" : "MaxResults",
2069
- "location" : "querystring",
2070
- "locationName" : "maxResults"
2071
- },
2072
- "NextToken" : {
2073
- "shape" : "__string",
2074
- "location" : "querystring",
2075
- "locationName" : "nextToken"
2076
- }
2077
- }
2078
- },
2079
- "ListDetectorsResponse" : {
2080
- "type" : "structure",
2081
- "members" : {
2082
- "DetectorIds" : {
2083
- "shape" : "DetectorIds",
2084
- "locationName" : "detectorIds"
2085
- },
2086
- "NextToken" : {
2087
- "shape" : "NextToken",
2088
- "locationName" : "nextToken"
2089
- }
2090
- }
2091
- },
2092
- "ListFiltersRequest" : {
2093
- "type" : "structure",
2094
- "members" : {
2095
- "DetectorId" : {
2096
- "shape" : "__string",
2097
- "location" : "uri",
2098
- "locationName" : "detectorId"
2099
- },
2100
- "MaxResults" : {
2101
- "shape" : "MaxResults",
2102
- "location" : "querystring",
2103
- "locationName" : "maxResults"
2104
- },
2105
- "NextToken" : {
2106
- "shape" : "__string",
2107
- "location" : "querystring",
2108
- "locationName" : "nextToken"
2109
- }
2110
- },
2111
- "required" : [ "DetectorId" ]
2112
- },
2113
- "ListFiltersResponse" : {
2114
- "type" : "structure",
2115
- "members" : {
2116
- "FilterNames" : {
2117
- "shape" : "FilterNames",
2118
- "locationName" : "filterNames"
2119
- },
2120
- "NextToken" : {
2121
- "shape" : "NextToken",
2122
- "locationName" : "nextToken"
2123
- }
2124
- }
2125
- },
2126
- "ListFindingsRequest" : {
2127
- "type" : "structure",
2128
- "members" : {
2129
- "DetectorId" : {
2130
- "shape" : "__string",
2131
- "location" : "uri",
2132
- "locationName" : "detectorId"
2133
- },
2134
- "FindingCriteria" : {
2135
- "shape" : "FindingCriteria",
2136
- "locationName" : "findingCriteria"
2137
- },
2138
- "MaxResults" : {
2139
- "shape" : "MaxResults",
2140
- "locationName" : "maxResults"
2141
- },
2142
- "NextToken" : {
2143
- "shape" : "NextToken",
2144
- "locationName" : "nextToken"
2145
- },
2146
- "SortCriteria" : {
2147
- "shape" : "SortCriteria",
2148
- "locationName" : "sortCriteria"
2149
- }
2150
- },
2151
- "required" : [ "DetectorId" ]
2152
- },
2153
- "ListFindingsResponse" : {
2154
- "type" : "structure",
2155
- "members" : {
2156
- "FindingIds" : {
2157
- "shape" : "FindingIds",
2158
- "locationName" : "findingIds"
2159
- },
2160
- "NextToken" : {
2161
- "shape" : "NextToken",
2162
- "locationName" : "nextToken"
2163
- }
2164
- }
2165
- },
2166
- "ListIPSetsRequest" : {
2167
- "type" : "structure",
2168
- "members" : {
2169
- "DetectorId" : {
2170
- "shape" : "__string",
2171
- "location" : "uri",
2172
- "locationName" : "detectorId"
2173
- },
2174
- "MaxResults" : {
2175
- "shape" : "MaxResults",
2176
- "location" : "querystring",
2177
- "locationName" : "maxResults"
2178
- },
2179
- "NextToken" : {
2180
- "shape" : "__string",
2181
- "location" : "querystring",
2182
- "locationName" : "nextToken"
2183
- }
2184
- },
2185
- "required" : [ "DetectorId" ]
2186
- },
2187
- "ListIPSetsResponse" : {
2188
- "type" : "structure",
2189
- "members" : {
2190
- "IpSetIds" : {
2191
- "shape" : "IpSetIds",
2192
- "locationName" : "ipSetIds"
2193
- },
2194
- "NextToken" : {
2195
- "shape" : "NextToken",
2196
- "locationName" : "nextToken"
2197
- }
2198
- }
2199
- },
2200
- "ListInvitationsRequest" : {
2201
- "type" : "structure",
2202
- "members" : {
2203
- "MaxResults" : {
2204
- "shape" : "MaxResults",
2205
- "location" : "querystring",
2206
- "locationName" : "maxResults"
2207
- },
2208
- "NextToken" : {
2209
- "shape" : "__string",
2210
- "location" : "querystring",
2211
- "locationName" : "nextToken"
2212
- }
2213
- }
2214
- },
2215
- "ListInvitationsResponse" : {
2216
- "type" : "structure",
2217
- "members" : {
2218
- "Invitations" : {
2219
- "shape" : "Invitations",
2220
- "locationName" : "invitations"
2221
- },
2222
- "NextToken" : {
2223
- "shape" : "NextToken",
2224
- "locationName" : "nextToken"
2225
- }
2226
- }
2227
- },
2228
- "ListMembersRequest" : {
2229
- "type" : "structure",
2230
- "members" : {
2231
- "DetectorId" : {
2232
- "shape" : "__string",
2233
- "location" : "uri",
2234
- "locationName" : "detectorId"
2235
- },
2236
- "MaxResults" : {
2237
- "shape" : "MaxResults",
2238
- "location" : "querystring",
2239
- "locationName" : "maxResults"
2240
- },
2241
- "NextToken" : {
2242
- "shape" : "__string",
2243
- "location" : "querystring",
2244
- "locationName" : "nextToken"
2245
- },
2246
- "OnlyAssociated" : {
2247
- "shape" : "__string",
2248
- "location" : "querystring",
2249
- "locationName" : "onlyAssociated"
2250
- }
2251
- },
2252
- "required" : [ "DetectorId" ]
2253
- },
2254
- "ListMembersResponse" : {
2255
- "type" : "structure",
2256
- "members" : {
2257
- "Members" : {
2258
- "shape" : "Members",
2259
- "locationName" : "members"
2260
- },
2261
- "NextToken" : {
2262
- "shape" : "NextToken",
2263
- "locationName" : "nextToken"
2264
- }
2265
- }
2266
- },
2267
- "ListThreatIntelSetsRequest" : {
2268
- "type" : "structure",
2269
- "members" : {
2270
- "DetectorId" : {
2271
- "shape" : "__string",
2272
- "location" : "uri",
2273
- "locationName" : "detectorId"
2274
- },
2275
- "MaxResults" : {
2276
- "shape" : "MaxResults",
2277
- "location" : "querystring",
2278
- "locationName" : "maxResults"
2279
- },
2280
- "NextToken" : {
2281
- "shape" : "__string",
2282
- "location" : "querystring",
2283
- "locationName" : "nextToken"
2284
- }
2285
- },
2286
- "required" : [ "DetectorId" ]
2287
- },
2288
- "ListThreatIntelSetsResponse" : {
2289
- "type" : "structure",
2290
- "members" : {
2291
- "NextToken" : {
2292
- "shape" : "NextToken",
2293
- "locationName" : "nextToken"
2294
- },
2295
- "ThreatIntelSetIds" : {
2296
- "shape" : "ThreatIntelSetIds",
2297
- "locationName" : "threatIntelSetIds"
2298
- }
2299
- }
2300
- },
2301
- "LocalPortDetails" : {
2302
- "type" : "structure",
2303
- "members" : {
2304
- "Port" : {
2305
- "shape" : "__integer",
2306
- "locationName" : "port"
2307
- },
2308
- "PortName" : {
2309
- "shape" : "__string",
2310
- "locationName" : "portName"
2311
- }
2312
- }
2313
- },
2314
- "Location" : {
2315
- "type" : "string"
2316
- },
2317
- "Master" : {
2318
- "type" : "structure",
2319
- "members" : {
2320
- "AccountId" : {
2321
- "shape" : "__string",
2322
- "locationName" : "accountId"
2323
- },
2324
- "InvitationId" : {
2325
- "shape" : "InvitationId",
2326
- "locationName" : "invitationId"
2327
- },
2328
- "InvitedAt" : {
2329
- "shape" : "InvitedAt",
2330
- "locationName" : "invitedAt"
2331
- },
2332
- "RelationshipStatus" : {
2333
- "shape" : "__string",
2334
- "locationName" : "relationshipStatus"
2335
- }
2336
- }
2337
- },
2338
- "MasterId" : {
2339
- "type" : "string"
2340
- },
2341
- "MaxResults" : {
2342
- "type" : "integer",
2343
- "min" : 1,
2344
- "max" : 50
2345
- },
2346
- "Member" : {
2347
- "type" : "structure",
2348
- "members" : {
2349
- "AccountId" : {
2350
- "shape" : "AccountId",
2351
- "locationName" : "accountId"
2352
- },
2353
- "DetectorId" : {
2354
- "shape" : "DetectorId",
2355
- "locationName" : "detectorId"
2356
- },
2357
- "Email" : {
2358
- "shape" : "Email",
2359
- "locationName" : "email"
2360
- },
2361
- "InvitedAt" : {
2362
- "shape" : "InvitedAt",
2363
- "locationName" : "invitedAt"
2364
- },
2365
- "MasterId" : {
2366
- "shape" : "MasterId",
2367
- "locationName" : "masterId"
2368
- },
2369
- "RelationshipStatus" : {
2370
- "shape" : "__string",
2371
- "locationName" : "relationshipStatus"
2372
- },
2373
- "UpdatedAt" : {
2374
- "shape" : "UpdatedAt",
2375
- "locationName" : "updatedAt"
2376
- }
2377
- },
2378
- "required" : [ "Email", "AccountId", "MasterId", "UpdatedAt", "RelationshipStatus" ]
2379
- },
2380
- "Members" : {
2381
- "type" : "list",
2382
- "member" : {
2383
- "shape" : "Member"
2384
- }
2385
- },
2386
- "Message" : {
2387
- "type" : "string"
2388
- },
2389
- "Name" : {
2390
- "type" : "string"
2391
- },
2392
- "Neq" : {
2393
- "type" : "list",
2394
- "member" : {
2395
- "shape" : "__string"
2396
- }
2397
- },
2398
- "NetworkConnectionAction" : {
2399
- "type" : "structure",
2400
- "members" : {
2401
- "Blocked" : {
2402
- "shape" : "__boolean",
2403
- "locationName" : "blocked"
2404
- },
2405
- "ConnectionDirection" : {
2406
- "shape" : "__string",
2407
- "locationName" : "connectionDirection"
2408
- },
2409
- "LocalPortDetails" : {
2410
- "shape" : "LocalPortDetails",
2411
- "locationName" : "localPortDetails"
2412
- },
2413
- "Protocol" : {
2414
- "shape" : "__string",
2415
- "locationName" : "protocol"
2416
- },
2417
- "RemoteIpDetails" : {
2418
- "shape" : "RemoteIpDetails",
2419
- "locationName" : "remoteIpDetails"
2420
- },
2421
- "RemotePortDetails" : {
2422
- "shape" : "RemotePortDetails",
2423
- "locationName" : "remotePortDetails"
2424
- }
2425
- }
2426
- },
2427
- "NetworkInterface" : {
2428
- "type" : "structure",
2429
- "members" : {
2430
- "Ipv6Addresses" : {
2431
- "shape" : "Ipv6Addresses",
2432
- "locationName" : "ipv6Addresses"
2433
- },
2434
- "NetworkInterfaceId" : {
2435
- "shape" : "NetworkInterfaceId",
2436
- "locationName" : "networkInterfaceId"
2437
- },
2438
- "PrivateDnsName" : {
2439
- "shape" : "PrivateDnsName",
2440
- "locationName" : "privateDnsName"
2441
- },
2442
- "PrivateIpAddress" : {
2443
- "shape" : "PrivateIpAddress",
2444
- "locationName" : "privateIpAddress"
2445
- },
2446
- "PrivateIpAddresses" : {
2447
- "shape" : "PrivateIpAddresses",
2448
- "locationName" : "privateIpAddresses"
2449
- },
2450
- "PublicDnsName" : {
2451
- "shape" : "__string",
2452
- "locationName" : "publicDnsName"
2453
- },
2454
- "PublicIp" : {
2455
- "shape" : "__string",
2456
- "locationName" : "publicIp"
2457
- },
2458
- "SecurityGroups" : {
2459
- "shape" : "SecurityGroups",
2460
- "locationName" : "securityGroups"
2461
- },
2462
- "SubnetId" : {
2463
- "shape" : "__string",
2464
- "locationName" : "subnetId"
2465
- },
2466
- "VpcId" : {
2467
- "shape" : "__string",
2468
- "locationName" : "vpcId"
2469
- }
2470
- }
2471
- },
2472
- "NetworkInterfaceId" : {
2473
- "type" : "string"
2474
- },
2475
- "NetworkInterfaces" : {
2476
- "type" : "list",
2477
- "member" : {
2478
- "shape" : "NetworkInterface"
2479
- }
2480
- },
2481
- "NextToken" : {
2482
- "type" : "string"
2483
- },
2484
- "OrderBy" : {
2485
- "type" : "string",
2486
- "enum" : [ "ASC", "DESC" ]
2487
- },
2488
- "Organization" : {
2489
- "type" : "structure",
2490
- "members" : {
2491
- "Asn" : {
2492
- "shape" : "__string",
2493
- "locationName" : "asn"
2494
- },
2495
- "AsnOrg" : {
2496
- "shape" : "__string",
2497
- "locationName" : "asnOrg"
2498
- },
2499
- "Isp" : {
2500
- "shape" : "__string",
2501
- "locationName" : "isp"
2502
- },
2503
- "Org" : {
2504
- "shape" : "__string",
2505
- "locationName" : "org"
2506
- }
2507
- }
2508
- },
2509
- "PortProbeAction" : {
2510
- "type" : "structure",
2511
- "members" : {
2512
- "Blocked" : {
2513
- "shape" : "__boolean",
2514
- "locationName" : "blocked"
2515
- },
2516
- "PortProbeDetails" : {
2517
- "shape" : "__listOfPortProbeDetail",
2518
- "locationName" : "portProbeDetails"
2519
- }
2520
- }
2521
- },
2522
- "PortProbeDetail" : {
2523
- "type" : "structure",
2524
- "members" : {
2525
- "LocalPortDetails" : {
2526
- "shape" : "LocalPortDetails",
2527
- "locationName" : "localPortDetails"
2528
- },
2529
- "RemoteIpDetails" : {
2530
- "shape" : "RemoteIpDetails",
2531
- "locationName" : "remoteIpDetails"
2532
- }
2533
- }
2534
- },
2535
- "PrivateDnsName" : {
2536
- "type" : "string"
2537
- },
2538
- "PrivateIpAddress" : {
2539
- "type" : "string"
2540
- },
2541
- "PrivateIpAddressDetails" : {
2542
- "type" : "structure",
2543
- "members" : {
2544
- "PrivateDnsName" : {
2545
- "shape" : "PrivateDnsName",
2546
- "locationName" : "privateDnsName"
2547
- },
2548
- "PrivateIpAddress" : {
2549
- "shape" : "PrivateIpAddress",
2550
- "locationName" : "privateIpAddress"
2551
- }
2552
- }
2553
- },
2554
- "PrivateIpAddresses" : {
2555
- "type" : "list",
2556
- "member" : {
2557
- "shape" : "PrivateIpAddressDetails"
2558
- }
2559
- },
2560
- "ProductCode" : {
2561
- "type" : "structure",
2562
- "members" : {
2563
- "Code" : {
2564
- "shape" : "__string",
2565
- "locationName" : "code"
2566
- },
2567
- "ProductType" : {
2568
- "shape" : "__string",
2569
- "locationName" : "productType"
2570
- }
2571
- }
2572
- },
2573
- "ProductCodes" : {
2574
- "type" : "list",
2575
- "member" : {
2576
- "shape" : "ProductCode"
2577
- }
2578
- },
2579
- "RemoteIpDetails" : {
2580
- "type" : "structure",
2581
- "members" : {
2582
- "City" : {
2583
- "shape" : "City",
2584
- "locationName" : "city"
2585
- },
2586
- "Country" : {
2587
- "shape" : "Country",
2588
- "locationName" : "country"
2589
- },
2590
- "GeoLocation" : {
2591
- "shape" : "GeoLocation",
2592
- "locationName" : "geoLocation"
2593
- },
2594
- "IpAddressV4" : {
2595
- "shape" : "__string",
2596
- "locationName" : "ipAddressV4"
2597
- },
2598
- "Organization" : {
2599
- "shape" : "Organization",
2600
- "locationName" : "organization"
2601
- }
2602
- }
2603
- },
2604
- "RemotePortDetails" : {
2605
- "type" : "structure",
2606
- "members" : {
2607
- "Port" : {
2608
- "shape" : "__integer",
2609
- "locationName" : "port"
2610
- },
2611
- "PortName" : {
2612
- "shape" : "__string",
2613
- "locationName" : "portName"
2614
- }
2615
- }
2616
- },
2617
- "Resource" : {
2618
- "type" : "structure",
2619
- "members" : {
2620
- "AccessKeyDetails" : {
2621
- "shape" : "AccessKeyDetails",
2622
- "locationName" : "accessKeyDetails"
2623
- },
2624
- "InstanceDetails" : {
2625
- "shape" : "InstanceDetails",
2626
- "locationName" : "instanceDetails"
2627
- },
2628
- "ResourceType" : {
2629
- "shape" : "__string",
2630
- "locationName" : "resourceType"
2631
- }
2632
- }
2633
- },
2634
- "SecurityGroup" : {
2635
- "type" : "structure",
2636
- "members" : {
2637
- "GroupId" : {
2638
- "shape" : "__string",
2639
- "locationName" : "groupId"
2640
- },
2641
- "GroupName" : {
2642
- "shape" : "__string",
2643
- "locationName" : "groupName"
2644
- }
2645
- }
2646
- },
2647
- "SecurityGroups" : {
2648
- "type" : "list",
2649
- "member" : {
2650
- "shape" : "SecurityGroup"
2651
- }
2652
- },
2653
- "Service" : {
2654
- "type" : "structure",
2655
- "members" : {
2656
- "Action" : {
2657
- "shape" : "Action",
2658
- "locationName" : "action"
2659
- },
2660
- "Archived" : {
2661
- "shape" : "__boolean",
2662
- "locationName" : "archived"
2663
- },
2664
- "Count" : {
2665
- "shape" : "__integer",
2666
- "locationName" : "count"
2667
- },
2668
- "DetectorId" : {
2669
- "shape" : "DetectorId",
2670
- "locationName" : "detectorId"
2671
- },
2672
- "EventFirstSeen" : {
2673
- "shape" : "__string",
2674
- "locationName" : "eventFirstSeen"
2675
- },
2676
- "EventLastSeen" : {
2677
- "shape" : "__string",
2678
- "locationName" : "eventLastSeen"
2679
- },
2680
- "ResourceRole" : {
2681
- "shape" : "__string",
2682
- "locationName" : "resourceRole"
2683
- },
2684
- "ServiceName" : {
2685
- "shape" : "__string",
2686
- "locationName" : "serviceName"
2687
- },
2688
- "UserFeedback" : {
2689
- "shape" : "__string",
2690
- "locationName" : "userFeedback"
2691
- }
2692
- }
2693
- },
2694
- "ServiceRole" : {
2695
- "type" : "string"
2696
- },
2697
- "SortCriteria" : {
2698
- "type" : "structure",
2699
- "members" : {
2700
- "AttributeName" : {
2701
- "shape" : "__string",
2702
- "locationName" : "attributeName"
2703
- },
2704
- "OrderBy" : {
2705
- "shape" : "OrderBy",
2706
- "locationName" : "orderBy"
2707
- }
2708
- }
2709
- },
2710
- "StartMonitoringMembersRequest" : {
2711
- "type" : "structure",
2712
- "members" : {
2713
- "AccountIds" : {
2714
- "shape" : "AccountIds",
2715
- "locationName" : "accountIds"
2716
- },
2717
- "DetectorId" : {
2718
- "shape" : "__string",
2719
- "location" : "uri",
2720
- "locationName" : "detectorId"
2721
- }
2722
- },
2723
- "required" : [ "DetectorId", "AccountIds" ]
2724
- },
2725
- "StartMonitoringMembersResponse" : {
2726
- "type" : "structure",
2727
- "members" : {
2728
- "UnprocessedAccounts" : {
2729
- "shape" : "UnprocessedAccounts",
2730
- "locationName" : "unprocessedAccounts"
2731
- }
2732
- }
2733
- },
2734
- "StopMonitoringMembersRequest" : {
2735
- "type" : "structure",
2736
- "members" : {
2737
- "AccountIds" : {
2738
- "shape" : "AccountIds",
2739
- "locationName" : "accountIds"
2740
- },
2741
- "DetectorId" : {
2742
- "shape" : "__string",
2743
- "location" : "uri",
2744
- "locationName" : "detectorId"
2745
- }
2746
- },
2747
- "required" : [ "DetectorId", "AccountIds" ]
2748
- },
2749
- "StopMonitoringMembersResponse" : {
2750
- "type" : "structure",
2751
- "members" : {
2752
- "UnprocessedAccounts" : {
2753
- "shape" : "UnprocessedAccounts",
2754
- "locationName" : "unprocessedAccounts"
2755
- }
2756
- }
2757
- },
2758
- "Tag" : {
2759
- "type" : "structure",
2760
- "members" : {
2761
- "Key" : {
2762
- "shape" : "__string",
2763
- "locationName" : "key"
2764
- },
2765
- "Value" : {
2766
- "shape" : "__string",
2767
- "locationName" : "value"
2768
- }
2769
- }
2770
- },
2771
- "Tags" : {
2772
- "type" : "list",
2773
- "member" : {
2774
- "shape" : "Tag"
2775
- }
2776
- },
2777
- "ThreatIntelSetFormat" : {
2778
- "type" : "string",
2779
- "enum" : [ "TXT", "STIX", "OTX_CSV", "ALIEN_VAULT", "PROOF_POINT", "FIRE_EYE" ]
2780
- },
2781
- "ThreatIntelSetId" : {
2782
- "type" : "string"
2783
- },
2784
- "ThreatIntelSetIds" : {
2785
- "type" : "list",
2786
- "member" : {
2787
- "shape" : "ThreatIntelSetId"
2788
- }
2789
- },
2790
- "ThreatIntelSetStatus" : {
2791
- "type" : "string",
2792
- "enum" : [ "INACTIVE", "ACTIVATING", "ACTIVE", "DEACTIVATING", "ERROR", "DELETE_PENDING", "DELETED" ]
2793
- },
2794
- "UnarchiveFindingsRequest" : {
2795
- "type" : "structure",
2796
- "members" : {
2797
- "DetectorId" : {
2798
- "shape" : "__string",
2799
- "location" : "uri",
2800
- "locationName" : "detectorId"
2801
- },
2802
- "FindingIds" : {
2803
- "shape" : "FindingIds",
2804
- "locationName" : "findingIds"
2805
- }
2806
- },
2807
- "required" : [ "DetectorId", "FindingIds" ]
2808
- },
2809
- "UnarchiveFindingsResponse" : {
2810
- "type" : "structure",
2811
- "members" : { }
2812
- },
2813
- "UnprocessedAccount" : {
2814
- "type" : "structure",
2815
- "members" : {
2816
- "AccountId" : {
2817
- "shape" : "__string",
2818
- "locationName" : "accountId"
2819
- },
2820
- "Result" : {
2821
- "shape" : "__string",
2822
- "locationName" : "result"
2823
- }
2824
- },
2825
- "required" : [ "AccountId", "Result" ]
2826
- },
2827
- "UnprocessedAccounts" : {
2828
- "type" : "list",
2829
- "member" : {
2830
- "shape" : "UnprocessedAccount"
2831
- }
2832
- },
2833
- "UpdateDetectorRequest" : {
2834
- "type" : "structure",
2835
- "members" : {
2836
- "DetectorId" : {
2837
- "shape" : "__string",
2838
- "location" : "uri",
2839
- "locationName" : "detectorId"
2840
- },
2841
- "Enable" : {
2842
- "shape" : "Enable",
2843
- "locationName" : "enable"
2844
- },
2845
- "FindingPublishingFrequency" : {
2846
- "shape" : "FindingPublishingFrequency",
2847
- "locationName" : "findingPublishingFrequency"
2848
- }
2849
- },
2850
- "required" : [ "DetectorId" ]
2851
- },
2852
- "UpdateDetectorResponse" : {
2853
- "type" : "structure",
2854
- "members" : { }
2855
- },
2856
- "UpdateFilterRequest" : {
2857
- "type" : "structure",
2858
- "members" : {
2859
- "Action" : {
2860
- "shape" : "FilterAction",
2861
- "locationName" : "action"
2862
- },
2863
- "Description" : {
2864
- "shape" : "FilterDescription",
2865
- "locationName" : "description"
2866
- },
2867
- "DetectorId" : {
2868
- "shape" : "__string",
2869
- "location" : "uri",
2870
- "locationName" : "detectorId"
2871
- },
2872
- "FilterName" : {
2873
- "shape" : "__string",
2874
- "location" : "uri",
2875
- "locationName" : "filterName"
2876
- },
2877
- "FindingCriteria" : {
2878
- "shape" : "FindingCriteria",
2879
- "locationName" : "findingCriteria"
2880
- },
2881
- "Rank" : {
2882
- "shape" : "FilterRank",
2883
- "locationName" : "rank"
2884
- }
2885
- },
2886
- "required" : [ "DetectorId", "FilterName" ]
2887
- },
2888
- "UpdateFilterResponse" : {
2889
- "type" : "structure",
2890
- "members" : {
2891
- "Name" : {
2892
- "shape" : "FilterName",
2893
- "locationName" : "name"
2894
- }
2895
- }
2896
- },
2897
- "UpdateFindingsFeedbackRequest" : {
2898
- "type" : "structure",
2899
- "members" : {
2900
- "Comments" : {
2901
- "shape" : "Comments",
2902
- "locationName" : "comments"
2903
- },
2904
- "DetectorId" : {
2905
- "shape" : "__string",
2906
- "location" : "uri",
2907
- "locationName" : "detectorId"
2908
- },
2909
- "Feedback" : {
2910
- "shape" : "Feedback",
2911
- "locationName" : "feedback"
2912
- },
2913
- "FindingIds" : {
2914
- "shape" : "FindingIds",
2915
- "locationName" : "findingIds"
2916
- }
2917
- },
2918
- "required" : [ "DetectorId", "Feedback", "FindingIds" ]
2919
- },
2920
- "UpdateFindingsFeedbackResponse" : {
2921
- "type" : "structure",
2922
- "members" : { }
2923
- },
2924
- "UpdateIPSetRequest" : {
2925
- "type" : "structure",
2926
- "members" : {
2927
- "Activate" : {
2928
- "shape" : "Activate",
2929
- "locationName" : "activate"
2930
- },
2931
- "DetectorId" : {
2932
- "shape" : "__string",
2933
- "location" : "uri",
2934
- "locationName" : "detectorId"
2935
- },
2936
- "IpSetId" : {
2937
- "shape" : "__string",
2938
- "location" : "uri",
2939
- "locationName" : "ipSetId"
2940
- },
2941
- "Location" : {
2942
- "shape" : "Location",
2943
- "locationName" : "location"
2944
- },
2945
- "Name" : {
2946
- "shape" : "Name",
2947
- "locationName" : "name"
2948
- }
2949
- },
2950
- "required" : [ "DetectorId", "IpSetId" ]
2951
- },
2952
- "UpdateIPSetResponse" : {
2953
- "type" : "structure",
2954
- "members" : { }
2955
- },
2956
- "UpdateThreatIntelSetRequest" : {
2957
- "type" : "structure",
2958
- "members" : {
2959
- "Activate" : {
2960
- "shape" : "Activate",
2961
- "locationName" : "activate"
2962
- },
2963
- "DetectorId" : {
2964
- "shape" : "__string",
2965
- "location" : "uri",
2966
- "locationName" : "detectorId"
2967
- },
2968
- "Location" : {
2969
- "shape" : "Location",
2970
- "locationName" : "location"
2971
- },
2972
- "Name" : {
2973
- "shape" : "Name",
2974
- "locationName" : "name"
2975
- },
2976
- "ThreatIntelSetId" : {
2977
- "shape" : "__string",
2978
- "location" : "uri",
2979
- "locationName" : "threatIntelSetId"
2980
- }
2981
- },
2982
- "required" : [ "ThreatIntelSetId", "DetectorId" ]
2983
- },
2984
- "UpdateThreatIntelSetResponse" : {
2985
- "type" : "structure",
2986
- "members" : { }
2987
- },
2988
- "UpdatedAt" : {
2989
- "type" : "string"
2990
- },
2991
- "__boolean" : {
2992
- "type" : "boolean"
2993
- },
2994
- "__double" : {
2995
- "type" : "double"
2996
- },
2997
- "__integer" : {
2998
- "type" : "integer"
2999
- },
3000
- "__listOfPortProbeDetail" : {
3001
- "type" : "list",
3002
- "member" : {
3003
- "shape" : "PortProbeDetail"
3004
- }
3005
- },
3006
- "__long" : {
3007
- "type" : "long"
3008
- },
3009
- "__mapOfCondition" : {
3010
- "type" : "map",
3011
- "key" : {
3012
- "shape" : "__string"
3013
- },
3014
- "value" : {
3015
- "shape" : "Condition"
3016
- }
3017
- },
3018
- "__mapOfCountBySeverityFindingStatistic" : {
3019
- "type" : "map",
3020
- "key" : {
3021
- "shape" : "__string"
3022
- },
3023
- "value" : {
3024
- "shape" : "CountBySeverityFindingStatistic"
3025
- }
3026
- },
3027
- "__string" : {
3028
- "type" : "string"
3029
- },
3030
- "__stringMin0Max64" : {
3031
- "type" : "string",
3032
- "min" : 0,
3033
- "max" : 64
3034
- },
3035
- "__timestamp" : {
3036
- "type" : "timestamp"
3037
- }
3038
- }
3039
- }